[java-metadata-aggregator] branch master updated: MDA-181 - add a BOM artifact
Ian Young
ian at iay.org.uk
Fri Jun 30 10:13:13 EDT 2017
This is an automated email from the git hooks/post-receive script.
iay pushed a commit to branch master
in repository java-metadata-aggregator.
View the commit online:
http://git.shibboleth.net/view/?p=java-metadata-aggregator.git;a=commit;h=fd74d2d24f46ddd3f5bffdf1a230d7a8a79fdd4a
The following commit(s) were added to refs/heads/master by this push:
new fd74d2d MDA-181 - add a BOM artifact
fd74d2d is described below
commit fd74d2d24f46ddd3f5bffdf1a230d7a8a79fdd4a
Author: Ian Young <ian at iay.org.uk>
AuthorDate: Fri Jun 30 15:13:02 2017 +0100
MDA-181 - add a BOM artifact
---
aggregator-bom/.gitignore | 1 +
aggregator-bom/.project | 15 ++++++++
.../.settings/org.eclipse.core.resources.prefs | 3 ++
.../.settings/org.eclipse.m2e.core.prefs | 5 +++
.../.settings/org.maven.ide.eclipse.prefs | 8 +++++
aggregator-bom/pom.xml | 41 ++++++++++++++++++++++
aggregator-parent/pom.xml | 1 +
7 files changed, 74 insertions(+)
diff --git a/aggregator-bom/.gitignore b/aggregator-bom/.gitignore
new file mode 100644
index 0000000..ea8c4bf
--- /dev/null
+++ b/aggregator-bom/.gitignore
@@ -0,0 +1 @@
+/target
diff --git a/aggregator-bom/.project b/aggregator-bom/.project
new file mode 100644
index 0000000..57540e3
--- /dev/null
+++ b/aggregator-bom/.project
@@ -0,0 +1,15 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+ <name>aggregator-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/aggregator-bom/.settings/org.eclipse.core.resources.prefs b/aggregator-bom/.settings/org.eclipse.core.resources.prefs
new file mode 100644
index 0000000..f58d84f
--- /dev/null
+++ b/aggregator-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/aggregator-bom/.settings/org.eclipse.m2e.core.prefs b/aggregator-bom/.settings/org.eclipse.m2e.core.prefs
new file mode 100644
index 0000000..1c8f778
--- /dev/null
+++ b/aggregator-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/aggregator-bom/.settings/org.maven.ide.eclipse.prefs b/aggregator-bom/.settings/org.maven.ide.eclipse.prefs
new file mode 100644
index 0000000..b20dbf7
--- /dev/null
+++ b/aggregator-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/aggregator-bom/pom.xml b/aggregator-bom/pom.xml
new file mode 100644
index 0000000..d76b1da
--- /dev/null
+++ b/aggregator-bom/pom.xml
@@ -0,0 +1,41 @@
+<?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.metadata</groupId>
+ <artifactId>aggregator-parent</artifactId>
+ <version>0.10.0-SNAPSHOT</version>
+ <relativePath>../aggregator-parent</relativePath>
+ </parent>
+
+ <name>Shibboleth Metadata Aggregator :: BOM</name>
+ <description>Bill of Materials</description>
+ <artifactId>aggregator-bom</artifactId>
+ <packaging>pom</packaging>
+
+ <dependencyManagement>
+ <dependencies>
+ <dependency>
+ <groupId>${project.groupId}</groupId>
+ <artifactId>aggregator-blacklists</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>${project.groupId}</groupId>
+ <artifactId>aggregator-pipeline</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ </dependencies>
+ </dependencyManagement>
+
+ <distributionManagement>
+ <site>
+ <id>site</id>
+ <url>dav:${aggregator-module.site.url}</url>
+ </site>
+ </distributionManagement>
+
+</project>
diff --git a/aggregator-parent/pom.xml b/aggregator-parent/pom.xml
index 991e64a..315db73 100644
--- a/aggregator-parent/pom.xml
+++ b/aggregator-parent/pom.xml
@@ -28,6 +28,7 @@
<module>../aggregator-blacklists</module>
<module>../aggregator-pipeline</module>
<module>../aggregator-cli</module>
+ <module>../aggregator-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