You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@cxf.apache.org by GitBox <gi...@apache.org> on 2018/05/28 10:55:48 UTC

[GitHub] reta commented on issue #420: CXF-7600: Add Automatic-Module-Name MANIFEST entry for Java 9 compatibility

reta commented on issue #420: CXF-7600: Add Automatic-Module-Name MANIFEST entry for Java 9 compatibility
URL: https://github.com/apache/cxf/pull/420#issuecomment-392492633
 
 
   @cschneider Right, most of our dependencies are not full-fledged Java modules (and I think it will take a long time for it to happen). Adding `Automatic-Module-Name` is a first step towards embracing JPMS by introducing consistent module names (instead of relying on the name derived from JAR file). 
   
   To give you an idea, the example I posted in the description contains the declaration to dependent `Jetty` modules:
   
   ```
   requires jetty.server;
   requires jetty.servlet;
   requires jetty.util;
   ```
   
   Those are deducted from JAR file names.

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services