<?xml version="1.0"?>
<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>parent-v3</artifactId>
<version>8</version>
</parent>
<name>java-support</name>
<groupId>net.shibboleth.utilities</groupId>
<artifactId>java-support</artifactId>
<version>7.1.1</version>
<packaging>jar</packaging>
<properties>
<svn.relative.location>utilities/java-support</svn.relative.location>
</properties>
<dependencies>
<!-- Compile Dependencies -->
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
</dependency>
<dependency>
<groupId>com.google.code.findbugs</groupId>
<artifactId>jsr305</artifactId>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</dependency>
<dependency>
<groupId>joda-time</groupId>
<artifactId>joda-time</artifactId>
</dependency>
<!-- OPTIONAL Compile Dependencies -->
<dependency>
<!-- Required if you're using classes from the logging package. -->
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<scope>compile</scope><!-- normally runtime -->
<optional>true</optional>
</dependency>
<dependency>
<!-- Required if you're using classes from the logging package. -->
<groupId>ch.qos.logback</groupId>
<artifactId>logback-core</artifactId>
<scope>compile</scope><!-- normally runtime -->
<optional>true</optional>
</dependency>
<dependency>
<!-- Required if you're using anything in the httpclient package -->
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<!-- Required if using classes with command line support. -->
<groupId>com.beust</groupId>
<artifactId>jcommander</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<!-- Required if you're using anything in the httpclient package -->
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient-cache</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<!-- Required if you're using classes from the velocity package -->
<groupId>org.apache.velocity</groupId>
<artifactId>velocity</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<!-- Required if you're using classes from the security package. -->
<groupId>org.bouncycastle</groupId>
<artifactId>bcprov-jdk15on</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<!-- Required if you're using classes from the security package. -->
<groupId>org.bouncycastle</groupId>
<artifactId>bcpkix-jdk15on</artifactId>
<optional>true</optional>
</dependency>
<!-- Provided Dependencies -->
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<scope>provided</scope>
</dependency>
<!-- Runtime Dependencies -->
<!-- Test Dependencies -->
<dependency>
<groupId>${spring.groupId}</groupId>
<artifactId>spring-core</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>${spring.groupId}</groupId>
<artifactId>spring-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
|