pom.xml revision d202787f9a24e6fa784ed5684988ac7aad4d4b8b
1008N/A<?xml version="1.0" encoding="UTF-8"?>
1008N/A
1008N/A<!--
1008N/A ~ DO NOT REMOVE COPYRIGHT NOTICES OR THIS HEADER.
1008N/A ~
1008N/A ~ Copyright (c) 2012-2013 ForgeRock AS. All rights reserved.
1008N/A ~
1008N/A ~ The contents of this file are subject to the terms
1008N/A ~ of the Common Development and Distribution License
1008N/A ~ (the License). You may not use this file except in
1008N/A ~ compliance with the License.
1008N/A ~
1008N/A ~ You can obtain a copy of the License at
1008N/A ~ http://forgerock.org/license/CDDLv1.0.html
1008N/A ~ See the License for the specific language governing
1008N/A ~ permission and limitations under the License.
1008N/A ~
1008N/A ~ When distributing Covered Code, include this CDDL
1008N/A ~ Header Notice in each file and include the License file
1008N/A ~ at http://forgerock.org/license/CDDLv1.0.html
1008N/A ~ If applicable, add the following below the CDDL Header,
1008N/A ~ with the fields enclosed by brackets [] replaced by
1008N/A ~ your own identifying information:
1008N/A ~ "Portions Copyrighted [year] [name of copyright owner]"
-->
<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>org.forgerock.openam</groupId>
<artifactId>openam-oauth2</artifactId>
<version>11.0.0-RC1</version>
</parent>
<groupId>org.forgerock.openam</groupId>
<artifactId>openam-oauth2-demo</artifactId>
<packaging>war</packaging>
<name>OpenAM OAuth2 Demo</name>
<dependencies>
<!-- mvn versions:display-plugin-updates
mvn versions:display-dependency-updates
mvn versions:use-latest-versions
-->
<!-- Java EE -->
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
</dependency>
<dependency>
<groupId>org.forgerock.openam</groupId>
<artifactId>openam-core</artifactId>
</dependency>
<dependency>
<groupId>org.forgerock.openam</groupId>
<artifactId>openam-shared</artifactId>
</dependency>
<dependency>
<groupId>org.forgerock.openam</groupId>
<artifactId>openam-rest</artifactId>
</dependency>
<!-- Restlet -->
<dependency>
<groupId>org.forgerock.openam</groupId>
<artifactId>openam-oauth2-restlet-extension</artifactId>
</dependency>
<dependency>
<groupId>org.forgerock.openam</groupId>
<artifactId>openam-oauth2-openam-extension</artifactId>
</dependency>
<dependency>
<groupId>org.forgerock.openam</groupId>
<artifactId>openam-oauth2-main</artifactId>
</dependency>
<dependency>
<groupId>org.restlet.osgi</groupId>
<artifactId>org.restlet.ext.servlet</artifactId>
</dependency>
<dependency>
<groupId>org.restlet.osgi</groupId>
<artifactId>org.restlet.ext.freemarker</artifactId>
</dependency>
<dependency>
<groupId>org.restlet.osgi</groupId>
<artifactId>org.restlet.ext.ssl</artifactId>
</dependency>
<dependency>
<groupId>org.freemarker</groupId>
<artifactId>freemarker</artifactId>
</dependency>
<!-- Jackson JSON parser -->
<dependency>
<groupId>org.codehaus.jackson</groupId>
<artifactId>jackson-core-asl</artifactId>
</dependency>
<dependency>
<groupId>org.codehaus.jackson</groupId>
<artifactId>jackson-mapper-asl</artifactId>
</dependency>
<!-- Test Dependencies -->
<dependency>
<groupId>org.easytesting</groupId>
<artifactId>fest-assert</artifactId>
</dependency>
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-all</artifactId>
</dependency>
<dependency>
<groupId>xerces-J</groupId>
<artifactId>xercesImpl</artifactId>
</dependency>
<dependency>
<groupId>xerces-J</groupId>
<artifactId>xml-apis</artifactId>
</dependency>
<dependency>
<groupId>xerces-J</groupId>
<artifactId>xml-resolver</artifactId>
</dependency>
<dependency>
<groupId>xerces-J</groupId>
<artifactId>xml-serializer</artifactId>
</dependency>
</dependencies>
</project>