-
Notifications
You must be signed in to change notification settings - Fork 252
New issue
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
Provide deterministic module name #134
Comments
I am not familiar with the Java 9 modularity, but please let me know if you find any problem with 7d7ca2b. |
Hi @odaira, |
I'm unable to use this new version in our modularized project: |
@severn-everett Thanks much for the report. Maybe it is because an illegal character |
The steps are pretty simple: make a project that uses the 1.5.1 version of the library, and try to modularize it. The code below will build without issues with 1.5.0, but not with 1.5.1:
With version 1.5.0, the module name is provided automatically, and the
With version 1.5.1, a module name has been provided for the library, and the error occurs in the |
Fixed by 01a3657. |
Please provide a deterministic module name by adding
Automatic-Module-Name
to the manifest.See https://dzone.com/articles/automatic-module-name-calling-all-java-library-maintainers for a rationale.
The text was updated successfully, but these errors were encountered: