We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The module-info.java in blaze-persistence-core-api-jakarta-1.6.12.jar declares a dependency on java.persistence
module-info.java
blaze-persistence-core-api-jakarta-1.6.12.jar
java.persistence
When using jakarta.persistence no dependency on java.persistence should exist anymore.
jakarta.persistence
The error message is:
Module java.persistence not found, required by com.blazebit.persistence.core.parser
No dependency on java.persistence
There is a dependency declared:
// (version 9 : 53.0, no super bit) module com.blazebit.persistence.core { // Version: 1.6.12 requires transitive java.sql; requires transitive java.persistence; requires java.base; exports com.blazebit.persistence; exports com.blazebit.persistence.spi; exports com.blazebit.persistence.internal; uses com.blazebit.persistence.spi.CriteriaBuilderConfigurationProvider }
pom.xml with
pom.xml
<dependency> <groupId>com.blazebit</groupId> <artifactId>blaze-persistence-core-api-jakarta</artifactId> <version>1.6.12</version> <scope>compile</scope> </dependency> <dependency> <groupId>com.blazebit</groupId> <artifactId>blaze-persistence-core-impl-jakarta</artifactId> <version>1.6.12</version> <scope>runtime</scope> </dependency> <dependency> <groupId>com.blazebit</groupId> <artifactId>blaze-persistence-integration-hibernate-6.2</artifactId> <version>1.6.12</version> <scope>runtime</scope> </dependency>
Version: 1.6.12 JPA-Provider: Hibernate 6.5.3.Final
The text was updated successfully, but these errors were encountered:
Indeed, this is a problem of the jakarta modules since the module-info.java files are not rewritten by the Eclipse Transformer plugin.
Sorry, something went wrong.
No branches or pull requests
Description
The
module-info.java
inblaze-persistence-core-api-jakarta-1.6.12.jar
declares a dependency onjava.persistence
When using
jakarta.persistence
no dependency onjava.persistence
should exist anymore.The error message is:
Expected behavior
No dependency on
java.persistence
Actual behavior
There is a dependency declared:
Steps to reproduce
pom.xml
withEnvironment
Version: 1.6.12
JPA-Provider: Hibernate 6.5.3.Final
The text was updated successfully, but these errors were encountered: