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