<?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</artifactId>
        <version>4</version>
    </parent>

    <groupId>net.shibboleth.ext</groupId>
    <artifactId>spring-extensions</artifactId>
    <version>1.0.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>
        <svn.relative.location>utilities/spring-extensions</svn.relative.location>
    </properties>
    
    <repositories>
        <repository>
            <id>shib-release</id>
            <url>https://shibboleth.net/nexus/content/groups/public</url>
            <snapshots>
                <enabled>false</enabled>
            </snapshots>
        </repository>
        <repository>
            <id>shib-snapshot</id>
            <url>https://shibboleth.net/nexus/content/repositories/snapshots</url>
            <releases>
                <enabled>false</enabled>
            </releases>
        </repository>
    </repositories>

    <dependencies>
        <!-- Compile dependencies -->
        <dependency>
            <groupId>edu.vt.middleware</groupId>
            <artifactId>vt-crypt</artifactId>
            <!-- Required for any classes that deals with cryptographic artifacts (keys, certs, algorithms, etc.) -->
            <optional>true</optional>
            <exclusions>
                <exclusion>
                    <groupId>commons-cli</groupId>
                    <artifactId>commons-cli</artifactId>
                </exclusion>
            </exclusions>
        </dependency>
        <dependency>
            <groupId>net.shibboleth.utilities</groupId>
            <artifactId>java-support</artifactId>
            <version>1.0.0</version>
        </dependency>

        <!-- Provided dependencies -->
        <dependency>
            <groupId>${spring.groupId}</groupId>
            <artifactId>spring-beans</artifactId>
            <version>${spring.version}</version>
            <scope>provided</scope>
        </dependency>

        <!-- Runtime dependencies -->

        <!-- Test dependencies -->

    </dependencies>

</project>