diff options
Diffstat (limited to 'id/oa/pom.xml')
-rw-r--r-- | id/oa/pom.xml | 54 |
1 files changed, 53 insertions, 1 deletions
diff --git a/id/oa/pom.xml b/id/oa/pom.xml index c7fe67540..3b507a223 100644 --- a/id/oa/pom.xml +++ b/id/oa/pom.xml @@ -5,14 +5,66 @@ <groupId>MOA</groupId> <artifactId>moa-id-oa</artifactId> <packaging>war</packaging> - <version>1.0</version> + <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> |