[testing] 02/03: Edit the pom file to be XML, but non-snapshot

Ian Young ian at iay.org.uk
Wed Apr 12 11:45:13 EDT 2017


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

iay pushed a commit to branch master
in repository testing.

commit ff81400d2a5cc43dfbf189e929d0e75d12f6df02
Author: Ian Young <ian at iay.org.uk>
AuthorDate: Wed Apr 12 16:43:54 2017 +0100

    Edit the pom file to be XML, but non-snapshot
---
 pom.xml | 153 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-
 1 file changed, 152 insertions(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index 78a21d9..11215cc 100644
--- a/pom.xml
+++ b/pom.xml
@@ -1 +1,152 @@
-This is a pom.xml file, but not really XML; it should be rejected.
+<?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/xsd/maven-4.0.0.xsd">
+
+    <modelVersion>4.0.0</modelVersion>
+
+    <parent>
+        <groupId>net.shibboleth</groupId>
+        <artifactId>parent-v3</artifactId>
+        <version>TRUNK-SNAPSHOT</version>
+    </parent>
+
+    <groupId>net.shibboleth.ext</groupId>
+    <artifactId>spring-extensions</artifactId>
+    <version>5.4.0</version>
+
+    <name>Spring Framework Extension</name>
+    <description>
+        A set of extensions for the Spring framework.  This package includes things like
+        factory beans, converters, etc.
+    </description>
+
+    <properties>
+        <java-support.version>7.4.0-SNAPSHOT</java-support.version>
+    </properties>
+
+    <repositories>
+        <repository>
+            <id>shib-release</id>
+            <url>https://build.shibboleth.net/nexus/content/groups/public</url>
+            <snapshots>
+                <enabled>false</enabled>
+            </snapshots>
+        </repository>
+        <repository>
+            <id>shib-snapshot</id>
+            <url>https://build.shibboleth.net/nexus/content/repositories/snapshots</url>
+            <releases>
+                <enabled>false</enabled>
+            </releases>
+        </repository>
+    </repositories>
+
+    <scm>
+        <connection>scm:git:https://git.shibboleth.net/git/${project.artifactId}</connection>
+        <developerConnection>scm:git:git at git.shibboleth.net:${project.artifactId}</developerConnection>
+        <url>https://git.shibboleth.net/view/?p=${project.artifactId}.git</url>
+    </scm>
+
+    <dependencies>
+        <!-- Compile dependencies -->
+        <dependency>
+            <groupId>com.google.code.findbugs</groupId>
+            <artifactId>jsr305</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>com.google.guava</groupId>
+            <artifactId>guava</artifactId>
+        </dependency>
+        <dependency>
+            <!-- Required for HTTPResource. -->
+            <groupId>org.apache.httpcomponents</groupId>
+            <artifactId>httpclient</artifactId>
+        </dependency>
+        <dependency>
+            <!-- Required if you're using anything in the httpclient package -->
+            <groupId>org.apache.httpcomponents</groupId>
+            <artifactId>httpclient-cache</artifactId>
+        </dependency>
+
+        <dependency>
+            <groupId>org.cryptacular</groupId>
+            <artifactId>cryptacular</artifactId>
+            <!-- Required for any classes that deals with cryptographic artifacts (keys, certs, algorithms, etc.) -->
+            <optional>true</optional>
+        </dependency>
+        <!-- Override temporarily. -->
+        <dependency>
+            <groupId>org.bouncycastle</groupId>
+            <artifactId>bcprov-jdk15on</artifactId>
+            <optional>true</optional>
+        </dependency>
+        <dependency>
+            <groupId>net.shibboleth.utilities</groupId>
+            <artifactId>java-support</artifactId>
+            <version>${java-support.version}</version>
+            <!-- Required for the DomDocumentFactoryBean and Duration conversion classes. -->
+            <optional>true</optional>
+        </dependency>
+        <dependency>
+            <groupId>${spring.groupId}</groupId>
+            <artifactId>spring-context</artifactId>
+            <!-- Required for ApplicationContext classes. -->
+            <optional>true</optional>
+        </dependency>
+        <dependency>
+            <groupId>${spring.groupId}</groupId>
+            <artifactId>spring-core</artifactId>
+            <!-- Required for Duration conversion classes. -->
+            <optional>true</optional>
+        </dependency>
+        <dependency>
+            <groupId>${spring.groupId}</groupId>
+            <artifactId>spring-beans</artifactId>
+            <!-- Required for factory classes. -->
+            <optional>true</optional>
+        </dependency>
+        <dependency>
+            <groupId>${spring.groupId}</groupId>
+            <artifactId>spring-webmvc</artifactId>
+            <!-- Required for error handling classes. -->
+            <optional>true</optional>
+        </dependency>
+        <dependency>
+            <groupId>joda-time</groupId>
+            <artifactId>joda-time</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.tmatesoft.svnkit</groupId>
+            <artifactId>svnkit</artifactId>
+            <!-- Required for SVNResource. Constrained by licensing. -->
+            <optional>true</optional>
+        </dependency>
+
+        <!-- Provided dependencies -->
+        <dependency>
+            <groupId>javax.servlet</groupId>
+            <artifactId>javax.servlet-api</artifactId>
+            <scope>provided</scope>
+            <!-- Required for error handling classes. -->
+            <optional>true</optional>
+        </dependency>
+
+        <!-- Runtime dependencies -->
+
+        <!-- Test dependencies -->
+        <dependency>
+          <groupId>${spring.groupId}</groupId>
+          <artifactId>spring-test</artifactId>
+          <scope>test</scope>
+        </dependency>
+
+    </dependencies>
+
+    <distributionManagement>
+        <site>
+            <id>site</id>
+            <url>dav:${shibboleth.site.url}${project.artifactId}/${project.version}/</url>
+        </site>
+    </distributionManagement>
+
+</project>

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


More information about the commits mailing list