pom.xml revision fbb37289e2100511fbb9c5a5667903af04c3e434
2N/A<?xml version="1.0" encoding="UTF-8"?>
2N/A
2N/A<!--
2N/A ~ DO NOT REMOVE COPYRIGHT NOTICES OR THIS HEADER.
2N/A ~
2N/A ~ Copyright 2014 ForgeRock AS.
2N/A ~
2N/A ~ The contents of this file are subject to the terms
2N/A ~ of the Common Development and Distribution License
2N/A ~ (the License). You may not use this file except in
2N/A ~ compliance with the License.
2N/A ~
2N/A ~ You can obtain a copy of the License at
2N/A ~ http://forgerock.org/license/CDDLv1.0.html
2N/A ~ See the License for the specific language governing
2N/A ~ permission and limitations under the License.
2N/A ~
2N/A ~ When distributing Covered Code, include this CDDL
2N/A ~ Header Notice in each file and include the License file
2N/A ~ at http://forgerock.org/license/CDDLv1.0.html
2N/A ~ If applicable, add the following below the CDDL Header,
2N/A ~ with the fields enclosed by brackets [] replaced by
2N/A ~ your own identifying information:
2N/A ~ "Portions Copyrighted [year] [name of copyright owner]"
2N/A -->
2N/A
2N/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">
2N/A <modelVersion>4.0.0</modelVersion>
2N/A
2N/A <parent>
2N/A <groupId>org.forgerock.openam</groupId>
2N/A <artifactId>openam-oauth2-common</artifactId>
2N/A <version>12.0.0-SNAPSHOT</version>
2N/A </parent>
2N/A
2N/A <artifactId>oauth2-core</artifactId>
2N/A
2N/A <name>OAuth2 Core</name>
2N/A <description>OAuth2 Core library</description>
2N/A
2N/A <dependencies>
2N/A
2N/A <dependency>
2N/A <groupId>com.google.inject.extensions</groupId>
2N/A <artifactId>guice-assistedinject</artifactId>
2N/A <!-- Exclude aopalliance dependency due to ambiguous licensing terms. -->
2N/A <exclusions>
2N/A <exclusion>
2N/A <groupId>aopalliance</groupId>
2N/A <artifactId>aopalliance</artifactId>
2N/A </exclusion>
2N/A </exclusions>
2N/A </dependency>
2N/A <dependency>
2N/A <groupId>org.slf4j</groupId>
2N/A <artifactId>slf4j-api</artifactId>
2N/A </dependency>
2N/A <dependency>
2N/A <groupId>javax.inject</groupId>
2N/A <artifactId>javax.inject</artifactId>
2N/A </dependency>
2N/A <dependency>
2N/A <groupId>org.forgerock.commons</groupId>
2N/A <artifactId>json-fluent</artifactId>
2N/A </dependency>
2N/A <dependency>
2N/A <groupId>org.forgerock.commons</groupId>
2N/A <artifactId>forgerock-util</artifactId>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
</dependency>
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-all</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>