-
-
Notifications
You must be signed in to change notification settings - Fork 795
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
Add Automatic-Module-Name for JDK9 interoperability #397
Comments
That sounds reasonable, and should not require use of JDK 9 (which is a requirement for quite a while now). One follow-up question: would the default name of |
Would it be possible to add I just had to do that on another project with many modules, and the easiest approach was to configure felix plugin in a parent POM to use Happy to help get it done, too. I know it's a mindless and boring task, but it does make it much easier to consume Jackson from Java 9 and provides stable module name for the future. |
@aseovic Sure, that is the plan. I was hoping to test this first with core components, but assuming it works it should be rolled out eventually to all modules. Approach taken is indeed to use default name, and that should work for all modules I think. Help with PRs would help. |
Hello! JDK9 introduces a new manifest entry
Automatic-Module-Name
that allows specifying the stable automatic module name for forward compatibility with Jigsaw.It would be nice to specify the module name explicitly (something like
com.fasterxml.jackson.core
, I suppose), rather than rely on the default generator that creates the name from the JAR archive name.The other Jackson projects should be updated as well.
The text was updated successfully, but these errors were encountered: