-
Notifications
You must be signed in to change notification settings - Fork 408
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
Any chance you could add an Automatic-Module-Name? #1128
Comments
This adds an Automatic-Module-Name manifest entry in order to allow epubcheck to be used in a modular context without having to depend on an unstable generated module name. Fix: w3c#1128
PR here: #1129 |
Thanks for the issue and the PR 👍 I’m not familiar with the Java 9 module system, so I’ll have to dig into it first (thanks for the pointer 😊), but the request sounds reasonable at first sight! |
Thanks! What this basically comes down to is that if your jar file doesn't contain a module descriptor (an explicit |
On a related note, I really commend your up-to-date OSGi metadata. The fact that you've gone to the trouble of having OSGi headers with detailed imports and exports means that you're likely to have a relatively easy time if you ever attempt full JPMS modularization. It demonstrates that you've given some consideration as to the exposed ABI of the packages. 👍 |
This adds an Automatic-Module-Name manifest entry in order to allow epubcheck to be used in a modular context without having to depend on an unstable generated module name. The module name is `org.w3c.epubcheck`, which is already used as the bundle symbolic name in OSGi. Fixes #1128
Thanks! |
Hello!
Any chance you could add an
Automatic-Module-Name
manifest entry? I'd suggestorg.w3c.epubcheck
.See the following for details: http://branchandbound.net/blog/java/2017/12/automatic-module-name/
The text was updated successfully, but these errors were encountered: