pom.xml revision b1d33c0a07fc2bb7ed7d4712f62492aee8dcc650
546N/A<?xml version="1.0" encoding="UTF-8"?>
546N/A
546N/A<!--
546N/A ~ DO NOT REMOVE COPYRIGHT NOTICES OR THIS HEADER.
851N/A ~
851N/A ~ Copyright (c) 2012-2014 ForgeRock AS. All rights reserved.
546N/A ~
546N/A ~ The contents of this file are subject to the terms
919N/A ~ of the Common Development and Distribution License
919N/A ~ (the License). You may not use this file except in
919N/A ~ compliance with the License.
919N/A ~
919N/A ~ You can obtain a copy of the License at
546N/A ~ http://forgerock.org/license/CDDLv1.0.html
919N/A ~ See the License for the specific language governing
919N/A ~ permission and limitations under the License.
919N/A ~
546N/A ~ When distributing Covered Code, include this CDDL
919N/A ~ Header Notice in each file and include the License file
919N/A ~ at http://forgerock.org/license/CDDLv1.0.html
919N/A ~ If applicable, add the following below the CDDL Header,
919N/A ~ with the fields enclosed by brackets [] replaced by
919N/A ~ your own identifying information:
919N/A ~ "Portions Copyrighted [year] [name of copyright owner]"
919N/A -->
546N/A
546N/A<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
546N/A xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
546N/A <modelVersion>4.0.0</modelVersion>
546N/A <parent>
546N/A <groupId>org.forgerock.openam</groupId>
546N/A <artifactId>openam</artifactId>
546N/A <version>12.0.0-SNAPSHOT</version>
546N/A </parent>
546N/A <groupId>org.forgerock.openam</groupId>
546N/A <artifactId>openam-forgerock-rest</artifactId>
546N/A <packaging>jar</packaging>
546N/A <name>OpenAM Forgerock REST API</name>
546N/A
546N/A <description>OpenAM Forgerock REST API</description>
546N/A
546N/A <build>
851N/A <plugins>
851N/A <plugin>
851N/A <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<index>true</index>
<manifest>
<addClasspath>true</addClasspath>
<classpathPrefix>lib/</classpathPrefix>
</manifest>
<manifestEntries>
<Specification-Title>OpenAM Forgerock REST API</Specification-Title>
<Specification-Version>${project.version} - ${maven.build.timestamp}</Specification-Version>
<Specification-Vendor>ForgeRock</Specification-Vendor>
<Implementation-Title>OpenAM Forgerock REST API</Implementation-Title>
<Implementation-Version>${project.version} - ${maven.build.timestamp}
</Implementation-Version>
<Implementation-Vendor>ForgeRock</Implementation-Vendor>
<Built-By>${user.name}</Built-By>
<Build-Jdk>${java.version}</Build-Jdk>
<Build-Time>${maven.build.timestamp}</Build-Time>
<Version>${project.version}</Version>
<Create-On>${maven.build.timestamp}</Create-On>
<SVN-Revision>R${svn-revision.revision}</SVN-Revision>
<!-- TODO Add License to Manifest -->
<License/>
</manifestEntries>
</archive>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<!-- Java EE -->
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
</dependency>
<dependency>
<groupId>org.restlet.jse</groupId>
<artifactId>org.restlet</artifactId>
</dependency>
<dependency>
<groupId>org.restlet.jse</groupId>
<artifactId>org.restlet.ext.json</artifactId>
</dependency>
<dependency>
<groupId>org.restlet.osgi</groupId>
<artifactId>org.restlet.ext.servlet</artifactId>
</dependency>
<!-- OpenAM-CLI -->
<dependency>
<groupId>org.forgerock.openam</groupId>
<artifactId>openam-cli-impl</artifactId>
</dependency>
<!-- OpenAM Shared -->
<dependency>
<groupId>org.forgerock.openam</groupId>
<artifactId>openam-shared</artifactId>
</dependency>
<!-- OpenAM core -->
<dependency>
<groupId>org.forgerock.openam</groupId>
<artifactId>openam-core</artifactId>
</dependency>
<dependency>
<groupId>org.forgerock.openam</groupId>
<artifactId>openam-dashboard</artifactId>
</dependency>
<!-- Commons -->
<dependency>
<groupId>org.forgerock.commons</groupId>
<artifactId>json-resource</artifactId>
</dependency>
<dependency>
<groupId>org.forgerock.commons</groupId>
<artifactId>json-resource-servlet</artifactId>
</dependency>
<dependency>
<groupId>org.forgerock.commons</groupId>
<artifactId>json-web-token</artifactId>
</dependency>
<dependency>
<groupId>org.forgerock.commons</groupId>
<artifactId>authz-framework</artifactId>
</dependency>
<!-- OAuth2 Dependencies -->
<dependency>
<groupId>org.forgerock.openam</groupId>
<artifactId>openam-oauth2</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>org.easymock</groupId>
<artifactId>easymock</artifactId>
</dependency>
<dependency>
<groupId>org.powermock</groupId>
<artifactId>powermock-module-junit4</artifactId>
</dependency>
<dependency>
<groupId>org.powermock</groupId>
<artifactId>powermock-api-mockito</artifactId>
</dependency>
<dependency>
<groupId>org.powermock</groupId>
<artifactId>powermock-api-easymock</artifactId>
</dependency>
<dependency>
<groupId>org.powermock</groupId>
<artifactId>powermock-module-testng</artifactId>
</dependency>
<dependency>
<groupId>httpunit</groupId>
<artifactId>httpunit</artifactId>
</dependency>
<dependency>
<groupId>org.powermock</groupId>
<artifactId>powermock-module-testng-common</artifactId>
</dependency>
<dependency>
<groupId>org.mortbay.jetty</groupId>
<artifactId>jetty-servlet-tester</artifactId>
</dependency>
</dependencies>
</project>