[java-opensaml] branch master updated: JPAR-113 - establish Automatic-Module-Name
Ian Young
ian at iay.org.uk
Sat Sep 29 13:15:55 EDT 2018
This is an automated email from the git hooks/post-receive script.
iay pushed a commit to branch master
in repository java-opensaml.
View the commit online:
http://git.shibboleth.net/view/?p=java-opensaml.git;a=commit;h=4d6f2d80b0669a267dbcac7904472af381d2f99c
The following commit(s) were added to refs/heads/master by this push:
new 4d6f2d8 JPAR-113 - establish Automatic-Module-Name
4d6f2d8 is described below
commit 4d6f2d80b0669a267dbcac7904472af381d2f99c
Author: Ian Young <ian at iay.org.uk>
AuthorDate: Sat Sep 29 18:15:48 2018 +0100
JPAR-113 - establish Automatic-Module-Name
---
opensaml-core/pom.xml | 4 ++++
opensaml-messaging-api/pom.xml | 4 ++++
opensaml-messaging-impl/pom.xml | 4 ++++
opensaml-parent/pom.xml | 12 ++++++++++++
opensaml-profile-api/pom.xml | 4 ++++
opensaml-profile-impl/pom.xml | 4 ++++
opensaml-saml-api/pom.xml | 4 ++++
opensaml-saml-impl/pom.xml | 4 ++++
opensaml-security-api/pom.xml | 4 ++++
opensaml-security-impl/pom.xml | 4 ++++
opensaml-soap-api/pom.xml | 4 ++++
opensaml-soap-impl/pom.xml | 4 ++++
opensaml-storage-api/pom.xml | 4 ++++
opensaml-storage-impl/pom.xml | 4 ++++
opensaml-xacml-api/pom.xml | 4 ++++
opensaml-xacml-impl/pom.xml | 4 ++++
opensaml-xacml-saml-api/pom.xml | 4 ++++
opensaml-xacml-saml-impl/pom.xml | 4 ++++
opensaml-xmlsec-api/pom.xml | 4 ++++
opensaml-xmlsec-impl/pom.xml | 4 ++++
20 files changed, 88 insertions(+)
diff --git a/opensaml-core/pom.xml b/opensaml-core/pom.xml
index 0432ef0..2e24640 100644
--- a/opensaml-core/pom.xml
+++ b/opensaml-core/pom.xml
@@ -16,6 +16,10 @@
<artifactId>opensaml-core</artifactId>
<packaging>jar</packaging>
+ <properties>
+ <automatic.module.name>org.opensaml.core</automatic.module.name>
+ </properties>
+
<dependencies>
<!-- Compile Dependencies -->
<dependency>
diff --git a/opensaml-messaging-api/pom.xml b/opensaml-messaging-api/pom.xml
index a3e2938..ee2da85 100644
--- a/opensaml-messaging-api/pom.xml
+++ b/opensaml-messaging-api/pom.xml
@@ -16,6 +16,10 @@
<artifactId>opensaml-messaging-api</artifactId>
<packaging>jar</packaging>
+ <properties>
+ <automatic.module.name>org.opensaml.messaging</automatic.module.name>
+ </properties>
+
<dependencies>
<!-- Compile Dependencies -->
diff --git a/opensaml-messaging-impl/pom.xml b/opensaml-messaging-impl/pom.xml
index 2783f2a..42bb4d4 100644
--- a/opensaml-messaging-impl/pom.xml
+++ b/opensaml-messaging-impl/pom.xml
@@ -16,6 +16,10 @@
<artifactId>opensaml-messaging-impl</artifactId>
<packaging>jar</packaging>
+ <properties>
+ <automatic.module.name>org.opensaml.messaging.impl</automatic.module.name>
+ </properties>
+
<dependencies>
<!-- Compile Dependencies -->
<dependency>
diff --git a/opensaml-parent/pom.xml b/opensaml-parent/pom.xml
index 496cc06..194b760 100644
--- a/opensaml-parent/pom.xml
+++ b/opensaml-parent/pom.xml
@@ -173,6 +173,18 @@
<siteDirectory>../opensaml-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/opensaml-profile-api/pom.xml b/opensaml-profile-api/pom.xml
index d5bf486..f155c5f 100644
--- a/opensaml-profile-api/pom.xml
+++ b/opensaml-profile-api/pom.xml
@@ -16,6 +16,10 @@
<artifactId>opensaml-profile-api</artifactId>
<packaging>jar</packaging>
+ <properties>
+ <automatic.module.name>org.opensaml.profile</automatic.module.name>
+ </properties>
+
<dependencies>
<!-- Compile Dependencies -->
<dependency>
diff --git a/opensaml-profile-impl/pom.xml b/opensaml-profile-impl/pom.xml
index cae9c30..85c75c9 100644
--- a/opensaml-profile-impl/pom.xml
+++ b/opensaml-profile-impl/pom.xml
@@ -16,6 +16,10 @@
<artifactId>opensaml-profile-impl</artifactId>
<packaging>jar</packaging>
+ <properties>
+ <automatic.module.name>org.opensaml.profile.impl</automatic.module.name>
+ </properties>
+
<dependencies>
<!-- Compile Dependencies -->
<dependency>
diff --git a/opensaml-saml-api/pom.xml b/opensaml-saml-api/pom.xml
index ab284b3..61cd925 100644
--- a/opensaml-saml-api/pom.xml
+++ b/opensaml-saml-api/pom.xml
@@ -16,6 +16,10 @@
<artifactId>opensaml-saml-api</artifactId>
<packaging>jar</packaging>
+ <properties>
+ <automatic.module.name>org.opensaml.saml</automatic.module.name>
+ </properties>
+
<dependencies>
<!-- Compile Dependencies -->
<dependency>
diff --git a/opensaml-saml-impl/pom.xml b/opensaml-saml-impl/pom.xml
index 275284d..8a983f3 100644
--- a/opensaml-saml-impl/pom.xml
+++ b/opensaml-saml-impl/pom.xml
@@ -16,6 +16,10 @@
<artifactId>opensaml-saml-impl</artifactId>
<packaging>jar</packaging>
+ <properties>
+ <automatic.module.name>org.opensaml.saml.impl</automatic.module.name>
+ </properties>
+
<dependencies>
<!-- Compile Dependencies -->
<dependency>
diff --git a/opensaml-security-api/pom.xml b/opensaml-security-api/pom.xml
index e195662..7811362 100644
--- a/opensaml-security-api/pom.xml
+++ b/opensaml-security-api/pom.xml
@@ -16,6 +16,10 @@
<artifactId>opensaml-security-api</artifactId>
<packaging>jar</packaging>
+ <properties>
+ <automatic.module.name>org.opensaml.security</automatic.module.name>
+ </properties>
+
<dependencies>
<!-- Compile Dependencies -->
<dependency>
diff --git a/opensaml-security-impl/pom.xml b/opensaml-security-impl/pom.xml
index 1cc4239..b869644 100644
--- a/opensaml-security-impl/pom.xml
+++ b/opensaml-security-impl/pom.xml
@@ -16,6 +16,10 @@
<artifactId>opensaml-security-impl</artifactId>
<packaging>jar</packaging>
+ <properties>
+ <automatic.module.name>org.opensaml.security.impl</automatic.module.name>
+ </properties>
+
<dependencies>
<!-- Compile Dependencies -->
<dependency>
diff --git a/opensaml-soap-api/pom.xml b/opensaml-soap-api/pom.xml
index 44b2a4b..766bcbf 100644
--- a/opensaml-soap-api/pom.xml
+++ b/opensaml-soap-api/pom.xml
@@ -16,6 +16,10 @@
<artifactId>opensaml-soap-api</artifactId>
<packaging>jar</packaging>
+ <properties>
+ <automatic.module.name>org.opensaml.soap</automatic.module.name>
+ </properties>
+
<dependencies>
<!-- Compile Dependencies -->
<dependency>
diff --git a/opensaml-soap-impl/pom.xml b/opensaml-soap-impl/pom.xml
index ed76171..23adfdd 100644
--- a/opensaml-soap-impl/pom.xml
+++ b/opensaml-soap-impl/pom.xml
@@ -16,6 +16,10 @@
<artifactId>opensaml-soap-impl</artifactId>
<packaging>jar</packaging>
+ <properties>
+ <automatic.module.name>org.opensaml.soap.impl</automatic.module.name>
+ </properties>
+
<dependencies>
<!-- Compile Dependencies -->
<dependency>
diff --git a/opensaml-storage-api/pom.xml b/opensaml-storage-api/pom.xml
index 4507220..a72e6b9 100644
--- a/opensaml-storage-api/pom.xml
+++ b/opensaml-storage-api/pom.xml
@@ -16,6 +16,10 @@
<artifactId>opensaml-storage-api</artifactId>
<packaging>jar</packaging>
+ <properties>
+ <automatic.module.name>org.opensaml.storage</automatic.module.name>
+ </properties>
+
<dependencies>
<!-- Compile Dependencies -->
<dependency>
diff --git a/opensaml-storage-impl/pom.xml b/opensaml-storage-impl/pom.xml
index a3fb7c0..14bc524 100644
--- a/opensaml-storage-impl/pom.xml
+++ b/opensaml-storage-impl/pom.xml
@@ -16,6 +16,10 @@
<artifactId>opensaml-storage-impl</artifactId>
<packaging>jar</packaging>
+ <properties>
+ <automatic.module.name>org.opensaml.storage.impl</automatic.module.name>
+ </properties>
+
<dependencies>
<!-- Compile Dependencies -->
<dependency>
diff --git a/opensaml-xacml-api/pom.xml b/opensaml-xacml-api/pom.xml
index fbd1236..0c93483 100644
--- a/opensaml-xacml-api/pom.xml
+++ b/opensaml-xacml-api/pom.xml
@@ -16,6 +16,10 @@
<artifactId>opensaml-xacml-api</artifactId>
<packaging>jar</packaging>
+ <properties>
+ <automatic.module.name>org.opensaml.xacml</automatic.module.name>
+ </properties>
+
<dependencies>
<!-- Compile Dependencies -->
<dependency>
diff --git a/opensaml-xacml-impl/pom.xml b/opensaml-xacml-impl/pom.xml
index cc19295..0c2b623 100644
--- a/opensaml-xacml-impl/pom.xml
+++ b/opensaml-xacml-impl/pom.xml
@@ -16,6 +16,10 @@
<artifactId>opensaml-xacml-impl</artifactId>
<packaging>jar</packaging>
+ <properties>
+ <automatic.module.name>org.opensaml.xacml.impl</automatic.module.name>
+ </properties>
+
<dependencies>
<!-- Compile Dependencies -->
<dependency>
diff --git a/opensaml-xacml-saml-api/pom.xml b/opensaml-xacml-saml-api/pom.xml
index bff7ae5..627056d 100644
--- a/opensaml-xacml-saml-api/pom.xml
+++ b/opensaml-xacml-saml-api/pom.xml
@@ -16,6 +16,10 @@
<artifactId>opensaml-xacml-saml-api</artifactId>
<packaging>jar</packaging>
+ <properties>
+ <automatic.module.name>org.opensaml.xacml.profile.saml</automatic.module.name>
+ </properties>
+
<dependencies>
<!-- Compile Dependencies -->
<dependency>
diff --git a/opensaml-xacml-saml-impl/pom.xml b/opensaml-xacml-saml-impl/pom.xml
index 30845fd..4b46f19 100644
--- a/opensaml-xacml-saml-impl/pom.xml
+++ b/opensaml-xacml-saml-impl/pom.xml
@@ -16,6 +16,10 @@
<artifactId>opensaml-xacml-saml-impl</artifactId>
<packaging>jar</packaging>
+ <properties>
+ <automatic.module.name>org.opensaml.xacml.profile.saml.impl</automatic.module.name>
+ </properties>
+
<dependencies>
<!-- Compile Dependencies -->
<dependency>
diff --git a/opensaml-xmlsec-api/pom.xml b/opensaml-xmlsec-api/pom.xml
index e826f45..565df4b 100644
--- a/opensaml-xmlsec-api/pom.xml
+++ b/opensaml-xmlsec-api/pom.xml
@@ -16,6 +16,10 @@
<artifactId>opensaml-xmlsec-api</artifactId>
<packaging>jar</packaging>
+ <properties>
+ <automatic.module.name>org.opensaml.xmlsec</automatic.module.name>
+ </properties>
+
<dependencies>
<!-- Compile Dependencies -->
<dependency>
diff --git a/opensaml-xmlsec-impl/pom.xml b/opensaml-xmlsec-impl/pom.xml
index e11e171..dfb2cd3 100644
--- a/opensaml-xmlsec-impl/pom.xml
+++ b/opensaml-xmlsec-impl/pom.xml
@@ -16,6 +16,10 @@
<artifactId>opensaml-xmlsec-impl</artifactId>
<packaging>jar</packaging>
+ <properties>
+ <automatic.module.name>org.opensaml.xmlsec.impl</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