pom.xml revision ffa4b06ba6ac4ba2f4d4e41c5e4b732b2e461c0a
0N/A<?xml version="1.0" encoding="UTF-8"?>
0N/A
0N/A<!--
0N/A DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
0N/A
0N/A Copyright © 2012 ForgeRock AS. All rights reserved.
0N/A
0N/A The contents of this file are subject to the terms
0N/A of the Common Development and Distribution License
0N/A (the License). You may not use this file except in
0N/A compliance with the License.
0N/A
0N/A You can obtain a copy of the License at
0N/A http://forgerock.org/license/CDDLv1.0.html
0N/A See the License for the specific language governing
0N/A permission and limitations under the License.
0N/A
0N/A When distributing Covered Code, include this CDDL
0N/A Header Notice in each file and include the License file
0N/A at http://forgerock.org/license/CDDLv1.0.html
0N/A If applicable, add the following below the CDDL Header,
0N/A with the fields enclosed by brackets [] replaced by
0N/A your own identifying information:
0N/A "Portions Copyrighted [year] [name of copyright owner]"
0N/A-->
0N/A
0N/A<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">
0N/A <modelVersion>4.0.0</modelVersion>
0N/A <parent>
0N/A <groupId>org.forgerock.openam</groupId>
0N/A <artifactId>openam-oauth2</artifactId>
0N/A <version>10.2.0-SNAPSHOT</version>
0N/A </parent>
0N/A
0N/A <artifactId>openam-oauth2-core-token-service</artifactId>
0N/A <name>OpenAM OAuth2 Core Token Service</name>
0N/A <properties>
0N/A <maven.compiler.target>1.6</maven.compiler.target>
0N/A <maven.compiler.source>1.6</maven.compiler.source>
0N/A </properties>
0N/A
0N/A
0N/A <dependencies>
0N/A
0N/A <dependency>
0N/A <groupId>org.forgerock.openam</groupId>
0N/A <artifactId>openam-shared</artifactId>
0N/A </dependency>
0N/A
0N/A <dependency>
0N/A <groupId>org.forgerock.openam</groupId>
0N/A <artifactId>openam-oauth2-common</artifactId>
0N/A </dependency>
0N/A
0N/A <!-- OpenAM -->
0N/A <dependency>
0N/A <groupId>org.forgerock.openam</groupId>
0N/A <artifactId>openam-core</artifactId>
0N/A </dependency>
0N/A <dependency>
0N/A <groupId>org.forgerock.openam</groupId>
0N/A <artifactId>openam-rest</artifactId>
0N/A </dependency>
0N/A <dependency>
0N/A <groupId>org.forgerock.commons</groupId>
0N/A <artifactId>json-fluent</artifactId>
0N/A </dependency>
0N/A <dependency>
0N/A <groupId>org.forgerock.openam</groupId>
0N/A <artifactId>openam-idsvcs-schema</artifactId>
0N/A </dependency>
0N/A
0N/A <!-- Commons -->
0N/A
0N/A <!-- Test Dependencies -->
0N/A <dependency>
113N/A <groupId>org.easytesting</groupId>
0N/A <artifactId>fest-assert</artifactId>
0N/A <version>1.4</version>
113N/A <scope>test</scope>
0N/A </dependency>
0N/A <dependency>
0N/A <groupId>org.testng</groupId>
0N/A <artifactId>testng</artifactId>
0N/A <scope>test</scope>
0N/A </dependency>
0N/A <dependency>
0N/A <groupId>org.mockito</groupId>
0N/A <artifactId>mockito-all</artifactId>
0N/A <version>1.9.0</version>
0N/A <scope>test</scope>
0N/A </dependency>
0N/A </dependencies>
0N/A
0N/A <build>
0N/A <pluginManagement>
0N/A <plugins>
0N/A <plugin>
0N/A <groupId>org.apache.maven.plugins</groupId>
0N/A <artifactId>maven-javadoc-plugin</artifactId>
0N/A <configuration>
0N/A <links>
0N/A <link>http://docs.oracle.com/javase/6/docs/api</link>
0N/A <link>http://openam.forgerock.org/doc/public-api</link>
0N/A </links>
0N/A </configuration>
0N/A </plugin>
0N/A </plugins>
0N/A </pluginManagement>
0N/A <!--plugins>
0N/A <plugin>
0N/A <groupId>org.apache.maven.plugins</groupId>
0N/A <artifactId>maven-checkstyle-plugin</artifactId>
0N/A </plugin>
0N/A </plugins>
0N/A <!- -plugins>
0N/A <plugin>
0N/A <groupId>org.apache.felix</groupId>
0N/A <artifactId>maven-bundle-plugin</artifactId>
0N/A <extensions>true</extensions>
0N/A <configuration>
0N/A <instructions>
0N/A <Export-Package>
0N/A org.forgerock.openam.ext.cts*;version="${project.version}"
0N/A </Export-Package>
0N/A </instructions>
0N/A </configuration>
0N/A </plugin>
0N/A </plugins-->
0N/A </build>
0N/A <profiles>
0N/A </profiles>
0N/A
0N/A</project>
0N/A