diff options
author | Andreas Rudolph <andy@openindex.de> | 2019-01-14 19:06:42 +0100 |
---|---|---|
committer | Decebal Suiu <decebal.suiu@gmail.com> | 2019-01-14 20:06:42 +0200 |
commit | 078353208903a5157d271712509128a3d839673d (patch) | |
tree | c1be3fda14d36bd6c7dc78432db75563bc6a9157 | |
parent | 8feda969a0a0224127479ea350ab4fd34ccfa3f1 (diff) | |
download | pf4j-078353208903a5157d271712509128a3d839673d.tar.gz pf4j-078353208903a5157d271712509128a3d839673d.zip |
add Automatic-Module-Name into pf4j.jar (#275)
Thanks!
-rw-r--r-- | pf4j/pom.xml | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/pf4j/pom.xml b/pf4j/pom.xml index 26ab06f..e3c3f00 100644 --- a/pf4j/pom.xml +++ b/pf4j/pom.xml @@ -23,6 +23,17 @@ <compilerArgument>-proc:none</compilerArgument> </configuration> </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-jar-plugin</artifactId> + <configuration> + <archive> + <manifestEntries> + <Automatic-Module-Name>org.pf4j</Automatic-Module-Name> + </manifestEntries> + </archive> + </configuration> + </plugin> </plugins> </build> |