[java-opensaml] branch master updated: Add proposed opensaml-bom module.
Brent Putman
putmanb at georgetown.edu
Fri May 19 20:38:21 EDT 2017
This is an automated email from the git hooks/post-receive script.
putmanb pushed a commit to branch master
in repository java-opensaml.
View the commit online:
http://git.shibboleth.net/view/?p=java-opensaml.git;a=commit;h=d8bb465fb15218978841ccd66d2d3745ea425cfe
The following commit(s) were added to refs/heads/master by this push:
new d8bb465 Add proposed opensaml-bom module.
d8bb465 is described below
commit d8bb465fb15218978841ccd66d2d3745ea425cfe
Author: Brent Putman <putmanb at georgetown.edu>
AuthorDate: Fri May 19 20:37:15 2017 -0400
Add proposed opensaml-bom module.
---
opensaml-bom/.gitignore | 1 +
opensaml-bom/.project | 15 +++
.../.settings/org.eclipse.core.resources.prefs | 3 +
opensaml-bom/.settings/org.eclipse.m2e.core.prefs | 5 +
opensaml-bom/.settings/org.maven.ide.eclipse.prefs | 8 ++
opensaml-bom/pom.xml | 126 +++++++++++++++++++++
opensaml-parent/pom.xml | 2 +
7 files changed, 160 insertions(+)
diff --git a/opensaml-bom/.gitignore b/opensaml-bom/.gitignore
new file mode 100644
index 0000000..ea8c4bf
--- /dev/null
+++ b/opensaml-bom/.gitignore
@@ -0,0 +1 @@
+/target
diff --git a/opensaml-bom/.project b/opensaml-bom/.project
new file mode 100644
index 0000000..83f80ed
--- /dev/null
+++ b/opensaml-bom/.project
@@ -0,0 +1,15 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+ <name>opensaml-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/opensaml-bom/.settings/org.eclipse.core.resources.prefs b/opensaml-bom/.settings/org.eclipse.core.resources.prefs
new file mode 100644
index 0000000..f58d84f
--- /dev/null
+++ b/opensaml-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/opensaml-bom/.settings/org.eclipse.m2e.core.prefs b/opensaml-bom/.settings/org.eclipse.m2e.core.prefs
new file mode 100644
index 0000000..1c8f778
--- /dev/null
+++ b/opensaml-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/opensaml-bom/.settings/org.maven.ide.eclipse.prefs b/opensaml-bom/.settings/org.maven.ide.eclipse.prefs
new file mode 100644
index 0000000..b20dbf7
--- /dev/null
+++ b/opensaml-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/opensaml-bom/pom.xml b/opensaml-bom/pom.xml
new file mode 100644
index 0000000..c5a9c30
--- /dev/null
+++ b/opensaml-bom/pom.xml
@@ -0,0 +1,126 @@
+<?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>org.opensaml</groupId>
+ <artifactId>opensaml-parent</artifactId>
+ <version>3.4.0-SNAPSHOT</version>
+ <relativePath>../opensaml-parent</relativePath>
+ </parent>
+
+ <name>OpenSAML :: BOM</name>
+ <description>Bill of Materials</description>
+ <artifactId>opensaml-bom</artifactId>
+ <packaging>pom</packaging>
+
+ <dependencyManagement>
+ <dependencies>
+ <dependency>
+ <groupId>${project.groupId}</groupId>
+ <artifactId>opensaml-core</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>${project.groupId}</groupId>
+ <artifactId>opensaml-messaging-api</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>${project.groupId}</groupId>
+ <artifactId>opensaml-messaging-impl</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>${project.groupId}</groupId>
+ <artifactId>opensaml-profile-api</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>${project.groupId}</groupId>
+ <artifactId>opensaml-profile-impl</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>${project.groupId}</groupId>
+ <artifactId>opensaml-saml-api</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>${project.groupId}</groupId>
+ <artifactId>opensaml-saml-impl</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>${project.groupId}</groupId>
+ <artifactId>opensaml-security-api</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>${project.groupId}</groupId>
+ <artifactId>opensaml-security-impl</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>${project.groupId}</groupId>
+ <artifactId>opensaml-soap-api</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>${project.groupId}</groupId>
+ <artifactId>opensaml-soap-impl</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>${project.groupId}</groupId>
+ <artifactId>opensaml-storage-api</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>${project.groupId}</groupId>
+ <artifactId>opensaml-storage-impl</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>${project.groupId}</groupId>
+ <artifactId>opensaml-xacml-api</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>${project.groupId}</groupId>
+ <artifactId>opensaml-xacml-impl</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>${project.groupId}</groupId>
+ <artifactId>opensaml-xacml-saml-api</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>${project.groupId}</groupId>
+ <artifactId>opensaml-xacml-saml-impl</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>${project.groupId}</groupId>
+ <artifactId>opensaml-xmlsec-api</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>${project.groupId}</groupId>
+ <artifactId>opensaml-xmlsec-impl</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ </dependencies>
+ </dependencyManagement>
+
+ <distributionManagement>
+ <site>
+ <id>site</id>
+ <url>dav:${opensaml-parent.site.url}</url>
+ </site>
+ </distributionManagement>
+
+</project>
diff --git a/opensaml-parent/pom.xml b/opensaml-parent/pom.xml
index 3145516..b7b90b2 100644
--- a/opensaml-parent/pom.xml
+++ b/opensaml-parent/pom.xml
@@ -43,6 +43,8 @@
<module>../opensaml-xacml-saml-impl</module>
<module>../opensaml-profile-api</module>
<module>../opensaml-profile-impl</module>
+
+ <module>../opensaml-bom</module>
</modules>
<properties>
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list