Skip to content

Commit

Permalink
Add Automatic-Module-Name values
Browse files Browse the repository at this point in the history
This sets the following module names:

  jgrapht-demo       → org.jgrapht.demo
  jgrapht-touchgraph → org.jgrapht.touchgraph

This gives the modules stable names in preparation for possible full
modularization.

Affects jgrapht#448
  • Loading branch information
io7m committed Feb 11, 2018
1 parent 824b1f7 commit 11e2ba5
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
3 changes: 3 additions & 0 deletions jgrapht-demo/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,9 @@
<mainClass>org.jgrapht.demo.JGraphAdapterDemo</mainClass>
<addClasspath>true</addClasspath>
</manifest>
<manifestEntries>
<Automatic-Module-Name>org.jgrapht.demo</Automatic-Module-Name>
</manifestEntries>
</archive>
</configuration>
</plugin>
Expand Down
12 changes: 12 additions & 0 deletions jgrapht-touchgraph/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,18 @@
</licenses>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<archive>
<manifestEntries>
<Automatic-Module-Name>org.jgrapht.demo</Automatic-Module-Name>
</manifestEntries>
</archive>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
Expand Down

0 comments on commit 11e2ba5

Please sign in to comment.