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