[java-shib-metadata] branch main updated: Add BOM module.
Scott Cantor
cantor.2 at osu.edu
Thu Jun 23 17:16:04 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-metadata.
View the commit online:
http://git.shibboleth.net/view/?p=java-shib-metadata.git;a=commit;h=1ea08ffb15f6ef585cb4d9f690af0ea25ebc2cc4
The following commit(s) were added to refs/heads/main by this push:
new 1ea08ffb1 Add BOM module.
1ea08ffb1 is described below
commit 1ea08ffb15f6ef585cb4d9f690af0ea25ebc2cc4
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: Thu Jun 23 13:16:00 2022 -0400
Add BOM module.
---
pom.xml | 2 ++
shib-metadata-bom/.gitignore | 1 +
shib-metadata-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-metadata-bom/pom.xml | 38 ++++++++++++++++++++++
7 files changed, 72 insertions(+)
diff --git a/pom.xml b/pom.xml
index 4896fb9ce..faa7f348c 100644
--- a/pom.xml
+++ b/pom.xml
@@ -25,6 +25,8 @@
<module>shib-metadata-api</module>
<module>shib-metadata-impl</module>
<module>shib-metadata-spring</module>
+
+ <module>shib-metadata-bom</module>
</modules>
<properties>
diff --git a/shib-metadata-bom/.gitignore b/shib-metadata-bom/.gitignore
new file mode 100644
index 000000000..ea8c4bf7f
--- /dev/null
+++ b/shib-metadata-bom/.gitignore
@@ -0,0 +1 @@
+/target
diff --git a/shib-metadata-bom/.project b/shib-metadata-bom/.project
new file mode 100644
index 000000000..110d6b798
--- /dev/null
+++ b/shib-metadata-bom/.project
@@ -0,0 +1,15 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+ <name>shib-metadata-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-metadata-bom/.settings/org.eclipse.core.resources.prefs b/shib-metadata-bom/.settings/org.eclipse.core.resources.prefs
new file mode 100644
index 000000000..f58d84ffd
--- /dev/null
+++ b/shib-metadata-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-metadata-bom/.settings/org.eclipse.m2e.core.prefs b/shib-metadata-bom/.settings/org.eclipse.m2e.core.prefs
new file mode 100644
index 000000000..1c8f778d9
--- /dev/null
+++ b/shib-metadata-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-metadata-bom/.settings/org.maven.ide.eclipse.prefs b/shib-metadata-bom/.settings/org.maven.ide.eclipse.prefs
new file mode 100644
index 000000000..b20dbf759
--- /dev/null
+++ b/shib-metadata-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-metadata-bom/pom.xml b/shib-metadata-bom/pom.xml
new file mode 100644
index 000000000..0da22892a
--- /dev/null
+++ b/shib-metadata-bom/pom.xml
@@ -0,0 +1,38 @@
+<?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-metadata-parent</artifactId>
+ <version>5.0.0-SNAPSHOT</version>
+ </parent>
+
+ <name>Shibboleth Metadata :: BOM</name>
+ <description>Bill of Materials</description>
+ <artifactId>shib-metadata-bom</artifactId>
+ <packaging>pom</packaging>
+
+ <dependencyManagement>
+ <dependencies>
+ <dependency>
+ <groupId>${project.groupId}</groupId>
+ <artifactId>shib-metadata-api</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>${project.groupId}</groupId>
+ <artifactId>shib-metadata-impl</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>${project.groupId}</groupId>
+ <artifactId>shib-metadata-spring</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