Using Immutables.Criteria in Java 9+ environment
See original GitHub issueI’m trying to import the Criteria annotations in a JDK11 environment.
<dependency>
<groupId>org.immutables</groupId>
<artifactId>criteria-inmemory</artifactId>
<version>2.8.2</version>
</dependency>
It seems the module name is not valid because of the dash: requires org.immutables.criteria-common;
. There are no issues adding the requires statements for Values. Any suggestions would be greatly appreciated!
Issue Analytics
- State:
- Created 3 years ago
- Comments:14 (3 by maintainers)
Top Results From Across the Web
Criteria - Immutables
The focus of Immutables Criteria is to provide database agnostic and efficient API for storing, querying and modifying documents expressed as immutable objects....
Read more >Problem with @Criteria.Repository on Eclipse #1175 - GitHub
I'm dabbling a bit with @Criteria and it does not work with the Eclipse ... asMemberOf(TypesImpl.java:190) at org.immutables.value.internal.
Read more >Immutables in Java - DZone
Start by making every class immutable and facilitate their immutability by creating small classes with simple methods. Simplicity and clean code ...
Read more >Immutable in Java | LeadingAgile | Dave Nicolette
This post isn't a tutorial on how to design immutable objects in Java. It's more of a lament, or perhaps an extended whine....
Read more >Immutable class? - java - Stack Overflow
Following are the requirements to make a Java class immutable: Class must be declared as final (So that child classes can't be created) ......
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Without the fix you would get something like: