pom.xml revision 4e09b43d07f5b34fe78ca10ece472ee6cbfea35c
0N/A<?xml version="1.0" encoding="UTF-8"?>
0N/A<!--
0N/AThe contents of this file are subject to the terms of the Common Development and
0N/ADistribution License (the License). You may not use this file except in compliance with the
0N/ALicense.
0N/A
0N/AYou can obtain a copy of the License at legal/CDDLv1.0.txt. See the License for the
0N/Aspecific language governing permission and limitations under the License.
0N/A
0N/AWhen distributing Covered Software, include this CDDL Header Notice in each file and include
0N/Athe License file at legal/CDDLv1.0.txt. If applicable, add the following below the CDDL
0N/AHeader, with the fields enclosed by brackets [] replaced by your own identifying
0N/Ainformation: "Portions Copyrighted [year] [name of copyright owner]".
0N/A
0N/ACopyright 2014-2015 ForgeRock AS.
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
0N/A <parent>
0N/A <groupId>org.forgerock.openam</groupId>
0N/A <artifactId>openam</artifactId>
0N/A <version>13.0.0-SNAPSHOT</version>
0N/A </parent>
0N/A
0N/A <name>OpenAM HTTP client</name>
0N/A <description>Common HTTP client implementation used by ForgeRock OpenAM custom scripting modules</description>
0N/A <url>https://svn.forgerock.org/openam/branches/sprint_57_script_auth_module/openam/openam-http-client</url>
0N/A <artifactId>openam-http-client</artifactId>
0N/A
0N/A <licenses>
0N/A <license>
0N/A <name>CDDL 1.0</name>
0N/A <url>http://www.opensource.org/licenses/CDDL-1.0</url>
0N/A <comments>Common Development and Distribution License (CDDL) 1.0.
0N/A This license applies as indicated in the source files.</comments>
0N/A <distribution>repo</distribution>
0N/A </license>
0N/A </licenses>
0N/A
0N/A <issueManagement>
0N/A <system>Jira</system>
0N/A <url>https://bugster.forgerock.org/jira/browse/COMMONS</url>
0N/A </issueManagement>
0N/A
0N/A <scm>
0N/A <url>https://svn.forgerock.org/commons/forgerock-http-client/trunk</url>
0N/A <connection>scm:svn:https://svn.forgerock.org/commons/forgerock-http-client/trunk</connection>
0N/A <developerConnection>scm:svn:https://svn.forgerock.org/commons/forgerock-http-client/trunk</developerConnection>
0N/A <tag>release/13.0.0</tag>
0N/A </scm>
0N/A
0N/A <repositories>
0N/A <repository>
0N/A <id>forgerock-staging-repository</id>
0N/A <name>ForgeRock Release Repository</name>
0N/A <url>http://maven.forgerock.org/repo/releases</url>
0N/A <snapshots>
0N/A <enabled>false</enabled>
0N/A </snapshots>
0N/A </repository>
0N/A <repository>
0N/A <id>forgerock-snapshots-repository</id>
0N/A <name>ForgeRock Snapshot Repository</name>
0N/A <url>http://maven.forgerock.org/repo/snapshots</url>
0N/A <releases>
0N/A <enabled>false</enabled>
0N/A </releases>
0N/A </repository>
0N/A </repositories>
0N/A
0N/A <dependencies>
0N/A <dependency>
0N/A <groupId>org.forgerock.commons</groupId>
0N/A <artifactId>forgerock-guice-core</artifactId>
0N/A </dependency>
0N/A <dependency>
0N/A <groupId>org.forgerock.http</groupId>
0N/A <artifactId>chf-http-core</artifactId>
0N/A </dependency>
0N/A <dependency>
0N/A <groupId>org.restlet.jee</groupId>
0N/A <artifactId>org.restlet</artifactId>
0N/A </dependency>
0N/A <dependency>
0N/A <groupId>org.forgerock.commons</groupId>
0N/A <artifactId>forgerock-util</artifactId>
0N/A </dependency>
0N/A </dependencies>
0N/A
0N/A</project>