Skip to content

Commit

Permalink
Merge pull request #142 from timboudreau/master
Browse files Browse the repository at this point in the history
Add Automatic-Module-Name manifest entry to make NuProcess module-system-friendly
  • Loading branch information
bturner committed Aug 12, 2022
2 parents e736073 + 9321b16 commit 9b03f73
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,11 @@
<artifactId>maven-gpg-plugin</artifactId>
<version>3.0.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.2.2</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
Expand Down Expand Up @@ -171,6 +176,18 @@
<target>1.7</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.2.2</version>
<configuration>
<archive>
<manifestEntries>
<Automatic-Module-Name>com.zaxxer.nuprocess</Automatic-Module-Name>
</manifestEntries>
</archive>
</configuration>
</plugin>
<!-- Note: we might need this for removing side-effect on InterruptTest -->
<!--plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand Down

0 comments on commit 9b03f73

Please sign in to comment.