[java-identity-provider] branch main updated: Unlock parent POM and add missing groupId properties.

Scott Cantor cantor.2 at osu.edu
Mon Sep 25 17:25:31 UTC 2023


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

scantor pushed a commit to branch main
in repository java-identity-provider.

View the commit online:
http://git.shibboleth.net/view/?p=java-identity-provider.git;a=commit;h=5e02454bd153c1754a711297cb5d12b9c0f927b0

The following commit(s) were added to refs/heads/main by this push:
     new 5e02454bd Unlock parent POM and add missing groupId properties.
5e02454bd is described below

commit 5e02454bd153c1754a711297cb5d12b9c0f927b0
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: Mon Sep 25 13:25:27 2023 -0400

    Unlock parent POM and add missing groupId properties.
---
 idp-admin-api/pom.xml    |  2 +-
 idp-admin-impl/pom.xml   |  4 ++--
 idp-authn-api/pom.xml    |  4 ++--
 idp-authn-impl/pom.xml   | 15 +++++++--------
 idp-cas-api/pom.xml      |  4 ++--
 idp-cas-impl/pom.xml     | 14 +++++++-------
 idp-cli/pom.xml          | 11 ++++++-----
 idp-conf-impl/pom.xml    | 12 ++++++------
 idp-consent-api/pom.xml  |  2 +-
 idp-consent-impl/pom.xml | 10 +++++-----
 idp-installer/pom.xml    | 16 ++++++----------
 idp-parent/pom.xml       | 17 ++++++++++-------
 idp-profile-api/pom.xml  |  2 +-
 idp-profile-impl/pom.xml |  9 +++++----
 idp-saml-api/pom.xml     |  4 ++--
 idp-saml-impl/pom.xml    | 24 ++++++++++++------------
 idp-session-impl/pom.xml |  2 +-
 idp-testing/pom.xml      |  8 ++++----
 idp-ui/pom.xml           |  6 +++---
 idp-war/pom.xml          | 32 ++++++++++++++++----------------
 20 files changed, 99 insertions(+), 99 deletions(-)

diff --git a/idp-admin-api/pom.xml b/idp-admin-api/pom.xml
index 800899f0f..6fc2e892b 100644
--- a/idp-admin-api/pom.xml
+++ b/idp-admin-api/pom.xml
@@ -39,7 +39,7 @@
         </dependency>
 
         <dependency>
-            <groupId>net.shibboleth</groupId>
+            <groupId>${shib-profile.groupId}</groupId>
             <artifactId>shib-profile-api</artifactId>
         </dependency>
 
diff --git a/idp-admin-impl/pom.xml b/idp-admin-impl/pom.xml
index 4dd83d5ef..70f4fdf39 100644
--- a/idp-admin-impl/pom.xml
+++ b/idp-admin-impl/pom.xml
@@ -49,7 +49,7 @@
         </dependency>
 
         <dependency>
-            <groupId>net.shibboleth</groupId>
+            <groupId>${shib-profile.groupId}</groupId>
             <artifactId>shib-profile-api</artifactId>
         </dependency>
 
@@ -163,7 +163,7 @@
 
         <!-- Needed for XMLObject providers. -->
         <dependency>
-            <groupId>net.shibboleth</groupId>
+            <groupId>${shib-metadata.groupId}</groupId>
             <artifactId>shib-metadata-impl</artifactId>
             <scope>test</scope>
         </dependency>
diff --git a/idp-authn-api/pom.xml b/idp-authn-api/pom.xml
index b53b01241..8b47a0981 100644
--- a/idp-authn-api/pom.xml
+++ b/idp-authn-api/pom.xml
@@ -29,12 +29,12 @@
         </dependency>
 
         <dependency>
-            <groupId>net.shibboleth</groupId>
+            <groupId>${shib-profile.groupId}</groupId>
             <artifactId>shib-profile-api</artifactId>
         </dependency>
 
         <dependency>
-            <groupId>net.shibboleth</groupId>
+            <groupId>${shib-attribute.groupId}</groupId>
             <artifactId>shib-attribute-api</artifactId>
         </dependency>
 
diff --git a/idp-authn-impl/pom.xml b/idp-authn-impl/pom.xml
index 38b9ff9b1..53b0f3f55 100644
--- a/idp-authn-impl/pom.xml
+++ b/idp-authn-impl/pom.xml
@@ -54,20 +54,20 @@
         </dependency>
 
         <dependency>
-            <groupId>net.shibboleth</groupId>
+            <groupId>${shib-profile.groupId}</groupId>
             <artifactId>shib-profile-api</artifactId>
         </dependency>
 
         <dependency>
-            <groupId>net.shibboleth</groupId>
+            <groupId>${shib-attribute.groupId}</groupId>
             <artifactId>shib-attribute-api</artifactId>
         </dependency>
         <dependency>
-            <groupId>net.shibboleth</groupId>
+            <groupId>${shib-attribute.groupId}</groupId>
             <artifactId>shib-attribute-filter-api</artifactId>
         </dependency>
         <dependency>
-            <groupId>net.shibboleth</groupId>
+            <groupId>${shib-attribute.groupId}</groupId>
             <artifactId>shib-attribute-resolver-api</artifactId>
         </dependency>
 
@@ -229,20 +229,19 @@
             <scope>test</scope>
         </dependency>
 
-
         <dependency>
-            <groupId>net.shibboleth</groupId>
+            <groupId>${shib-attribute.groupId}</groupId>
             <artifactId>shib-attribute-resolver-impl</artifactId>
             <scope>test</scope>
         </dependency>
         <!-- Required despite dependency:analyze. -->
         <dependency>
-            <groupId>net.shibboleth</groupId>
+            <groupId>${shib-attribute.groupId}</groupId>
             <artifactId>shib-attribute-resolver-spring</artifactId>
             <scope>test</scope>
         </dependency>
         <dependency>
-            <groupId>net.shibboleth</groupId>
+            <groupId>${shib-attribute.groupId}</groupId>
             <artifactId>shib-attribute-testing</artifactId>
             <scope>test</scope>
         </dependency>
diff --git a/idp-cas-api/pom.xml b/idp-cas-api/pom.xml
index 82094fb80..97509d88c 100644
--- a/idp-cas-api/pom.xml
+++ b/idp-cas-api/pom.xml
@@ -39,12 +39,12 @@
         </dependency>
     
         <dependency>
-            <groupId>net.shibboleth</groupId>
+            <groupId>${shib-profile.groupId}</groupId>
             <artifactId>shib-profile-api</artifactId>
         </dependency>
     
         <dependency>
-            <groupId>net.shibboleth</groupId>
+            <groupId>${shib-attribute.groupId}</groupId>
             <artifactId>shib-attribute-api</artifactId>
         </dependency>
     
diff --git a/idp-cas-impl/pom.xml b/idp-cas-impl/pom.xml
index 67f141e96..484a85cd0 100644
--- a/idp-cas-impl/pom.xml
+++ b/idp-cas-impl/pom.xml
@@ -45,17 +45,17 @@
         </dependency>
 
         <dependency>
-            <groupId>net.shibboleth</groupId>
+            <groupId>${shib-profile.groupId}</groupId>
             <artifactId>shib-profile-api</artifactId>
         </dependency>
 
         <dependency>
-            <groupId>net.shibboleth</groupId>
+            <groupId>${shib-profile.groupId}</groupId>
             <artifactId>shib-saml-profile-api</artifactId>
         </dependency>
 
         <dependency>
-            <groupId>net.shibboleth</groupId>
+            <groupId>${shib-attribute.groupId}</groupId>
             <artifactId>shib-attribute-api</artifactId>
         </dependency>
 
@@ -173,22 +173,22 @@
             <scope>test</scope>
         </dependency>
         <dependency>
-            <groupId>net.shibboleth</groupId>
+            <groupId>${shib-profile.groupId}</groupId>
             <artifactId>shib-profile-impl</artifactId>
             <scope>test</scope>
         </dependency>
         <dependency>
-            <groupId>net.shibboleth</groupId>
+            <groupId>${shib-attribute.groupId}</groupId>
             <artifactId>shib-attribute-impl</artifactId>
             <scope>test</scope>
         </dependency>
         <dependency>
-            <groupId>net.shibboleth</groupId>
+            <groupId>${shib-attribute.groupId}</groupId>
             <artifactId>shib-attribute-filter-spring</artifactId>
             <scope>test</scope>
         </dependency>
         <dependency>
-            <groupId>net.shibboleth</groupId>
+            <groupId>${shib-attribute.groupId}</groupId>
             <artifactId>shib-attribute-resolver-spring</artifactId>
             <scope>test</scope>
         </dependency>
diff --git a/idp-cli/pom.xml b/idp-cli/pom.xml
index e60fad53c..2466c17e5 100644
--- a/idp-cli/pom.xml
+++ b/idp-cli/pom.xml
@@ -40,15 +40,16 @@
         </dependency>
 
         <dependency>
-            <groupId>${opensaml.groupId}</groupId>
-            <artifactId>opensaml-security-api</artifactId>
+            <groupId>${project.groupId}</groupId>
+            <artifactId>idp-profile-api</artifactId>
+            <version>${project.version}</version>
             <scope>provided</scope>
         </dependency>
 
         <dependency>
-            <groupId>${project.groupId}</groupId>
-            <artifactId>idp-profile-api</artifactId>
-            <version>${project.version}</version>
+            <groupId>${opensaml.groupId}</groupId>
+            <artifactId>opensaml-security-api</artifactId>
+            <scope>provided</scope>
         </dependency>
 
         <dependency>
diff --git a/idp-conf-impl/pom.xml b/idp-conf-impl/pom.xml
index 244c47705..c1fd2c290 100644
--- a/idp-conf-impl/pom.xml
+++ b/idp-conf-impl/pom.xml
@@ -44,7 +44,7 @@
         </dependency>
 
         <dependency>
-            <groupId>net.shibboleth</groupId>
+            <groupId>${shib-profile.groupId}</groupId>
             <artifactId>shib-profile-api</artifactId>
         </dependency>
 
@@ -141,7 +141,7 @@
         </dependency>
 
         <dependency>
-            <groupId>net.shibboleth</groupId>
+            <groupId>${shib-metadata.groupId}</groupId>
             <artifactId>shib-metadata-spring</artifactId>
             <scope>runtime</scope>
         </dependency>
@@ -202,23 +202,23 @@
         </dependency>
 
         <dependency>
-            <groupId>net.shibboleth</groupId>
+            <groupId>${shib-profile.groupId}</groupId>
             <artifactId>shib-profile-impl</artifactId>
             <scope>test</scope>
         </dependency>
 
         <dependency>
-            <groupId>net.shibboleth</groupId>
+            <groupId>${shib-attribute.groupId}</groupId>
             <artifactId>shib-attribute-api</artifactId>
             <scope>test</scope>
         </dependency>
         <dependency>
-            <groupId>net.shibboleth</groupId>
+            <groupId>${shib-attribute.groupId}</groupId>
             <artifactId>shib-attribute-filter-spring</artifactId>
             <scope>test</scope>
         </dependency>
         <dependency>
-            <groupId>net.shibboleth</groupId>
+            <groupId>${shib-attribute.groupId}</groupId>
             <artifactId>shib-attribute-resolver-spring</artifactId>
             <scope>test</scope>
         </dependency>
diff --git a/idp-consent-api/pom.xml b/idp-consent-api/pom.xml
index b7b15e44c..0691997e3 100644
--- a/idp-consent-api/pom.xml
+++ b/idp-consent-api/pom.xml
@@ -23,7 +23,7 @@
     <dependencies>
         <!-- Compile Dependencies -->
         <dependency>
-            <groupId>net.shibboleth</groupId>
+            <groupId>${shib-attribute.groupId}</groupId>
             <artifactId>shib-attribute-api</artifactId>
         </dependency>
 
diff --git a/idp-consent-impl/pom.xml b/idp-consent-impl/pom.xml
index 78c66fae4..8919c82c0 100644
--- a/idp-consent-impl/pom.xml
+++ b/idp-consent-impl/pom.xml
@@ -34,12 +34,12 @@
         </dependency>
 
         <dependency>
-            <groupId>net.shibboleth</groupId>
+            <groupId>${shib-profile.groupId}</groupId>
             <artifactId>shib-profile-api</artifactId>
         </dependency>
 
         <dependency>
-            <groupId>net.shibboleth</groupId>
+            <groupId>${shib-attribute.groupId}</groupId>
             <artifactId>shib-attribute-api</artifactId>
         </dependency>
 
@@ -138,9 +138,9 @@
         </dependency>
 
         <dependency>
-        	<groupId>net.shibboleth.idp</groupId>
-        	<artifactId>idp-consent-api</artifactId>
-        	<version>${project.version}</version>
+            <groupId>net.shibboleth.idp</groupId>
+            <artifactId>idp-consent-api</artifactId>
+            <version>${project.version}</version>
         </dependency>
     </dependencies>
 
diff --git a/idp-installer/pom.xml b/idp-installer/pom.xml
index c394fdabb..c6e70806c 100644
--- a/idp-installer/pom.xml
+++ b/idp-installer/pom.xml
@@ -38,12 +38,6 @@
             <scope>provided</scope>
         </dependency>
 
-	    <dependency>
-            <groupId>${shib-shared.groupId}</groupId>
-            <artifactId>shib-cli</artifactId>
-           <scope>provided</scope>
-        </dependency>
-
         <dependency>
             <groupId>${project.groupId}</groupId>
             <artifactId>idp-admin-api</artifactId>
@@ -59,7 +53,7 @@
         </dependency>
 
         <dependency>
-            <groupId>net.shibboleth</groupId>
+            <groupId>${shib-metadata.groupId}</groupId>
             <artifactId>shib-metadata-api</artifactId>
             <scope>provided</scope>
         </dependency>
@@ -90,24 +84,26 @@
             <scope>provided</scope>
         </dependency>
 
+        <dependency>
+            <groupId>${shib-shared.groupId}</groupId>
+            <artifactId>shib-cli</artifactId>
+           <scope>provided</scope>
+        </dependency>
         <dependency>
             <groupId>${shib-shared.groupId}</groupId>
             <artifactId>shib-networking</artifactId>
             <scope>provided</scope>
         </dependency>
-
         <dependency>
             <groupId>${shib-shared.groupId}</groupId>
             <artifactId>shib-networking-spring</artifactId>
             <scope>provided</scope>
         </dependency>
-        
         <dependency>
             <groupId>${shib-shared.groupId}</groupId>
             <artifactId>shib-security</artifactId>
             <scope>provided</scope>
         </dependency>
-        
         <dependency>
             <groupId>${shib-shared.groupId}</groupId>
             <artifactId>shib-spring</artifactId>
diff --git a/idp-parent/pom.xml b/idp-parent/pom.xml
index 800f6c24d..7d5974943 100644
--- a/idp-parent/pom.xml
+++ b/idp-parent/pom.xml
@@ -59,13 +59,16 @@
     </modules>
 
     <properties>
+        <shib-shared.groupId>net.shibboleth</shib-shared.groupId>
+        <shib-shared.version>9.0.0</shib-shared.version>
         <opensaml.groupId>org.opensaml</opensaml.groupId>
         <opensaml.version>5.0.0</opensaml.version>
-        <shib-profile.version>5.0.0</shib-profile.version>
-        <shib-attribute.version>5.0.0</shib-attribute.version>
+        <shib-metadata.groupId>net.shibboleth</shib-metadata.groupId>
         <shib-metadata.version>5.0.0</shib-metadata.version>
-        <shib-shared.groupId>net.shibboleth</shib-shared.groupId>
-        <shib-shared.version>9.0.0</shib-shared.version>
+        <shib-attribute.groupId>net.shibboleth</shib-attribute.groupId>
+        <shib-attribute.version>5.0.0</shib-attribute.version>
+        <shib-profile.groupId>net.shibboleth</shib-profile.groupId>
+        <shib-profile.version>5.0.0</shib-profile.version>
         <checkstyle.configLocation>${project.basedir}/../idp-parent/resources/checkstyle/checkstyle.xml</checkstyle.configLocation>
         <idp-parent.site.url>${shibboleth.site.deploy.url}java-identity-provider/${project.version}/</idp-parent.site.url>
         <idp-module.site.url>${idp-parent.site.url}${project.artifactId}</idp-module.site.url>
@@ -114,21 +117,21 @@
         <dependencies>
             <!-- Import Dependencies:  Shib-Metadata/Attribute/Profile -->
             <dependency>
-                <groupId>net.shibboleth</groupId>
+                <groupId>${shib-profile.groupId}</groupId>
                 <artifactId>shib-profile-bom</artifactId>
                 <version>${shib-profile.version}</version>
                 <type>pom</type>
                 <scope>import</scope>
             </dependency>
             <dependency>
-                <groupId>net.shibboleth</groupId>
+                <groupId>${shib-attribute.groupId}</groupId>
                 <artifactId>shib-attribute-bom</artifactId>
                 <version>${shib-attribute.version}</version>
                 <type>pom</type>
                 <scope>import</scope>
             </dependency>
             <dependency>
-                <groupId>net.shibboleth</groupId>
+                <groupId>${shib-metadata.groupId}</groupId>
                 <artifactId>shib-metadata-bom</artifactId>
                 <version>${shib-metadata.version}</version>
                 <type>pom</type>
diff --git a/idp-profile-api/pom.xml b/idp-profile-api/pom.xml
index 91cfe39d5..04d58fb84 100644
--- a/idp-profile-api/pom.xml
+++ b/idp-profile-api/pom.xml
@@ -23,7 +23,7 @@
     <dependencies>
         <!-- Compile Dependencies -->
         <dependency>
-            <groupId>net.shibboleth</groupId>
+            <groupId>${shib-profile.groupId}</groupId>
             <artifactId>shib-profile-api</artifactId>
         </dependency>
 
diff --git a/idp-profile-impl/pom.xml b/idp-profile-impl/pom.xml
index d0ccda1e9..bea6f209f 100644
--- a/idp-profile-impl/pom.xml
+++ b/idp-profile-impl/pom.xml
@@ -34,20 +34,20 @@
         </dependency>
 
         <dependency>
-            <groupId>net.shibboleth</groupId>
+            <groupId>${shib-profile.groupId}</groupId>
             <artifactId>shib-profile-api</artifactId>
         </dependency>
 
         <dependency>
-            <groupId>net.shibboleth</groupId>
+            <groupId>${shib-attribute.groupId}</groupId>
             <artifactId>shib-attribute-api</artifactId>
         </dependency>
         <dependency>
-            <groupId>net.shibboleth</groupId>
+            <groupId>${shib-attribute.groupId}</groupId>
             <artifactId>shib-attribute-resolver-api</artifactId>
         </dependency>
         <dependency>
-            <groupId>net.shibboleth</groupId>
+            <groupId>${shib-attribute.groupId}</groupId>
             <artifactId>shib-attribute-filter-api</artifactId>
         </dependency>
 
@@ -102,6 +102,7 @@
             <groupId>com.google.guava</groupId>
             <artifactId>guava</artifactId>
         </dependency>
+
         <!-- Provided Dependencies -->
         <dependency>
             <groupId>jakarta.servlet</groupId>
diff --git a/idp-saml-api/pom.xml b/idp-saml-api/pom.xml
index 433aac996..78538e4a2 100644
--- a/idp-saml-api/pom.xml
+++ b/idp-saml-api/pom.xml
@@ -39,11 +39,11 @@
         </dependency>
 
         <dependency>
-            <groupId>net.shibboleth</groupId>
+            <groupId>${shib-profile.groupId}</groupId>
             <artifactId>shib-profile-api</artifactId>
         </dependency>
         <dependency>
-            <groupId>net.shibboleth</groupId>
+            <groupId>${shib-profile.groupId}</groupId>
             <artifactId>shib-saml-profile-api</artifactId>
         </dependency>
 
diff --git a/idp-saml-impl/pom.xml b/idp-saml-impl/pom.xml
index ad39558ac..4170647e9 100644
--- a/idp-saml-impl/pom.xml
+++ b/idp-saml-impl/pom.xml
@@ -49,28 +49,28 @@
         </dependency>
 
         <dependency>
-            <groupId>net.shibboleth</groupId>
+            <groupId>${shib-profile.groupId}</groupId>
             <artifactId>shib-profile-api</artifactId>
         </dependency>
         <dependency>
-            <groupId>net.shibboleth</groupId>
+            <groupId>${shib-profile.groupId}</groupId>
             <artifactId>shib-saml-profile-api</artifactId>
         </dependency>
         
         <dependency>
-            <groupId>net.shibboleth</groupId>
+            <groupId>${shib-attribute.groupId}</groupId>
             <artifactId>shib-attribute-api</artifactId>
         </dependency>
         <dependency>
-            <groupId>net.shibboleth</groupId>
+            <groupId>${shib-attribute.groupId}</groupId>
             <artifactId>shib-attribute-impl</artifactId>
         </dependency>
         <dependency>
-            <groupId>net.shibboleth</groupId>
+            <groupId>${shib-attribute.groupId}</groupId>
             <artifactId>shib-attribute-filter-api</artifactId>
         </dependency>
         <dependency>
-            <groupId>net.shibboleth</groupId>
+            <groupId>${shib-attribute.groupId}</groupId>
             <artifactId>shib-saml-attribute-impl</artifactId>
         </dependency>
 
@@ -196,33 +196,33 @@
         </dependency>
 
         <dependency>
-            <groupId>net.shibboleth</groupId>
+            <groupId>${shib-profile.groupId}</groupId>
             <artifactId>shib-profile-impl</artifactId>
             <scope>test</scope>
         </dependency>
 
         <dependency>
-            <groupId>net.shibboleth</groupId>
+            <groupId>${shib-attribute.groupId}</groupId>
             <artifactId>shib-attribute-testing</artifactId>
             <scope>test</scope>
         </dependency>
         <dependency>
-            <groupId>net.shibboleth</groupId>
+            <groupId>${shib-attribute.groupId}</groupId>
             <artifactId>shib-attribute-filter-impl</artifactId>
             <scope>test</scope>
         </dependency>
         <dependency>
-            <groupId>net.shibboleth</groupId>
+            <groupId>${shib-attribute.groupId}</groupId>
             <artifactId>shib-attribute-resolver-api</artifactId>
             <scope>test</scope>
         </dependency>
         <dependency>
-            <groupId>net.shibboleth</groupId>
+            <groupId>${shib-attribute.groupId}</groupId>
             <artifactId>shib-attribute-resolver-impl</artifactId>
             <scope>test</scope>
         </dependency>
         <dependency>
-            <groupId>net.shibboleth</groupId>
+            <groupId>${shib-attribute.groupId}</groupId>
             <artifactId>shib-saml-attribute-api</artifactId>
             <scope>test</scope>
         </dependency>
diff --git a/idp-session-impl/pom.xml b/idp-session-impl/pom.xml
index 451b9debc..6f4f3cd05 100644
--- a/idp-session-impl/pom.xml
+++ b/idp-session-impl/pom.xml
@@ -39,7 +39,7 @@
         </dependency>
 
         <dependency>
-            <groupId>net.shibboleth</groupId>
+            <groupId>${shib-profile.groupId}</groupId>
             <artifactId>shib-profile-api</artifactId>
         </dependency>
 
diff --git a/idp-testing/pom.xml b/idp-testing/pom.xml
index 932f33452..8e060ede2 100644
--- a/idp-testing/pom.xml
+++ b/idp-testing/pom.xml
@@ -34,20 +34,20 @@
         </dependency>
 
         <dependency>
-            <groupId>net.shibboleth</groupId>
+            <groupId>${shib-profile.groupId}</groupId>
             <artifactId>shib-profile-api</artifactId>
         </dependency>
 
         <dependency>
-            <groupId>net.shibboleth</groupId>
+            <groupId>${shib-attribute.groupId}</groupId>
             <artifactId>shib-attribute-api</artifactId>
         </dependency>
         <dependency>
-            <groupId>net.shibboleth</groupId>
+            <groupId>${shib-attribute.groupId}</groupId>
             <artifactId>shib-attribute-resolver-api</artifactId>
         </dependency>
         <dependency>
-            <groupId>net.shibboleth</groupId>
+            <groupId>${shib-attribute.groupId}</groupId>
             <artifactId>shib-saml-attribute-impl</artifactId>
         </dependency>
 
diff --git a/idp-ui/pom.xml b/idp-ui/pom.xml
index 91b31b14a..ecca1656c 100644
--- a/idp-ui/pom.xml
+++ b/idp-ui/pom.xml
@@ -39,17 +39,17 @@
         </dependency>
 
         <dependency>
-            <groupId>net.shibboleth</groupId>
+            <groupId>${shib-profile.groupId}</groupId>
             <artifactId>shib-saml-profile-api</artifactId>
         </dependency>
 
         <dependency>
-            <groupId>net.shibboleth</groupId>
+            <groupId>${shib-attribute.groupId}</groupId>
             <artifactId>shib-attribute-api</artifactId>
         </dependency>
 
         <dependency>
-            <groupId>net.shibboleth</groupId>
+            <groupId>${shib-metadata.groupId}</groupId>
             <artifactId>shib-metadata-api</artifactId>
         </dependency>
 
diff --git a/idp-war/pom.xml b/idp-war/pom.xml
index c619e812d..7cca7b405 100644
--- a/idp-war/pom.xml
+++ b/idp-war/pom.xml
@@ -115,67 +115,67 @@
             <version>${project.version}</version>
         </dependency>
         <dependency>
-            <groupId>net.shibboleth</groupId>
+            <groupId>${shib-profile.groupId}</groupId>
             <artifactId>shib-profile-api</artifactId>
         </dependency>
         <dependency>
-            <groupId>net.shibboleth</groupId>
+            <groupId>${shib-profile.groupId}</groupId>
             <artifactId>shib-profile-impl</artifactId>
         </dependency>
         <dependency>
-            <groupId>net.shibboleth</groupId>
+            <groupId>${shib-profile.groupId}</groupId>
             <artifactId>shib-saml-profile-api</artifactId>
         </dependency>
         <dependency>
-            <groupId>net.shibboleth</groupId>
+            <groupId>${shib-attribute.groupId}</groupId>
             <artifactId>shib-attribute-api</artifactId>
         </dependency>
         <dependency>
-            <groupId>net.shibboleth</groupId>
+            <groupId>${shib-attribute.groupId}</groupId>
             <artifactId>shib-attribute-impl</artifactId>
         </dependency>
         <dependency>
-            <groupId>net.shibboleth</groupId>
+            <groupId>${shib-attribute.groupId}</groupId>
             <artifactId>shib-saml-attribute-api</artifactId>
         </dependency>
         <dependency>
-            <groupId>net.shibboleth</groupId>
+            <groupId>${shib-attribute.groupId}</groupId>
             <artifactId>shib-saml-attribute-impl</artifactId>
         </dependency>
         <dependency>
-            <groupId>net.shibboleth</groupId>
+            <groupId>${shib-attribute.groupId}</groupId>
             <artifactId>shib-attribute-filter-api</artifactId>
         </dependency>
         <dependency>
-            <groupId>net.shibboleth</groupId>
+            <groupId>${shib-attribute.groupId}</groupId>
             <artifactId>shib-attribute-filter-impl</artifactId>
         </dependency>
         <dependency>
-            <groupId>net.shibboleth</groupId>
+            <groupId>${shib-attribute.groupId}</groupId>
             <artifactId>shib-attribute-filter-spring</artifactId>
         </dependency>
         <dependency>
-            <groupId>net.shibboleth</groupId>
+            <groupId>${shib-attribute.groupId}</groupId>
             <artifactId>shib-attribute-resolver-api</artifactId>
         </dependency>
         <dependency>
-            <groupId>net.shibboleth</groupId>
+            <groupId>${shib-attribute.groupId}</groupId>
             <artifactId>shib-attribute-resolver-impl</artifactId>
         </dependency>
         <dependency>
-            <groupId>net.shibboleth</groupId>
+            <groupId>${shib-attribute.groupId}</groupId>
             <artifactId>shib-attribute-resolver-spring</artifactId>
         </dependency>
         <dependency>
-            <groupId>net.shibboleth</groupId>
+            <groupId>${shib-metadata.groupId}</groupId>
             <artifactId>shib-metadata-api</artifactId>
         </dependency>
         <dependency>
-            <groupId>net.shibboleth</groupId>
+            <groupId>${shib-metadata.groupId}</groupId>
             <artifactId>shib-metadata-impl</artifactId>
         </dependency>
         <dependency>
-            <groupId>net.shibboleth</groupId>
+            <groupId>${shib-metadata.groupId}</groupId>
             <artifactId>shib-metadata-spring</artifactId>
         </dependency>
         <dependency>

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


More information about the commits mailing list