[java-shib-attribute] branch main updated: Add BOM modules.

Scott Cantor cantor.2 at osu.edu
Thu Jun 23 21:41:21 UTC 2022


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

scantor pushed a commit to branch main
in repository java-shib-attribute.

View the commit online:
http://git.shibboleth.net/view/?p=java-shib-attribute.git;a=commit;h=f16e194d8fa5331a307245f1942e27d908364758

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

commit f16e194d8fa5331a307245f1942e27d908364758
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: Thu Jun 23 17:41:18 2022 -0400

    Add BOM modules.
---
 pom.xml                                            |  3 +
 shib-attribute-bom/.gitignore                      |  1 +
 shib-attribute-bom/.project                        | 15 ++++
 .../.settings/org.eclipse.core.resources.prefs     |  3 +
 .../.settings/org.eclipse.m2e.core.prefs           |  5 ++
 .../.settings/org.maven.ide.eclipse.prefs          |  8 ++
 shib-attribute-bom/pom.xml                         | 73 +++++++++++++++++
 shib-attribute-tests-bom/.gitignore                |  1 +
 shib-attribute-tests-bom/.project                  | 15 ++++
 .../.settings/org.eclipse.core.resources.prefs     |  3 +
 .../.settings/org.eclipse.m2e.core.prefs           |  5 ++
 .../.settings/org.maven.ide.eclipse.prefs          |  8 ++
 shib-attribute-tests-bom/pom.xml                   | 93 ++++++++++++++++++++++
 13 files changed, 233 insertions(+)

diff --git a/pom.xml b/pom.xml
index 95dae461f..2561d8aff 100644
--- a/pom.xml
+++ b/pom.xml
@@ -34,6 +34,9 @@
 
         <module>shib-attribute-resolver-spring</module>
         <module>shib-attribute-filter-spring</module>
+
+        <module>shib-attribute-bom</module>
+        <module>shib-attribute-tests-bom</module>
     </modules>
 
     <properties>
diff --git a/shib-attribute-bom/.gitignore b/shib-attribute-bom/.gitignore
new file mode 100644
index 000000000..ea8c4bf7f
--- /dev/null
+++ b/shib-attribute-bom/.gitignore
@@ -0,0 +1 @@
+/target
diff --git a/shib-attribute-bom/.project b/shib-attribute-bom/.project
new file mode 100644
index 000000000..a3ab70340
--- /dev/null
+++ b/shib-attribute-bom/.project
@@ -0,0 +1,15 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+    <name>shib-attribute-bom</name>
+    <comment></comment>
+    <projects>
+    </projects>
+    <buildSpec>
+        <buildCommand>
+            <name>org.eclipse.m2e.core.maven2Builder</name>
+        </buildCommand>
+    </buildSpec>
+    <natures>
+        <nature>org.eclipse.m2e.core.maven2Nature</nature>
+    </natures>
+</projectDescription>
diff --git a/shib-attribute-bom/.settings/org.eclipse.core.resources.prefs b/shib-attribute-bom/.settings/org.eclipse.core.resources.prefs
new file mode 100644
index 000000000..f58d84ffd
--- /dev/null
+++ b/shib-attribute-bom/.settings/org.eclipse.core.resources.prefs
@@ -0,0 +1,3 @@
+#Fri Nov 18 10:27:44 PST 2011
+eclipse.preferences.version=1
+encoding/<project>=UTF-8
diff --git a/shib-attribute-bom/.settings/org.eclipse.m2e.core.prefs b/shib-attribute-bom/.settings/org.eclipse.m2e.core.prefs
new file mode 100644
index 000000000..1c8f778d9
--- /dev/null
+++ b/shib-attribute-bom/.settings/org.eclipse.m2e.core.prefs
@@ -0,0 +1,5 @@
+#Sat Aug 06 11:46:19 EDT 2011
+activeProfiles=
+eclipse.preferences.version=1
+resolveWorkspaceProjects=true
+version=1
diff --git a/shib-attribute-bom/.settings/org.maven.ide.eclipse.prefs b/shib-attribute-bom/.settings/org.maven.ide.eclipse.prefs
new file mode 100644
index 000000000..b20dbf759
--- /dev/null
+++ b/shib-attribute-bom/.settings/org.maven.ide.eclipse.prefs
@@ -0,0 +1,8 @@
+#Sat Jan 01 13:34:31 EST 2011
+activeProfiles=
+eclipse.preferences.version=1
+fullBuildGoals=process-test-resources
+resolveWorkspaceProjects=true
+resourceFilterGoals=process-resources resources\:testResources
+skipCompilerPlugin=true
+version=1
diff --git a/shib-attribute-bom/pom.xml b/shib-attribute-bom/pom.xml
new file mode 100644
index 000000000..a41f6171b
--- /dev/null
+++ b/shib-attribute-bom/pom.xml
@@ -0,0 +1,73 @@
+<?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</groupId>
+        <artifactId>shib-attribute-parent</artifactId>
+        <version>5.0.0-SNAPSHOT</version>
+    </parent>
+
+    <name>Shibboleth Attribute :: BOM</name>
+    <description>Bill of Materials</description>
+    <artifactId>shib-attribute-bom</artifactId>
+    <packaging>pom</packaging>
+    
+    <dependencyManagement>
+        <dependencies>
+            <dependency>
+                <groupId>${project.groupId}</groupId>
+                <artifactId>shib-attribute-api</artifactId>
+                <version>${project.version}</version>
+            </dependency>
+            <dependency>
+                <groupId>${project.groupId}</groupId>
+                <artifactId>shib-attribute-impl</artifactId>
+                <version>${project.version}</version>
+            </dependency>
+            <dependency>
+                <groupId>${project.groupId}</groupId>
+                <artifactId>shib-saml-attribute-api</artifactId>
+                <version>${project.version}</version>
+            </dependency>
+            <dependency>
+                <groupId>${project.groupId}</groupId>
+                <artifactId>shib-saml-attribute-impl</artifactId>
+                <version>${project.version}</version>
+            </dependency>
+            <dependency>
+                <groupId>${project.groupId}</groupId>
+                <artifactId>shib-attribute-resolver-api</artifactId>
+                <version>${project.version}</version>
+            </dependency>
+            <dependency>
+                <groupId>${project.groupId}</groupId>
+                <artifactId>shib-attribute-resolver-impl</artifactId>
+                <version>${project.version}</version>
+            </dependency>
+            <dependency>
+                <groupId>${project.groupId}</groupId>
+                <artifactId>shib-attribute-resolver-spring</artifactId>
+                <version>${project.version}</version>
+            </dependency>
+            <dependency>
+                <groupId>${project.groupId}</groupId>
+                <artifactId>shib-attribute-filter-api</artifactId>
+                <version>${project.version}</version>
+            </dependency>
+            <dependency>
+                <groupId>${project.groupId}</groupId>
+                <artifactId>shib-attribute-filter-impl</artifactId>
+                <version>${project.version}</version>
+            </dependency>
+            <dependency>
+                <groupId>${project.groupId}</groupId>
+                <artifactId>shib-attribute-filter-spring</artifactId>
+                <version>${project.version}</version>
+            </dependency>
+        </dependencies>
+    </dependencyManagement>
+    
+</project>
diff --git a/shib-attribute-tests-bom/.gitignore b/shib-attribute-tests-bom/.gitignore
new file mode 100644
index 000000000..ea8c4bf7f
--- /dev/null
+++ b/shib-attribute-tests-bom/.gitignore
@@ -0,0 +1 @@
+/target
diff --git a/shib-attribute-tests-bom/.project b/shib-attribute-tests-bom/.project
new file mode 100644
index 000000000..32e35bed4
--- /dev/null
+++ b/shib-attribute-tests-bom/.project
@@ -0,0 +1,15 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+    <name>shib-attribute-tests-bom</name>
+    <comment></comment>
+    <projects>
+    </projects>
+    <buildSpec>
+        <buildCommand>
+            <name>org.eclipse.m2e.core.maven2Builder</name>
+        </buildCommand>
+    </buildSpec>
+    <natures>
+        <nature>org.eclipse.m2e.core.maven2Nature</nature>
+    </natures>
+</projectDescription>
diff --git a/shib-attribute-tests-bom/.settings/org.eclipse.core.resources.prefs b/shib-attribute-tests-bom/.settings/org.eclipse.core.resources.prefs
new file mode 100644
index 000000000..f58d84ffd
--- /dev/null
+++ b/shib-attribute-tests-bom/.settings/org.eclipse.core.resources.prefs
@@ -0,0 +1,3 @@
+#Fri Nov 18 10:27:44 PST 2011
+eclipse.preferences.version=1
+encoding/<project>=UTF-8
diff --git a/shib-attribute-tests-bom/.settings/org.eclipse.m2e.core.prefs b/shib-attribute-tests-bom/.settings/org.eclipse.m2e.core.prefs
new file mode 100644
index 000000000..1c8f778d9
--- /dev/null
+++ b/shib-attribute-tests-bom/.settings/org.eclipse.m2e.core.prefs
@@ -0,0 +1,5 @@
+#Sat Aug 06 11:46:19 EDT 2011
+activeProfiles=
+eclipse.preferences.version=1
+resolveWorkspaceProjects=true
+version=1
diff --git a/shib-attribute-tests-bom/.settings/org.maven.ide.eclipse.prefs b/shib-attribute-tests-bom/.settings/org.maven.ide.eclipse.prefs
new file mode 100644
index 000000000..b20dbf759
--- /dev/null
+++ b/shib-attribute-tests-bom/.settings/org.maven.ide.eclipse.prefs
@@ -0,0 +1,8 @@
+#Sat Jan 01 13:34:31 EST 2011
+activeProfiles=
+eclipse.preferences.version=1
+fullBuildGoals=process-test-resources
+resolveWorkspaceProjects=true
+resourceFilterGoals=process-resources resources\:testResources
+skipCompilerPlugin=true
+version=1
diff --git a/shib-attribute-tests-bom/pom.xml b/shib-attribute-tests-bom/pom.xml
new file mode 100644
index 000000000..e0b316af5
--- /dev/null
+++ b/shib-attribute-tests-bom/pom.xml
@@ -0,0 +1,93 @@
+<?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</groupId>
+        <artifactId>shib-attribute-parent</artifactId>
+        <version>5.0.0-SNAPSHOT</version>
+    </parent>
+
+    <name>Shibboleth Attribute :: Test BOM</name>
+    <description>Bill of Materials</description>
+    <artifactId>shib-attribute-tests-bom</artifactId>
+    <packaging>pom</packaging>
+    
+    <dependencyManagement>
+        <dependencies>
+            <dependency>
+                <groupId>${project.groupId}</groupId>
+                <artifactId>shib-attribute-api</artifactId>
+                <version>${project.version}</version>
+                <type>test-jar</type>
+                <scope>test</scope>
+            </dependency>
+            <dependency>
+                <groupId>${project.groupId}</groupId>
+                <artifactId>shib-attribute-impl</artifactId>
+                <version>${project.version}</version>
+                <type>test-jar</type>
+                <scope>test</scope>
+            </dependency>
+            <dependency>
+                <groupId>${project.groupId}</groupId>
+                <artifactId>shib-saml-attribute-api</artifactId>
+                <version>${project.version}</version>
+                <type>test-jar</type>
+                <scope>test</scope>
+            </dependency>
+            <dependency>
+                <groupId>${project.groupId}</groupId>
+                <artifactId>shib-saml-attribute-impl</artifactId>
+                <version>${project.version}</version>
+                <type>test-jar</type>
+                <scope>test</scope>
+            </dependency>
+            <dependency>
+                <groupId>${project.groupId}</groupId>
+                <artifactId>shib-attribute-resolver-api</artifactId>
+                <version>${project.version}</version>
+                <type>test-jar</type>
+                <scope>test</scope>
+            </dependency>
+            <dependency>
+                <groupId>${project.groupId}</groupId>
+                <artifactId>shib-attribute-resolver-impl</artifactId>
+                <version>${project.version}</version>
+                <type>test-jar</type>
+                <scope>test</scope>
+            </dependency>
+            <dependency>
+                <groupId>${project.groupId}</groupId>
+                <artifactId>shib-attribute-resolver-spring</artifactId>
+                <version>${project.version}</version>
+                <type>test-jar</type>
+                <scope>test</scope>
+            </dependency>
+            <dependency>
+                <groupId>${project.groupId}</groupId>
+                <artifactId>shib-attribute-filter-api</artifactId>
+                <version>${project.version}</version>
+                <type>test-jar</type>
+                <scope>test</scope>
+            </dependency>
+            <dependency>
+                <groupId>${project.groupId}</groupId>
+                <artifactId>shib-attribute-filter-impl</artifactId>
+                <version>${project.version}</version>
+                <type>test-jar</type>
+                <scope>test</scope>
+            </dependency>
+            <dependency>
+                <groupId>${project.groupId}</groupId>
+                <artifactId>shib-attribute-filter-spring</artifactId>
+                <version>${project.version}</version>
+                <type>test-jar</type>
+                <scope>test</scope>
+            </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