pom.xml revision 94ab7a4a8fa00e44d9fe93df2c2a77c134a8e31c
<?xml version="1.0" encoding="UTF-8"?>
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<!--
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
*
* Copyright (c) 2011 ForgeRock AS. All Rights Reserved
*
* The contents of this file are subject to the terms
* of the Common Development and Distribution License
* (the License). You may not use this file except in
* compliance with the License.
*
* You can obtain a copy of the License at
* http://forgerock.org/license/CDDLv1.0.html
* See the License for the specific language governing
* permission and limitations under the License.
*
* When distributing Covered Code, include this CDDL
* Header Notice in each file and include the License file
* at http://forgerock.org/license/CDDLv1.0.html
* If applicable, add the following below the CDDL Header,
* with the fields enclosed by brackets [] replaced by
* your own identifying information:
* "Portions Copyrighted [year] [name of copyright owner]"
*
-->
<!-- Build Notes:
To Build all of OpenAM use the following Maven Command:
cd to openam top directory.
mvn clean install
To Build only a specify Module: (This will pull existing modules whichever is newest local or remote).
mvn clean install -pl <module Name>
To Build only specific Module and Dependencies
mvn clean install -pl <module Name> -am
Skipping Tests add:
-DskipTests=true
Running only a test or list of tests:
-DfailIfNoTests=false -Dtest=org.forgerock.restlet.ext.openam.OpenAMParametersTest
-->
<!-- Parent Project -->
<parent>
<groupId>org.forgerock</groupId>
<artifactId>forgerock-parent</artifactId>
<version>1.1.0-SNAPSHOT</version>
</parent>
<!-- Component Definition -->
<name>OpenAM</name>
<groupId>org.forgerock</groupId>
<artifactId>openam</artifactId>
<version>10.1.0-SNAPSHOT</version>
<packaging>pom</packaging>
<description>OpenAM</description>
<inceptionYear>2010</inceptionYear>
<organization>
<name>ForgeRock</name>
<url>http://www.forgerock.org</url>
</organization>
<url>http://www.forgerock.org</url>
<issueManagement>
<system>Jira</system>
<url>https://bugster.forgerock.org/jira/browse/OPENAM</url>
</issueManagement>
<licenses>
<license>
<name>CDDL-1.0</name>
<url>http://www.opensource.org/licenses/cddl1.php</url>
<comments>Common Development and Distribution License (CDDL) 1.0.
This license applies to OpenAM source code as indicated in the
sources themselves.
</comments>
<distribution>repo</distribution>
</license>
<license>
<name>CC BY-NC-ND 3.0</name>
<url>http://creativecommons.org/licenses/by-nc-nd/3.0/</url>
<comments>Creative Commons Attribution-NonCommercial-NoDerivs 3.0
Unported. This license applies to the site content, and to the
documentation as indicated in the documentation source code.
</comments>
<distribution>repo</distribution>
</license>
</licenses>
<!-- Component Properties -->
<properties>
<!-- **************************************************************** -->
<maven.build.timestamp.format>yyyy-MMM-dd HH:mm:ss</maven.build.timestamp.format>
<!-- **************************************************************** -->
<!-- Java Properties -->
<java.source.version>1.5</java.source.version>
<!-- Backed off from 1.6 -->
<java.target.version>1.5</java.target.version>
<!-- Backed off from 1.6 -->
<!-- Surefire Argument Line -->
<java.surefire.options>-Xms2g -Xmx2g -XX:MaxPermSize=512m</java.surefire.options>
<!-- JavaDoc Setting Properties -->
<javadoc.options>-J-Xms2g -J-Xmx2g -J-XX:MaxPermSize=512m</javadoc.options>
<javadoc.excludePackageNames>java.*:javax.*:com.*:org.*:net.*:edu.*</javadoc.excludePackageNames>
<!-- Project Encoding -->
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<!-- Product Properties File Inclusion during Build -->
<openam.properties>openam.properties</openam.properties>
<!-- Version Properties -->
<restlet.version>2.1-RC4</restlet.version>
<xercesj.version>2.11.0</xercesj.version>
</properties>
<!-- Profiles -->
<profiles>
<!-- Place Default Profiles here to override and determine Environment. -->
<profile>
<id>default-profile</id>
<!-- This profile gets activated for WINDOWS and LINUX Systems -->
<activation>
<file>
<exists>${env.JAVA_HOME}/lib/tools.jar</exists>
</file>
</activation>
<properties>
<toolsjar>${env.JAVA_HOME}/lib/tools.jar</toolsjar>
</properties>
<dependencies>
<dependency>
<groupId>com.sun</groupId>
<artifactId>tools</artifactId>
<version>${java.target.version}</version>
<scope>system</scope>
<optional>true</optional>
<systemPath>${toolsjar}</systemPath>
</dependency>
</dependencies>
</profile>
</profiles>
<!-- OpenAM Child Modules -->
<modules>
<!-- OpenAM Shared - Common Module -->
<module>openam-shared</module>
<!-- OpenAM Entitlement Module -->
<module>openam-entitlements</module>
<!-- OpenAM CoreToken Module -->
<module>openam-coretoken</module>
<!-- OpenAM REST - CORE Module -->
<module>openam-rest</module>
<!-- OpenAM Core Module -->
<module>openam-core</module>
<!-- OpenAM Common Test Suite -->
<module>openam-test</module>
<!-- OpenAM Session High-Availability FailOver Module -->
<module>openam-session-ha</module>
<!-- OpenAM Federation Modules -->
<module>openam-federation</module>
<!-- OpenAM OAuth Token Service -->
<module>openam-oauth</module>
<!-- OpenAM OAuth2 Token Service -->
<module>openam-oauth2</module>
<!-- OpenAM Server -->
<module>openam-server</module>
<!-- OpenAM Standalone Container Environment -->
<module>openam-server-engine</module>
<!-- Tools Artifacts -->
<module>openam-tools</module>
<!-- Java Client SDK Artifacts -->
<module>openam-clientsdk</module>
<!-- Documentation -->
<module>openam-documentation</module>
<!-- Final Packaging Distribution Kit -->
<module>openam-distribution</module>
</modules>
<!-- Developers -->
<developers>
<developer>
<id>allan.foster</id>
<name>Allan Foster</name>
<email>allan.foster@forgerock.com</email>
<url>http://www.forgerock.com/</url>
<organization>ForgeRock US</organization>
<organizationUrl>http://www.forgerock.com</organizationUrl>
<roles>
<role>VP Community</role>
<role>Support Staff</role>
</roles>
</developer>
<developer>
<id>jamie.nelson</id>
<name>Jamie Nelson</name>
<email>jamie.nelson@forgerock.com</email>
<url>http://www.forgerock.com/</url>
<organization>ForgeRock US</organization>
<organizationUrl>http://www.forgerock.com</organizationUrl>
<roles>
<role>VP Engineering</role>
<role>Support Staff</role>
</roles>
</developer>
<developer>
<id>jeff.schenk</id>
<name>Jeff Schenk</name>
<email>jeff.schenk@forgerock.com</email>
<url>http://www.forgerock.com/</url>
<organization>ForgeRock US</organization>
<organizationUrl>http://www.forgerock.com</organizationUrl>
<roles>
<role>Build Master</role>
<role>Senior Software Development Engineer</role>
<role>Support Staff</role>
</roles>
</developer>
<developer>
<id>jason.lemay</id>
<name>Jason Lemay</name>
<email>jason.lemay@forgerock.com</email>
<url>http://www.forgerock.com/</url>
<organization>ForgeRock US</organization>
<organizationUrl>http://www.forgerock.com</organizationUrl>
<roles>
<role>Support Staff</role>
<role>Software Engineer</role>
</roles>
</developer>
<developer>
<id>alin.brici</id>
<name>Alin Brici</name>
<email>alin.brici@forgerock.com</email>
<url>http://www.forgerock.com/</url>
<organization>ForgeRock US</organization>
<organizationUrl>http://www.forgerock.com</organizationUrl>
<roles>
<role>Support Staff</role>
<role>Software Engineer</role>
</roles>
</developer>
<developer>
<id>jonathan.scudder</id>
<name>Jonathan Scudder</name>
<email>jonathan.scudder@forgerock.com</email>
<url>http://www.forgerock.com/</url>
<organization>ForgeRock UK - Oslo</organization>
<organizationUrl>http://www.forgerock.com</organizationUrl>
<roles>
<role>OpenAM Chief Architect</role>
</roles>
</developer>
<developer>
<id>peter.major</id>
<name>Peter Major</name>
<email>peter.major@forgerock.com</email>
<url>http://www.forgerock.com/</url>
<organization>ForgeRock - HUNGARY</organization>
<organizationUrl>http://www.forgerock.com</organizationUrl>
<roles>
<role>Software Engineer</role>
</roles>
</developer>
<!-- TODO Add remaining OpenAM Team -->
</developers>
<!-- Contributors -->
<contributors>
<!-- TODO Add OpenAM Additional Contributors -->
</contributors>
<!-- Mailing Lists -->
<mailingLists>
<mailingList>
<name>OpenAM Users List</name>
<subscribe>https://lists.forgerock.org/mailman/listinfo/openam/</subscribe>
<unsubscribe>https://lists.forgerock.org/mailman/listinfo/openam/</unsubscribe>
<post>openam@forgerock.org</post>
<archive>http://lists.forgerock.org/pipermail/openam/</archive>
</mailingList>
<mailingList>
<name>OpenAM Developers List</name>
<subscribe>https://lists.forgerock.org/mailman/listinfo/openam-dev/</subscribe>
<unsubscribe>https://lists.forgerock.org/mailman/listinfo/openam-dev/</unsubscribe>
<post>openam-dev@forgerock.org</post>
<archive>http://lists.forgerock.org/pipermail/openam-dev/</archive>
</mailingList>
<mailingList>
<name>OpenAM Commit Notifications</name>
<subscribe>https://lists.forgerock.org/mailman/listinfo/commitopenam/</subscribe>
<unsubscribe>https://lists.forgerock.org/mailman/listinfo/commitopenam/</unsubscribe>
<post>commitopenam@forgerock.org</post>
<archive>http://lists.forgerock.org/pipermail/commitopenam/</archive>
</mailingList>
</mailingLists>
<!-- Maven Repositories -->
<repositories>
<!-- ForgeRock Common Internal Project Repositories -->
<repository>
<id>forgerock-staging-repo</id>
<name>ForgeRock Release Repository</name>
<url>http://maven.forgerock.org/repo/releases</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
<repository>
<id>forgerock-snapshots-repo</id>
<name>ForgeRock Snapshot Repository</name>
<url>http://maven.forgerock.org/repo/snapshots</url>
<releases>
<enabled>false</enabled>
</releases>
</repository>
<!-- ForgeRock Internal Project Repository -->
<repository>
<id>maven.forgerock.org</id>
<name>maven.forgerock.org-openam-dependencies</name>
<url>http://maven.forgerock.org/repo/openam-dependencies</url>
<releases>
<enabled>true</enabled>
<updatePolicy>daily</updatePolicy>
</releases>
<snapshots>
<enabled>true</enabled>
<updatePolicy>daily</updatePolicy>
</snapshots>
</repository>
<!-- ForgeRock.org Project Repository -->
<repository>
<id>forgerock-staging-repository</id>
<name>ForgeRock Release Repository</name>
<url>http://maven.forgerock.org/repo/openam-releases</url>
<releases>
<enabled>true</enabled>
<updatePolicy>daily</updatePolicy>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
<repository>
<id>forgerock-snapshots-repository</id>
<name>ForgeRock Snapshot Repository</name>
<url>http://maven.forgerock.org/repo/openam-snapshots</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
<updatePolicy>daily</updatePolicy>
</snapshots>
</repository>
<repository>
<id>maven-central</id>
<url>http://maven.forgerock.org/repo/maven-central</url>
<releases>
<enabled>true</enabled>
<updatePolicy>daily</updatePolicy>
</releases>
<snapshots>
<enabled>true</enabled>
<updatePolicy>daily</updatePolicy>
</snapshots>
</repository>
<repository>
<id>maven.forgerock.org-snapshots</id>
<name>maven.forgerock.org-snapshots</name>
<url>http://maven.forgerock.org/repo/snapshots</url>
<releases>
<enabled>true</enabled>
<updatePolicy>daily</updatePolicy>
</releases>
<snapshots>
<enabled>true</enabled>
<updatePolicy>daily</updatePolicy>
</snapshots>
</repository>
<repository>
<id>maven-restlet</id>
<name>Public online Restlet repository</name>
<url>http://maven.restlet.org</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>forgerock-openam-plugin-releases</id>
<name>openam-releases</name>
<url>http://maven.forgerock.org/repo/openam-releases</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</pluginRepository>
<pluginRepository>
<id>forgerock-openam-plugin-snapshots</id>
<name>openam-snapshots</name>
<url>http://maven.forgerock.org/repo/openam-snapshots</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
</pluginRepository>
<pluginRepository>
<id>maven-central-plugins</id>
<url>http://maven.forgerock.org/repo/maven-central</url>
<releases>
<enabled>true</enabled>
<updatePolicy>daily</updatePolicy>
</releases>
<snapshots>
<enabled>true</enabled>
<updatePolicy>daily</updatePolicy>
</snapshots>
</pluginRepository>
</pluginRepositories>
<!-- For Deployment to ForgeRock Maven Repository -->
<distributionManagement>
<repository>
<id>maven.forgerock.org</id>
<name>maven.forgerock.org-releases</name>
<url>http://maven.forgerock.org/repo/openam-releases</url>
</repository>
<snapshotRepository>
<id>maven.forgerock.org</id>
<name>maven.forgerock.org-snapshots</name>
<url>http://maven.forgerock.org/repo/openam-snapshots</url>
</snapshotRepository>
</distributionManagement>
<!-- Source Control -->
<scm>
<connection>scm:svn:https://svn.forgerock.org/openam/branches/maven_merge/</connection>
<developerConnection>scm:svn:https://svn.forgerock.org/openam/branches/maven_merge/</developerConnection>
</scm>
<!-- Dependency Management -->
<dependencyManagement>
<dependencies>
<dependency>
<groupId>javax.activation</groupId>
<artifactId>activation</artifactId>
<version>1.1.1</version>
</dependency>
<dependency>
<groupId>asm</groupId>
<artifactId>asm</artifactId>
<version>3.3.1</version>
<!-- Originally 3.1 -->
</dependency>
<dependency>
<groupId>backport-util-concurrent</groupId>
<artifactId>backport-util-concurrent</artifactId>
<version>3.1</version>
<!-- Originally 2.2 -->
</dependency>
<dependency>
<groupId>org.apache.click</groupId>
<artifactId>click-extras</artifactId>
<version>2.3.0</version>
</dependency>
<dependency>
<groupId>org.apache.click</groupId>
<artifactId>click-nodeps</artifactId>
<version>2.3.0</version>
</dependency>
<dependency>
<groupId>commons-beanutils</groupId>
<artifactId>commons-beanutils</artifactId>
<version>1.8.3</version>
<!-- Originally 1.6 -->
</dependency>
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
<version>1.6</version>
<!-- Originally 1.4 -->
</dependency>
<dependency>
<groupId>commons-collections</groupId>
<artifactId>commons-collections</artifactId>
<version>3.2.1</version>
</dependency>
<dependency>
<groupId>commons-digester</groupId>
<artifactId>commons-digester</artifactId>
<version>2.1</version>
<!-- Originally 1.8.3 -->
</dependency>
<dependency>
<groupId>commons-fileupload</groupId>
<artifactId>commons-fileupload</artifactId>
<version>1.2.2</version>
<!-- Originally 1.8.3 -->
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.3</version>
<!-- Originally 2.0.1 -->
</dependency>
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
<version>2.6</version>
<!-- Originally 2.5 -->
</dependency>
<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
<version>1.1.1</version>
</dependency>
<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging-api</artifactId>
<version>1.1</version>
</dependency>
<dependency>
<groupId>berkeleydb</groupId>
<artifactId>berkeleydb</artifactId>
<version>1.5.1</version>
<!-- Originally ? -->
</dependency>
<dependency>
<groupId>javax.el</groupId>
<artifactId>el-api</artifactId>
<version>2.2</version>
<!-- Originally 1.0 -->
</dependency>
<dependency>
<groupId>com.sun.el</groupId>
<artifactId>el-ri</artifactId>
<version>1.0</version>
</dependency>
<dependency>
<groupId>external</groupId>
<artifactId>esapiport</artifactId>
<version>2009-26-07</version>
</dependency>
<!--
<dependency>
<groupId>org.owasp.esapi</groupId>
<artifactId>esapi</artifactId>
<version>2.0.1</version>
</dependency>
-->
<dependency>
<groupId>org.kohsuke</groupId>
<artifactId>geoip</artifactId>
<version>1.2.5</version>
</dependency>
<dependency>
<groupId>org.glassfish.gmbal</groupId>
<artifactId>gmbal-api-only</artifactId>
<version>3.2.0-b003</version>
<!-- Originally 3.0.0-b023 -->
</dependency>
<dependency>
<groupId>org.glassfish.grizzly</groupId>
<artifactId>grizzly-framework</artifactId>
<version>2.1.7</version>
<!-- Originally 3.0.0-b023 -->
</dependency>
<!-- TODO i18n-core -->
<dependency>
<groupId>com.sun.messaging.mq</groupId>
<artifactId>imq</artifactId>
<version>4.4.2</version>
<!-- Originally ? -->
</dependency>
<dependency>
<groupId>org.glassfish.mq</groupId>
<artifactId>imq</artifactId>
<version>4.5.2</version>
<!-- Originally 4.1 ? -->
</dependency>
<!-- TODO j2ee -->
<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
<version>1.0.6</version>
<!-- Originally ? -->
</dependency>
<dependency>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
<version>1.0.6</version>
<!-- Originally ? -->
</dependency>
<dependency>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-libs</artifactId>
<version>1.0.6</version>
<!-- Originally ? -->
</dependency>
<dependency>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-xjc</artifactId>
<version>1.0.6</version>
<!-- Originally ? -->
</dependency>
<dependency>
<groupId>javax.xml</groupId>
<artifactId>jaxrpc-api</artifactId>
<version>1.1</version>
<!-- Originally ? -->
</dependency>
<dependency>
<groupId>com.sun.xml.rpc</groupId>
<artifactId>jaxrpc-impl</artifactId>
<version>1.1.3_01</version>
<!-- Originally ? -->
</dependency>
<dependency>
<groupId>com.sun.xml.rpc</groupId>
<artifactId>jaxrpc-spi</artifactId>
<version>1.1.3_01</version>
<!-- Originally ? -->
</dependency>
<!-- TODO jmx -->
<dependency>
<groupId>org.jdom</groupId>
<artifactId>jdom</artifactId>
<version>2.0.1</version>
<!-- Originally ? -->
</dependency>
<dependency>
<groupId>external</groupId>
<artifactId>sleepycat-je</artifactId>
<version>2011-04-07</version>
</dependency>
<dependency>
<groupId>com.sun.jersey</groupId>
<artifactId>jersey-bundle</artifactId>
<version>1.1.1-ea</version>
<!-- Originally 1.1.1-ea-SNAPSHOT -->
</dependency>
<dependency>
<groupId>com.sun.messaging.mq</groupId>
<artifactId>jms</artifactId>
<version>4.4.2</version>
<!-- Originally ? -->
</dependency>
<dependency>
<groupId>org.json</groupId>
<artifactId>json</artifactId>
<version>20090211</version>
<!-- Originally ? -->
</dependency>
<dependency>
<groupId>com.iplanet.jato</groupId>
<artifactId>jato</artifactId>
<version>2005-05-04</version>
</dependency>
<dependency>
<groupId>com.sun.web.ui</groupId>
<artifactId>cc</artifactId>
<version>2008-08-08</version>
</dependency>
<dependency>
<groupId>com.sun.web.ui</groupId>
<artifactId>cc_de</artifactId>
<version>2008-08-08</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>com.sun.web.ui</groupId>
<artifactId>cc_es</artifactId>
<version>2008-08-08</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>com.sun.web.ui</groupId>
<artifactId>cc_fr</artifactId>
<version>2008-08-08</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>com.sun.web.ui</groupId>
<artifactId>cc_it</artifactId>
<version>2008-08-08</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>com.sun.web.ui</groupId>
<artifactId>cc_ja</artifactId>
<version>2008-08-08</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>com.sun.web.ui</groupId>
<artifactId>cc_ko</artifactId>
<version>2008-08-08</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>com.sun.web.ui</groupId>
<artifactId>cc_sv</artifactId>
<version>2008-08-08</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>com.sun.web.ui</groupId>
<artifactId>cc_zh</artifactId>
<version>2008-08-08</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>com.sun.web.ui</groupId>
<artifactId>cc_zh_CN</artifactId>
<version>2008-08-08</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>com.sun.web.ui</groupId>
<artifactId>cc_zh_HK</artifactId>
<version>2008-08-08</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>com.sun.web.ui</groupId>
<artifactId>cc_zh_TW</artifactId>
<version>2008-08-08</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>javax.xml.stream</groupId>
<artifactId>stax-api</artifactId>
<version>1.0-2</version>
</dependency>
<dependency>
<groupId>javax.ws.rs</groupId>
<artifactId>jsr311-api</artifactId>
<version>1.1.1</version>
</dependency>
<!-- TODO jss4 org/mozilla/jss -->
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>jstl</artifactId>
<version>1.1.2</version>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.16</version>
<!-- Originally1.2.8 -->
</dependency>
<dependency>
<groupId>javax.mail</groupId>
<artifactId>mail</artifactId>
<version>1.4.5</version>
<!-- Originally ? -->
</dependency>
<dependency>
<groupId>org.glassfish.external</groupId>
<artifactId>management-api</artifactId>
<version>3.1.0-b001</version>
<!-- Originally ? -->
</dependency>
<dependency>
<groupId>com.sun.jersey.contribs.jersey-oauth</groupId>
<artifactId>oauth-client</artifactId>
<version>1.1.5.2</version>
</dependency>
<dependency>
<groupId>com.sun.jersey.contribs.jersey-oauth</groupId>
<artifactId>oauth-server</artifactId>
<version>1.1.5.2</version>
</dependency>
<dependency>
<groupId>com.sun.jersey.contribs.jersey-oauth</groupId>
<artifactId>oauth-signature</artifactId>
<version>1.1.5.2</version>
</dependency>
<dependency>
<groupId>ognl</groupId>
<artifactId>ognl</artifactId>
<version>2.6.9</version>
<!-- Originally ? -->
</dependency>
<!-- TODO opendj-ldap-sdk-3.0.0-M2 -->
<!-- TODO publicsuffix -->
<dependency>
<groupId>relaxngDatatype</groupId>
<artifactId>relaxngDatatype</artifactId>
<version>20020414</version>
</dependency>
<dependency>
<groupId>rome</groupId>
<artifactId>rome</artifactId>
<version>1.0</version>
</dependency>
<dependency>
<groupId>javax.xml.soap</groupId>
<artifactId>saaj-api</artifactId>
<version>1.3.4</version>
<!-- Originally ? -->
</dependency>
<dependency>
<groupId>com.sun.xml.messaging.saaj</groupId>
<artifactId>saaj-impl</artifactId>
<version>1.3.19</version>
<!-- Originally ? -->
</dependency>
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>6.5.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.velocity</groupId>
<artifactId>velocity</artifactId>
<version>1.7</version>
</dependency>
<dependency>
<groupId>javax.xml.ws</groupId>
<artifactId>jaxws-api</artifactId>
<version>2.2.8</version>
<!-- Originally ? -->
</dependency>
<!-- TODO webservices-extra-api -->
<!-- TODO webservices-extra -->
<dependency>
<groupId>com.sun.xml.ws</groupId>
<artifactId>jaxws-rt</artifactId>
<version>2.2.7-promoted-b73</version>
<!-- Originally ? -->
</dependency>
<dependency>
<groupId>com.sun.tools.ws</groupId>
<artifactId>webservices-tools</artifactId>
<version>2.1-b16</version>
<!-- Originally ? -->
</dependency>
<dependency>
<groupId>xalan</groupId>
<artifactId>xalan</artifactId>
<version>2.7.1</version>
<exclusions>
<exclusion>
<groupId>xml-apis</groupId>
<artifactId>xml-apis</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>xml-security</groupId>
<artifactId>xmlsec</artifactId>
<version>1.3.0</version>
<!-- Originally ? -->
</dependency>
<dependency>
<groupId>net.java.dev.msv.datatype.xsd</groupId>
<artifactId>xsdlib</artifactId>
<version>20060615</version>
<!-- Originally ? -->
</dependency>
<!-- Legacy External Libraries for OpenAM -->
<!-- We need to eventually ween off of these -->
<dependency>
<groupId>external</groupId>
<!-- This version is different from what is out in central. Very Bad! -->
<artifactId>ant-contrib</artifactId>
<version>1.0b3</version>
<!-- TODO - Needs to be scoped as compile eventually -->
<!-- <scope>compile</scope> -->
</dependency>
<dependency>
<groupId>external</groupId>
<artifactId>authapi</artifactId>
<version>2005-08-12</version>
</dependency>
<dependency>
<groupId>external</groupId>
<artifactId>FastInfoset</artifactId>
<version>2006-26-09</version>
</dependency>
<dependency>
<groupId>external</groupId>
<artifactId>i18n-core</artifactId>
<version>1.4.0</version>
</dependency>
<dependency>
<groupId>external</groupId>
<artifactId>j2ee</artifactId>
<version>2007-18-10</version>
<!-- TODO - Needs to be scoped as provided eventually -->
<!-- <scope>provided</scope> -->
</dependency>
<dependency>
<groupId>external</groupId>
<artifactId>jdmkrt</artifactId>
<version>2007-01-10</version>
</dependency>
<dependency>
<groupId>external</groupId>
<artifactId>jdmktk</artifactId>
<version>2007-01-10</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>external</groupId>
<artifactId>jsr173_api</artifactId>
<version>2004-30-01</version>
</dependency>
<dependency>
<groupId>external</groupId>
<artifactId>jss4</artifactId>
<version>2007-08-11</version>
</dependency>
<dependency>
<groupId>external</groupId>
<artifactId>OpenDJ</artifactId>
<version>2012-20-02</version>
</dependency>
<dependency>
<groupId>external</groupId>
<artifactId>opendj-ldap-sdk</artifactId>
<version>3.0.0-M2</version>
</dependency>
<dependency>
<groupId>external</groupId>
<artifactId>publicsuffix</artifactId>
<version>1.0.1</version>
</dependency>
<dependency>
<groupId>external</groupId>
<artifactId>swec</artifactId>
<version>2002-02-05</version>
</dependency>
<dependency>
<groupId>external</groupId>
<artifactId>webservices-extra</artifactId>
<version>2008-03-12</version>
</dependency>
<dependency>
<groupId>external</groupId>
<artifactId>webservices-extra-api</artifactId>
<version>2003-09-04</version>
</dependency>
<dependency>
<groupId>external</groupId>
<artifactId>webservices-rt</artifactId>
<version>2009-29-07</version>
</dependency>
<dependency>
<groupId>external</groupId>
<artifactId>webservices-api</artifactId>
<version>2009-14-01</version>
</dependency>
<!-- Session HA Module Dependencies-->
<dependency>
<groupId>commons-net</groupId>
<artifactId>commons-net</artifactId>
<version>3.1</version>
</dependency>
<dependency>
<groupId>org.codehaus.jackson</groupId>
<artifactId>jackson-core-asl</artifactId>
<version>1.9.7</version>
</dependency>
<dependency>
<groupId>org.codehaus.jackson</groupId>
<artifactId>jackson-mapper-asl</artifactId>
<version>1.9.7</version>
</dependency>
<dependency>
<groupId>org.restlet.jse</groupId>
<artifactId>org.restlet</artifactId>
<version>${restlet.version}</version>
</dependency>
<dependency>
<groupId>org.restlet.jse</groupId>
<artifactId>org.restlet.ext.jackson</artifactId>
<version>${restlet.version}</version>
</dependency>
<dependency>
<groupId>org.restlet.osgi</groupId>
<artifactId>org.restlet</artifactId>
<version>${restlet.version}</version>
</dependency>
<dependency>
<groupId>org.restlet.osgi</groupId>
<artifactId>org.restlet.ext.jackson</artifactId>
<version>${restlet.version}</version>
</dependency>
<dependency>
<groupId>org.restlet.osgi</groupId>
<artifactId>org.restlet.ext.servlet</artifactId>
<version>${restlet.version}</version>
</dependency>
<dependency>
<groupId>org.restlet.osgi</groupId>
<artifactId>org.restlet.ext.freemarker</artifactId>
<version>${restlet.version}</version>
</dependency>
<dependency>
<groupId>org.restlet.osgi</groupId>
<artifactId>org.restlet.ext.ssl</artifactId>
<version>${restlet.version}</version>
</dependency>
<dependency>
<groupId>org.restlet.jse</groupId>
<artifactId>org.restlet.ext.simple</artifactId>
<version>${restlet.version}</version>
</dependency>
<dependency>
<groupId>org.restlet.jse</groupId>
<artifactId>org.restlet.ext.crypto</artifactId>
<version>${restlet.version}</version>
</dependency>
<dependency>
<groupId>org.restlet.jse</groupId>
<artifactId>org.restlet.ext.httpclient</artifactId>
<version>${restlet.version}</version>
</dependency>
<dependency>
<groupId>org.forgerock.commons</groupId>
<artifactId>i18n-core</artifactId>
<version>1.3.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.felix</groupId>
<artifactId>org.osgi.core</artifactId>
<version>1.4.0</version>
</dependency>
<!-- Xerces-J Required for fedlet -->
<dependency>
<groupId>xerces-J</groupId>
<artifactId>xercesImpl</artifactId>
<version>${xercesj.version}</version>
</dependency>
<dependency>
<groupId>xerces-J</groupId>
<artifactId>xml-apis</artifactId>
<version>${xercesj.version}</version>
</dependency>
<dependency>
<groupId>xerces-J</groupId>
<artifactId>xml-resolver</artifactId>
<version>${xercesj.version}</version>
</dependency>
<dependency>
<groupId>xerces-J</groupId>
<artifactId>xml-serializer</artifactId>
<version>${xercesj.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
<!-- Build -->
<build>
<plugins>
<plugin>
<groupId>com.google.code.maven-svn-revision-number-plugin</groupId>
<artifactId>maven-svn-revision-number-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>revision</goal>
</goals>
</execution>
</executions>
<configuration>
<entries>
<entry>
<prefix>svn-revision</prefix>
</entry>
</entries>
</configuration>
</plugin>
<!-- Inject Specified Build Properties-->
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>properties-maven-plugin</artifactId>
<version>1.0-alpha-2</version>
<inherited>false</inherited>
<executions>
<execution>
<phase>initialize</phase>
<goals>
<goal>read-project-properties</goal>
</goals>
<configuration>
<files>
<file>${openam.properties}</file>
</files>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<inherited>true</inherited>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.5.1</version>
<configuration>
<source>${java.source.version}</source>
<target>${java.target.version}</target>
<encoding>UTF-8</encoding>
<!-- Override Enforcer Rules for OpenAM Compilation -->
<compilerArgument>-Xlint:none</compilerArgument>
<showDeprecation>false</showDeprecation>
</configuration>
</plugin>
<plugin>
<inherited>true</inherited>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<id>analyze</id>
<goals>
<goal>analyze-only</goal>
</goals>
<configuration>
<failOnWarning>false</failOnWarning>
<ignoreNonCompile>true</ignoreNonCompile>
<scriptableOutput>false</scriptableOutput>
<outputXML>false</outputXML>
<verbose>true</verbose>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<inherited>true</inherited>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.0-beta-9</version>
<configuration>
<tagBase>/tags/fix-me...</tagBase>
<remoteTagging>true</remoteTagging>
<preparationGoals>clean install</preparationGoals>
<autoVersionSubmodules>true</autoVersionSubmodules>
<goals>deploy</goals>
</configuration>
</plugin>
<plugin>
<inherited>true</inherited>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<argLine>${java.surefire.options}</argLine>
<redirectTestOutputToFile>true</redirectTestOutputToFile>
<disableXmlReport>false</disableXmlReport>
<forkMode>once</forkMode>
<systemPropertyVariables>
<system_config>${openam.properties}</system_config>
</systemPropertyVariables>
<junitArtifactName>none:none</junitArtifactName>
<testNGArtifactName>org.testng:testng</testNGArtifactName>
</configuration>
<executions>
<execution>
<phase>test</phase>
<goals>
<goal>test</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<inherited>true</inherited>
<configuration>
<encoding>UTF-8</encoding>
<nonFilteredFileExtensions>
<!-- Exclude any binary files based upon File Types. -->
<nonFilteredFileExtension>bin</nonFilteredFileExtension>
<nonFilteredFileExtension>bkf</nonFilteredFileExtension>
<nonFilteredFileExtension>bmp</nonFilteredFileExtension>
<nonFilteredFileExtension>bz2</nonFilteredFileExtension>
<nonFilteredFileExtension>deb</nonFilteredFileExtension>
<nonFilteredFileExtension>dll</nonFilteredFileExtension>
<nonFilteredFileExtension>dmg</nonFilteredFileExtension>
<nonFilteredFileExtension>ear</nonFilteredFileExtension>
<nonFilteredFileExtension>exe</nonFilteredFileExtension>
<nonFilteredFileExtension>gif</nonFilteredFileExtension>
<nonFilteredFileExtension>gz</nonFilteredFileExtension>
<nonFilteredFileExtension>gzip</nonFilteredFileExtension>
<nonFilteredFileExtension>jar</nonFilteredFileExtension>
<nonFilteredFileExtension>jks</nonFilteredFileExtension>
<nonFilteredFileExtension>jpg</nonFilteredFileExtension>
<nonFilteredFileExtension>jpeg</nonFilteredFileExtension>
<nonFilteredFileExtension>lz</nonFilteredFileExtension>
<nonFilteredFileExtension>png</nonFilteredFileExtension>
<nonFilteredFileExtension>pdf</nonFilteredFileExtension>
<nonFilteredFileExtension>rar</nonFilteredFileExtension>
<nonFilteredFileExtension>rpm</nonFilteredFileExtension>
<nonFilteredFileExtension>tar</nonFilteredFileExtension>
<nonFilteredFileExtension>tgz</nonFilteredFileExtension>
<nonFilteredFileExtension>war</nonFilteredFileExtension>
<nonFilteredFileExtension>zip</nonFilteredFileExtension>
<nonFilteredFileExtension>7z</nonFilteredFileExtension>
<!-- See: http://en.wikipedia.org/wiki/List_of_file_formats -->
</nonFilteredFileExtensions>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.8.1</version>
<inherited>true</inherited>
<configuration>
<show>public</show>
<charset>utf-8</charset>
<encoding>utf-8</encoding>
<source>${java.source.version}</source>
<additionalJOption>${javadoc.options}</additionalJOption>
<outputDirectory>${project.build.directory}/site/apidocs
</outputDirectory>
<detectLinks>true</detectLinks>
<excludePackageNames>${javadoc.excludePackageNames}
</excludePackageNames>
<subpackages>org.forgerock:com.forgerock:com.iplanet.sso:com.sun.identity</subpackages>
<name>OpenAM JavaDoc</name>
<description>OpenAM Java Documentation.
</description>
<bottom>
<![CDATA[Copyright &#169 2010-2012, <a href="http://www.forgerock.com">ForgeRock<a> All Rights Reserved.]]></bottom>
<header file="/openam-documentation/src/main/docbkx/reference/log-messages-preface.header"/>
<footer file="/openam-documentation/src/main/docbkx/reference/log-messages-preface.footer"/>
</configuration>
<executions>
<execution>
<id>attach-javadoc</id>
<phase>site</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<inherited>true</inherited>
<configuration>
<includePom>false</includePom>
<excludeResources>false</excludeResources>
<useDefaultExcludes>true</useDefaultExcludes>
<useDefaultManifestFile>true</useDefaultManifestFile>
</configuration>
<executions>
<execution>
<id>attach-sources</id>
<phase>site</phase>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>net.ju-n.maven.plugins</groupId>
<artifactId>checksum-maven-plugin</artifactId>
<version>1.0.1</version>
<executions>
<execution>
<id>generate-checksum</id>
<phase>verify</phase>
<goals>
<goal>artifacts</goal>
</goals>
</execution>
</executions>
<configuration>
<failOnError>false</failOnError>
<csvSummary>true</csvSummary>
<csvSummaryFile>OpenAM-artifact-${project.build.finalName}-R${svn-revision.revision}-checksums.csv
</csvSummaryFile>
<xmlSummary>true</xmlSummary>
<xmlSummaryFile>OpenAM-artifact-${project.build.finalName}-R${svn-revision.revision}-checksums.xml
</xmlSummaryFile>
<algorithms>
<algorithm>SHA</algorithm>
</algorithms>
<individualFiles>true</individualFiles>
<quiet>true</quiet>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>taglist-maven-plugin</artifactId>
<configuration>
<tagListOptions>
<tagClasses>
<tagClass>
<displayName>Features and Completed Fixes</displayName>
<tags>
<tag>
<matchString>jira-</matchString>
<matchType>ignoreCase</matchType>
</tag>
</tags>
</tagClass>
<tagClass>
<displayName>Todo Work</displayName>
<tags>
<tag>
<matchString>todo</matchString>
<matchType>ignoreCase</matchType>
</tag>
<tag>
<matchString>FIXME</matchString>
<matchType>ignoreCase</matchType>
</tag>
</tags>
</tagClass>
</tagClasses>
</tagListOptions>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>jdepend-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>javancss-maven-plugin</artifactId>
<configuration>
<includes>
<include>**/*.java</include>
</includes>
</configuration>
</plugin>
</plugins>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>properties-maven-plugin</artifactId>
<version>1.0-alpha-2</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>2.9.1</version>
</plugin>
<plugin>
<groupId>com.pyx4j</groupId>
<artifactId>maven-junction-plugin</artifactId>
<version>1.0.3</version>
<inherited>true</inherited>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>jaxb2-maven-plugin</artifactId>
<version>1.3.1</version>
<inherited>true</inherited>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>1.7</version>
<inherited>true</inherited>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.7</version>
<inherited>true</inherited>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.2-beta-5</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>1.7</version>
<inherited>true</inherited>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.7</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.4</version>
<inherited>true</inherited>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.8.1</version>
<inherited>true</inherited>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.1.2</version>
<inherited>true</inherited>
</plugin>
<plugin>
<groupId>net.ju-n.maven.plugins</groupId>
<artifactId>checksum-maven-plugin</artifactId>
<version>1.0.1</version>
<inherited>true</inherited>
</plugin>
<plugin>
<groupId>com.google.code.maven-svn-revision-number-plugin</groupId>
<artifactId>maven-svn-revision-number-plugin</artifactId>
<version>1.6</version>
<inherited>true</inherited>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.5</version>
<inherited>true</inherited>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>2.2</version>
<inherited>true</inherited>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>2.4</version>
<inherited>true</inherited>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-eclipse-plugin</artifactId>
<version>2.9</version>
<inherited>true</inherited>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-idea-plugin</artifactId>
<version>2.2</version>
<inherited>true</inherited>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<version>3.1</version>
<inherited>true</inherited>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-project-info-reports-plugin</artifactId>
<version>2.4</version>
<inherited>true</inherited>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>2.4.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.skins</groupId>
<artifactId>maven-default-skin</artifactId>
<version>1.0</version>
</plugin>
<plugin>
<groupId>org.apache.maven.skins</groupId>
<artifactId>maven-skins</artifactId>
<version>4</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.1-beta-1</version>
<inherited>true</inherited>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.0</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<version>2.4</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>dashboard-maven-plugin</artifactId>
<version>1.0.0-beta-1</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>javancss-maven-plugin</artifactId>
<version>2.0</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>jdepend-maven-plugin</artifactId>
<version>2.0-beta-2</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>taglist-maven-plugin</artifactId>
<version>2.4</version>
</plugin>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<version>2.3.7</version>
</plugin>
</plugins>
</pluginManagement>
</build>
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>2.9.1</version>
</plugin>
</plugins>
</reporting>
</project>