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
The module-info.java does not export any packages and therefore, none of the classes are accessible when using Java 9. The module-info.java file needs to have export statements for all public packages:
Expected behavior and actual behavior:
The module-info.java does not export any packages and therefore, none of the classes are accessible when using Java 9. The module-info.java file needs to have export statements for all public packages:
exports org.joog.lambda;
exports org.jooq.lambda.tuple;
exports org.jooq.lambda.function;
...
Steps to reproduce the problem:
Attempt to access any of the classes in the org.jooq.lambda package. Java 9 does not permit it.
Versions:
The text was updated successfully, but these errors were encountered: