Michael Miller created ZOOKEEPER-3625:
-----------------------------------------
Summary: Add Automatic-Module-Name to MANIFEST.MF
Key: ZOOKEEPER-3625
URL: https://issues.apache.org/jira/browse/ZOOKEEPER-3625
Project: ZooKeeper
Issue Type: Improvement
Reporter: Michael Miller
Add Automatic-Module-Name to the project jars in support of the Java 9 module
system. This can be done using the maven-jar-plugin:
{code:html}
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifestEntries>
<Automatic-Module-Name>org.apache.zookeeper</Automatic-Module-Name>
</manifestEntries>
</archive>
</configuration>
</plugin>
{code}
--
This message was sent by Atlassian Jira
(v8.3.4#803005)