[java-sp-server] branch main updated: Add SP BOM.

Scott Cantor cantor.2 at osu.edu
Thu Oct 20 14:51:41 UTC 2022


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

scantor pushed a commit to branch main
in repository java-sp-server.

View the commit online:
http://git.shibboleth.net/view/?p=java-sp-server.git;a=commit;h=3a3ee3562a86bb78abc395901c18f311da25e66c

The following commit(s) were added to refs/heads/main by this push:
     new 3a3ee35  Add SP BOM.
3a3ee35 is described below

commit 3a3ee3562a86bb78abc395901c18f311da25e66c
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: Thu Oct 20 10:51:35 2022 -0400

    Add SP BOM.
---
 pom.xml           |  1 +
 sp-bom/.gitignore |  1 +
 sp-bom/pom.xml    | 56 +++++++++++++++++++++++++++++++++++++++++++++++++++++++
 3 files changed, 58 insertions(+)

diff --git a/pom.xml b/pom.xml
index 8401f70..10de363 100644
--- a/pom.xml
+++ b/pom.xml
@@ -59,6 +59,7 @@
     </repositories>
     
     <modules>
+        <module>sp-bom</module>
         <module>sp-conf</module>
         <module>sp-conf-impl</module>
         <module>sp-server-api</module>
diff --git a/sp-bom/.gitignore b/sp-bom/.gitignore
new file mode 100644
index 0000000..ea8c4bf
--- /dev/null
+++ b/sp-bom/.gitignore
@@ -0,0 +1 @@
+/target
diff --git a/sp-bom/pom.xml b/sp-bom/pom.xml
new file mode 100644
index 0000000..6d5a4a7
--- /dev/null
+++ b/sp-bom/pom.xml
@@ -0,0 +1,56 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+
+    <modelVersion>4.0.0</modelVersion>
+
+    <parent>
+        <groupId>net.shibboleth.sp</groupId>
+        <artifactId>sp-server-parent</artifactId>
+        <version>0.0.1-SNAPSHOT</version>
+    </parent>
+
+    <name>Shibboleth SP :: BOM</name>
+    <description>Bill of Materials</description>
+    <artifactId>sp-bom</artifactId>
+    <packaging>pom</packaging>
+    
+    <dependencyManagement>
+        <dependencies>
+            <dependency>
+                <groupId>${project.groupId}</groupId>
+                <artifactId>sp-server-api</artifactId>
+                <version>${project.version}</version>
+            </dependency>
+            <dependency>
+                <groupId>${project.groupId}</groupId>
+                <artifactId>sp-session-api</artifactId>
+                <version>${project.version}</version>
+            </dependency>
+            
+            <dependency>
+                <groupId>${project.groupId}</groupId>
+                <artifactId>idp-server-impl</artifactId>
+                <version>${project.version}</version>
+            </dependency>
+            <dependency>
+                <groupId>${project.groupId}</groupId>
+                <artifactId>idp-session-impl</artifactId>
+                <version>${project.version}</version>
+            </dependency>
+            
+            <dependency>
+                <groupId>${project.groupId}</groupId>
+                <artifactId>sp-conf</artifactId>
+                <version>${project.version}</version>
+            </dependency>
+            <dependency>
+                <groupId>${project.groupId}</groupId>
+                <artifactId>sp-conf-impl</artifactId>
+                <version>${project.version}</version>
+            </dependency>
+
+        </dependencies>
+    </dependencyManagement>
+    
+</project>

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


More information about the commits mailing list