pom.xml revision f307495b86fff35ba8583abbdade44f9d543a201
ea65b6bac936db133a660beef9d75f044dd7ce84Andrew Forrest<?xml version="1.0" encoding="UTF-8"?>
ea65b6bac936db133a660beef9d75f044dd7ce84Andrew Forrest<!--
ea65b6bac936db133a660beef9d75f044dd7ce84Andrew Forrest * The contents of this file are subject to the terms of the Common Development and
ea65b6bac936db133a660beef9d75f044dd7ce84Andrew Forrest * Distribution License (the License). You may not use this file except in compliance with the
ea65b6bac936db133a660beef9d75f044dd7ce84Andrew Forrest * License.
ea65b6bac936db133a660beef9d75f044dd7ce84Andrew Forrest *
ea65b6bac936db133a660beef9d75f044dd7ce84Andrew Forrest * You can obtain a copy of the License at legal/CDDLv1.0.txt. See the License for the
ea65b6bac936db133a660beef9d75f044dd7ce84Andrew Forrest * specific language governing permission and limitations under the License.
ea65b6bac936db133a660beef9d75f044dd7ce84Andrew Forrest *
ea65b6bac936db133a660beef9d75f044dd7ce84Andrew Forrest * When distributing Covered Software, include this CDDL Header Notice in each file and include
ea65b6bac936db133a660beef9d75f044dd7ce84Andrew Forrest * the License file at legal/CDDLv1.0.txt. If applicable, add the following below the CDDL
ea65b6bac936db133a660beef9d75f044dd7ce84Andrew Forrest * Header, with the fields enclosed by brackets [] replaced by your own identifying
ea65b6bac936db133a660beef9d75f044dd7ce84Andrew Forrest * information: "Portions copyright [year] [name of copyright owner]".
ea65b6bac936db133a660beef9d75f044dd7ce84Andrew Forrest *
e6c3a72a023407f5d1fface64356e1cc81f1af31Phill Cunnington * Copyright 2014-2015 ForgeRock AS.
ea65b6bac936db133a660beef9d75f044dd7ce84Andrew Forrest-->
ea65b6bac936db133a660beef9d75f044dd7ce84Andrew Forrest<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">
ea65b6bac936db133a660beef9d75f044dd7ce84Andrew Forrest <modelVersion>4.0.0</modelVersion>
ea65b6bac936db133a660beef9d75f044dd7ce84Andrew Forrest
ea65b6bac936db133a660beef9d75f044dd7ce84Andrew Forrest <parent>
ea65b6bac936db133a660beef9d75f044dd7ce84Andrew Forrest <artifactId>openam-oauth2-common</artifactId>
ea65b6bac936db133a660beef9d75f044dd7ce84Andrew Forrest <groupId>org.forgerock.openam</groupId>
ea65b6bac936db133a660beef9d75f044dd7ce84Andrew Forrest <version>13.0.0-SNAPSHOT</version>
ea65b6bac936db133a660beef9d75f044dd7ce84Andrew Forrest </parent>
ea65b6bac936db133a660beef9d75f044dd7ce84Andrew Forrest
ea65b6bac936db133a660beef9d75f044dd7ce84Andrew Forrest <artifactId>openid-connect-restlet</artifactId>
ea65b6bac936db133a660beef9d75f044dd7ce84Andrew Forrest
ea65b6bac936db133a660beef9d75f044dd7ce84Andrew Forrest <name>OpenId Connect Restlet Integration</name>
ea65b6bac936db133a660beef9d75f044dd7ce84Andrew Forrest <description />
ea65b6bac936db133a660beef9d75f044dd7ce84Andrew Forrest
ea65b6bac936db133a660beef9d75f044dd7ce84Andrew Forrest <dependencies>
ea65b6bac936db133a660beef9d75f044dd7ce84Andrew Forrest <dependency>
ea65b6bac936db133a660beef9d75f044dd7ce84Andrew Forrest <groupId>org.forgerock.openam</groupId>
ea65b6bac936db133a660beef9d75f044dd7ce84Andrew Forrest <artifactId>openid-connect-core</artifactId>
f58fb92a804b356de679ca0ad458d59d95dc3af2Andrew Forrest </dependency>
f58fb92a804b356de679ca0ad458d59d95dc3af2Andrew Forrest <dependency>
f58fb92a804b356de679ca0ad458d59d95dc3af2Andrew Forrest <groupId>org.forgerock.openam</groupId>
f58fb92a804b356de679ca0ad458d59d95dc3af2Andrew Forrest <artifactId>oauth2-restlet</artifactId>
f58fb92a804b356de679ca0ad458d59d95dc3af2Andrew Forrest </dependency>
f58fb92a804b356de679ca0ad458d59d95dc3af2Andrew Forrest <dependency>
f58fb92a804b356de679ca0ad458d59d95dc3af2Andrew Forrest <groupId>org.forgerock.openam</groupId>
f58fb92a804b356de679ca0ad458d59d95dc3af2Andrew Forrest <artifactId>openam-rest</artifactId>
f58fb92a804b356de679ca0ad458d59d95dc3af2Andrew Forrest </dependency>
ea65b6bac936db133a660beef9d75f044dd7ce84Andrew Forrest <dependency>
ea65b6bac936db133a660beef9d75f044dd7ce84Andrew Forrest <groupId>javax.servlet</groupId>
ea65b6bac936db133a660beef9d75f044dd7ce84Andrew Forrest <artifactId>javax.servlet-api</artifactId>
ea65b6bac936db133a660beef9d75f044dd7ce84Andrew Forrest <scope>provided</scope>
ea65b6bac936db133a660beef9d75f044dd7ce84Andrew Forrest </dependency>
ea65b6bac936db133a660beef9d75f044dd7ce84Andrew Forrest <dependency>
ea65b6bac936db133a660beef9d75f044dd7ce84Andrew Forrest <groupId>org.easytesting</groupId>
ea65b6bac936db133a660beef9d75f044dd7ce84Andrew Forrest <artifactId>fest-assert</artifactId>
ea65b6bac936db133a660beef9d75f044dd7ce84Andrew Forrest </dependency>
ea65b6bac936db133a660beef9d75f044dd7ce84Andrew Forrest </dependencies>
ea65b6bac936db133a660beef9d75f044dd7ce84Andrew Forrest</project>
ea65b6bac936db133a660beef9d75f044dd7ce84Andrew Forrest