aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Rudolph <andy@openindex.de>2019-01-14 19:06:42 +0100
committerDecebal Suiu <decebal.suiu@gmail.com>2019-01-14 20:06:42 +0200
commit078353208903a5157d271712509128a3d839673d (patch)
treec1be3fda14d36bd6c7dc78432db75563bc6a9157
parent8feda969a0a0224127479ea350ab4fd34ccfa3f1 (diff)
downloadpf4j-078353208903a5157d271712509128a3d839673d.tar.gz
pf4j-078353208903a5157d271712509128a3d839673d.zip
add Automatic-Module-Name into pf4j.jar (#275)
Thanks!
-rw-r--r--pf4j/pom.xml11
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>