[java-metadata-aggregator] branch master updated: JPAR-113 - establish Automatic-Module-Name

Ian Young ian at iay.org.uk
Mon Oct 1 10:06:15 EDT 2018


This is an automated email from the git hooks/post-receive script.

iay pushed a commit to branch master
in repository java-metadata-aggregator.

View the commit online:
http://git.shibboleth.net/view/?p=java-metadata-aggregator.git;a=commit;h=8a4913a122acd912089e98f3f6c1789979179534

The following commit(s) were added to refs/heads/master by this push:
       new  8a4913a   JPAR-113 - establish Automatic-Module-Name
8a4913a is described below

commit 8a4913a122acd912089e98f3f6c1789979179534
Author: Ian Young <ian at iay.org.uk>
AuthorDate: Mon Oct 1 15:06:09 2018 +0100

    JPAR-113 - establish Automatic-Module-Name
---
 aggregator-blacklists/pom.xml |  4 ++++
 aggregator-cli/pom.xml        |  4 ++++
 aggregator-parent/pom.xml     | 12 ++++++++++++
 aggregator-pipeline/pom.xml   |  4 ++++
 4 files changed, 24 insertions(+)

diff --git a/aggregator-blacklists/pom.xml b/aggregator-blacklists/pom.xml
index 82416a7..e352cca 100644
--- a/aggregator-blacklists/pom.xml
+++ b/aggregator-blacklists/pom.xml
@@ -15,6 +15,10 @@
     <artifactId>aggregator-blacklists</artifactId>
     <packaging>jar</packaging>
 
+    <properties>
+        <automatic.module.name>net.shibboleth.metadata.blacklists</automatic.module.name>
+    </properties>
+
     <dependencies>
         <!-- Compile Dependencies -->
 
diff --git a/aggregator-cli/pom.xml b/aggregator-cli/pom.xml
index 97172bd..f8ea6db 100644
--- a/aggregator-cli/pom.xml
+++ b/aggregator-cli/pom.xml
@@ -16,6 +16,10 @@
     <artifactId>aggregator-cli</artifactId>
     <packaging>jar</packaging>
 
+    <properties>
+        <automatic.module.name>net.shibboleth.metadata.cli</automatic.module.name>
+    </properties>
+
     <dependencies>
         <!-- Compile Dependencies -->
         <dependency>
diff --git a/aggregator-parent/pom.xml b/aggregator-parent/pom.xml
index 38adc0d..4a385a6 100644
--- a/aggregator-parent/pom.xml
+++ b/aggregator-parent/pom.xml
@@ -139,6 +139,18 @@
                     <siteDirectory>../aggregator-parent/src/site</siteDirectory>
                 </configuration>
             </plugin>
+
+            <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>
 
diff --git a/aggregator-pipeline/pom.xml b/aggregator-pipeline/pom.xml
index f90b111..b72adde 100644
--- a/aggregator-pipeline/pom.xml
+++ b/aggregator-pipeline/pom.xml
@@ -16,6 +16,10 @@
     <artifactId>aggregator-pipeline</artifactId>
     <packaging>jar</packaging>
 
+    <properties>
+        <automatic.module.name>net.shibboleth.metadata</automatic.module.name>
+    </properties>
+
     <dependencies>
         <!-- Compile Dependencies -->
         <dependency>

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the commits mailing list