[java-plugin-storage-jdbc] branch main updated: Unlock parent POM and clean up deps and doc links.

Scott Cantor cantor.2 at osu.edu
Mon Sep 25 18:58:47 UTC 2023


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

scantor pushed a commit to branch main
in repository java-plugin-storage-jdbc.

View the commit online:
http://git.shibboleth.net/view/?p=java-plugin-storage-jdbc.git;a=commit;h=db82810ec4a632f7383e253efe4851c71e6d1b5e

The following commit(s) were added to refs/heads/main by this push:
     new db82810  Unlock parent POM and clean up deps and doc links.
db82810 is described below

commit db82810ec4a632f7383e253efe4851c71e6d1b5e
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: Mon Sep 25 14:58:17 2023 -0400

    Unlock parent POM and clean up deps and doc links.
---
 jdbc-storage-impl/pom.xml | 25 ++++++++++++++++++-------
 pom.xml                   | 37 +++++++++++++++++++++++++++++++++----
 2 files changed, 51 insertions(+), 11 deletions(-)

diff --git a/jdbc-storage-impl/pom.xml b/jdbc-storage-impl/pom.xml
index 92ce582..df5d8c1 100644
--- a/jdbc-storage-impl/pom.xml
+++ b/jdbc-storage-impl/pom.xml
@@ -20,19 +20,14 @@
     
     <dependencies>
         <!-- Service API and Plugin Description dependency -->
-        <dependency>
-            <groupId>${idp.groupId}</groupId>
-            <artifactId>idp-admin-api</artifactId>
-            <scope>provided</scope>
-        </dependency>
         <dependency>
             <groupId>${idp.groupId}</groupId>
             <artifactId>idp-admin-impl</artifactId>
             <scope>provided</scope>
         </dependency>
         <dependency>
-            <groupId>${slf4j.groupId}</groupId>
-            <artifactId>slf4j-api</artifactId>
+            <groupId>${shib-profile.groupId}</groupId>
+            <artifactId>shib-profile-api</artifactId>
             <scope>provided</scope>
         </dependency>
         <dependency>
@@ -41,6 +36,22 @@
             <version>${opensaml.version}</version>
             <scope>provided</scope>
         </dependency>
+        <dependency>
+            <groupId>${shib-shared.groupId}</groupId>
+            <artifactId>shib-support</artifactId>
+            <version>${shib-shared.version}</version>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>${slf4j.groupId}</groupId>
+            <artifactId>slf4j-api</artifactId>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>com.google.code.findbugs</groupId>
+            <artifactId>jsr305</artifactId>
+        </dependency>
+
         <!--  Test dependencies -->
         <dependency>
             <groupId>${opensaml.groupId}</groupId>
diff --git a/pom.xml b/pom.xml
index 8742ff1..9eb6737 100644
--- a/pom.xml
+++ b/pom.xml
@@ -4,7 +4,7 @@
     <parent>
         <groupId>net.shibboleth</groupId>
         <artifactId>parent</artifactId>
-        <version>17.0.1</version>
+        <version>17.0.2-SNAPSHOT</version>
     </parent>
     <groupId>net.shibboleth.plugin.storage.jdbc</groupId>
     <artifactId>jdbc-storage-parent</artifactId>
@@ -15,9 +15,12 @@
     <properties>
         <idp.groupId>net.shibboleth.idp</idp.groupId>
         <idp.version>5.0.0</idp.version>
+        <shib-profile.groupId>net.shibboleth</shib-profile.groupId>
+        <shib-profile.version>5.0.0</shib-profile.version>
         <opensaml.groupId>org.opensaml</opensaml.groupId>
         <opensaml.version>5.0.0</opensaml.version>
-        <java-shib-shared.version>9.0.0</java-shib-shared.version>
+        <shib-shared.groupId>net.shibboleth</shib-shared.groupId>
+        <shib-shared.version>9.0.0</shib-shared.version>
 	<checkstyle.configLocation>${project.basedir}/resources/checkstyle/checkstyle.xml</checkstyle.configLocation>
     </properties>
     <distributionManagement>
@@ -49,11 +52,26 @@
         </dependency>
     </dependencies>
     <dependencyManagement>
-        <!-- jdbc-storage project dependencies -->
         <dependencies>
+            <!-- Import Dependencies:  Shared -->
+            <dependency>
+                <groupId>${shib-shared.groupId}</groupId>
+                <artifactId>shib-shared-bom</artifactId>
+                <version>${shib-shared.version}</version>
+                <type>pom</type>
+                <scope>import</scope>
+            </dependency>
+            <!-- Import Dependencies:  Shib-Profile -->
+            <dependency>
+                <groupId>${shib-profile.groupId}</groupId>
+                <artifactId>shib-profile-bom</artifactId>
+                <version>${shib-profile.version}</version>
+                <type>pom</type>
+                <scope>import</scope>
+            </dependency>
             <!-- Shibboleth IdP BOM for importing IdP dependencies -->
             <dependency>
-                <groupId>net.shibboleth.idp</groupId>
+                <groupId>${idp.groupId}</groupId>
                 <artifactId>idp-bom</artifactId>
                 <version>${idp.version}</version>
                 <type>pom</type>
@@ -63,6 +81,17 @@
     </dependencyManagement>
     <build>
         <plugins>
+            <plugin>
+                <groupId>net.shibboleth.maven.plugins</groupId>
+                <artifactId>maven-javadoc-plugin</artifactId>
+                <configuration>
+                    <links combine.children="append">
+                        <link>${javadoc.url}/java-shib-shared/${shib-shared.version}</link>
+                        <link>${javadoc.url}/java-opensaml/${opensaml.version}</link>
+                        <link>${javadoc.url}/java-shib-profile/${shib-profile.version}</link>
+                    </links>
+                </configuration>
+            </plugin>
             <plugin>
                 <groupId>org.apache.maven.plugins</groupId>
                 <artifactId>maven-jar-plugin</artifactId>

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


More information about the commits mailing list