You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@zookeeper.apache.org by "Michael Miller (Jira)" <ji...@apache.org> on 2019/11/20 20:39:00 UTC

[jira] [Created] (ZOOKEEPER-3625) Add Automatic-Module-Name to MANIFEST.MF

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)