[java-support] branch maint-7 updated: JPAR-113 - establish Automatic-Module-Name
Ian Young
ian at iay.org.uk
Thu Sep 27 12:25:57 EDT 2018
This is an automated email from the git hooks/post-receive script.
iay pushed a commit to branch maint-7
in repository java-support.
View the commit online:
http://git.shibboleth.net/view/?p=java-support.git;a=commit;h=e8c1e7d657c567558865be9496f6a4501461966f
The following commit(s) were added to refs/heads/maint-7 by this push:
new e8c1e7d JPAR-113 - establish Automatic-Module-Name
e8c1e7d is described below
commit e8c1e7d657c567558865be9496f6a4501461966f
Author: Ian Young <ian at iay.org.uk>
AuthorDate: Thu Sep 27 17:15:22 2018 +0100
JPAR-113 - establish Automatic-Module-Name
---
pom.xml | 20 ++++++++++++++++++++
1 file changed, 20 insertions(+)
diff --git a/pom.xml b/pom.xml
index 26ab821..0f4142c 100644
--- a/pom.xml
+++ b/pom.xml
@@ -16,6 +16,10 @@
<version>7.4.0-SNAPSHOT</version>
<packaging>jar</packaging>
+ <properties>
+ <automatic.module.name>net.shibboleth.utilities.java.support</automatic.module.name>
+ </properties>
+
<repositories>
<repository>
<id>shib-release</id>
@@ -155,4 +159,20 @@
</site>
</distributionManagement>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-jar-plugin</artifactId>
+ <configuration>
+ <archive>
+ <manifestEntries>
+ <Automatic-Module-Name>${automatic.module.name}</Automatic-Module-Name>
+ </manifestEntries>
+ </archive>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+
</project>
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list