[java-metadata-aggregator] 01/02: Manage individual shib-shared dependencies

Ian Young ian at iay.org.uk
Mon Nov 27 16:14:10 UTC 2023


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

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

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

commit 668b278f3d8f950eefb886920917861c76f650e0
Author: Ian Young <ian at iay.org.uk>
AuthorDate: Mon Nov 27 15:06:19 2023 +0000

    Manage individual shib-shared dependencies
    
    Using the POM was slightly more convenient, but in practice the resulting
    dependency resolution process appears to be unpredictable.
---
 pom.xml | 36 +++++++++++++++++++++++++++++-------
 1 file changed, 29 insertions(+), 7 deletions(-)

diff --git a/pom.xml b/pom.xml
index 867974e..c47d2ae 100644
--- a/pom.xml
+++ b/pom.xml
@@ -85,16 +85,38 @@
     <dependencyManagement>
         <dependencies>
 
-            <!-- Import Dependencies:  Shared -->
+            <!-- Compile Dependencies -->
+
             <dependency>
-            <groupId>${shib-shared.groupId}</groupId>
-                <artifactId>shib-shared-bom</artifactId>
+                <groupId>${shib-shared.groupId}</groupId>
+                <artifactId>shib-networking</artifactId>
+                <version>${shib-shared.version}</version>
+            </dependency>
+            <dependency>
+                <groupId>${shib-shared.groupId}</groupId>
+                <artifactId>shib-networking-spring</artifactId>
+                <version>${shib-shared.version}</version>
+            </dependency>
+            <dependency>
+                <groupId>${shib-shared.groupId}</groupId>
+                <artifactId>shib-security</artifactId>
+                <version>${shib-shared.version}</version>
+            </dependency>
+            <dependency>
+                <groupId>${shib-shared.groupId}</groupId>
+                <artifactId>shib-security-spring</artifactId>
+                <version>${shib-shared.version}</version>
+            </dependency>
+            <dependency>
+                <groupId>${shib-shared.groupId}</groupId>
+                <artifactId>shib-spring</artifactId>
+                <version>${shib-shared.version}</version>
+            </dependency>
+            <dependency>
+                <groupId>${shib-shared.groupId}</groupId>
+                <artifactId>shib-support</artifactId>
                 <version>${shib-shared.version}</version>
-                <type>pom</type>
-                <scope>import</scope>
             </dependency>
-
-            <!-- Compile Dependencies -->
 
             <!-- Provided Dependencies -->
 

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


More information about the commits mailing list