You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm trying to use graphql-java-tools dependency in a Java 11 project and the following Gradle configuration to include all dependencies in the module path.
On compilation time many line errors like these for a lot of project dependenciecies are echoed, finally the compilation fails.
error: the unnamed module reads package graphql.schema.idl from both graphql.java and graphql.java.tools
...
error: module graphql.java.tools reads package graphql.schema.idl from both graphql.java and graphql.java.tools
graphql.schema.idl package is provided by both graphql-java and graphql-java-tools what is not allowed in JPMS.