<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> <groupId>MOA</groupId> <artifactId>moa-id-oa</artifactId> <packaging>war</packaging> <version>2.0</version> <name>MOA Sample OA</name> <properties> <repositoryPath>${basedir}/../../repository</repositoryPath> </properties> <repositories> <repository> <id>shibboleth.internet2.edu</id> <name>Internet2</name> <url>https://build.shibboleth.net/nexus/content/groups/public/</url> </repository> </repositories> <build> <finalName>oa</finalName> </build> <dependencies> <dependency> <groupId>org.opensaml</groupId> <artifactId>opensaml</artifactId> <version>2.5.3</version> </dependency> <dependency> <groupId>org.opensaml</groupId> <artifactId>xmltooling</artifactId> <version>1.4.0</version> </dependency> <dependency> <groupId>jstl</groupId> <artifactId>jstl</artifactId> <version>1.2</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>1.7.5</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> <version>1.7.5</version> </dependency> <dependency> <groupId>iaik</groupId> <artifactId>commons-iaik</artifactId> <version>0.7.1</version> </dependency> <dependency> <groupId>MOA</groupId> <artifactId>moa-common</artifactId> <version>2.0</version> <type>jar</type> </dependency> </dependencies> </project>