pom.xml revision 4a48635cccc646ac479830fd4df0ee8e10c5bd8d
1N/A<?xml version="1.0" encoding="UTF-8"?>
1N/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/maven-v4_0_0.xsd">
1N/A <modelVersion>4.0.0</modelVersion>
1N/A
1N/A<!--
1N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
1N/A *
1N/A * Copyright (c) 2011 ForgeRock AS. All Rights Reserved
1N/A *
1N/A * The contents of this file are subject to the terms
1N/A * of the Common Development and Distribution License
1N/A * (the License). You may not use this file except in
1N/A * compliance with the License.
1N/A *
1N/A * You can obtain a copy of the License at
1N/A * http://forgerock.org/license/CDDLv1.0.html
1N/A * See the License for the specific language governing
1N/A * permission and limitations under the License.
1N/A *
1N/A * When distributing Covered Code, include this CDDL
1N/A * Header Notice in each file and include the License file
1N/A * at http://forgerock.org/license/CDDLv1.0.html
1N/A * If applicable, add the following below the CDDL Header,
1N/A * with the fields enclosed by brackets [] replaced by
1N/A * your own identifying information:
1N/A * "Portions Copyrighted [year] [name of copyright owner]"
1N/A *
1N/A -->
1N/A
1N/A <!-- Parent Project -->
1N/A <parent>
1N/A <groupId>org.forgerock.openam</groupId>
1N/A <artifactId>openam-federation</artifactId>
1N/A <version>10.2.0-SNAPSHOT</version>
1N/A </parent>
1N/A
1N/A <!-- Component Definition -->
1N/A <name>OpenAM Federation Library</name>
1N/A <description>OpenAM Federation Library Components</description>
1N/A <artifactId>openam-federation-library</artifactId>
1N/A <packaging>jar</packaging>
1N/A
1N/A <!-- Build -->
1N/A <build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<index>true</index>
<manifest>
<addClasspath>true</addClasspath>
<classpathPrefix>lib/</classpathPrefix>
</manifest>
<manifestEntries>
<Specification-Title>OpenAM Federation Library</Specification-Title>
<Specification-Version>${project.version} - ${maven.build.timestamp}</Specification-Version>
<Specification-Vendor>ForgeRock</Specification-Vendor>
<Implementation-Title>OpenAM Federation Library</Implementation-Title>
<Implementation-Version>${project.version} - ${maven.build.timestamp}</Implementation-Version>
<Implementation-Vendor>ForgeRock</Implementation-Vendor>
<Built-By>${user.name}</Built-By>
<Build-Jdk>${java.version}</Build-Jdk>
<Build-Time>${maven.build.timestamp}</Build-Time>
<Version>${project.version}</Version>
<Create-On>${maven.build.timestamp}</Create-On>
<SVN-Revision>R${svn-revision.revision}</SVN-Revision>
<!-- TODO Add License to Manifest -->
<License />
</manifestEntries>
</archive>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.forgerock.openam</groupId>
<artifactId>openam-locale</artifactId>
</dependency>
<dependency>
<groupId>org.forgerock.openam</groupId>
<artifactId>openam-core</artifactId>
</dependency>
<dependency>
<groupId>org.forgerock.openam</groupId>
<artifactId>openam-xacml3-schema</artifactId>
</dependency>
<dependency>
<groupId>org.forgerock.openam</groupId>
<artifactId>openam-saml2-schema</artifactId>
</dependency>
<dependency>
<groupId>org.forgerock.openam</groupId>
<artifactId>openam-wsfederation-schema</artifactId>
</dependency>
<dependency>
<groupId>org.forgerock.openam</groupId>
<artifactId>openam-liberty-schema</artifactId>
</dependency>
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.sun.jersey</groupId>
<artifactId>jersey-bundle</artifactId>
</dependency>
<dependency>
<groupId>javax.xml</groupId>
<artifactId>jaxrpc-api</artifactId>
</dependency>
<dependency>
<groupId>external</groupId>
<artifactId>jaxrpc-impl</artifactId>
</dependency>
<dependency>
<groupId>com.sun.xml.rpc</groupId>
<artifactId>jaxrpc-spi</artifactId>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
</dependency>
<dependency>
<groupId>external</groupId>
<artifactId>esapiport</artifactId>
</dependency>
<dependency>
<groupId>external</groupId>
<artifactId>webservices-rt</artifactId>
</dependency>
</dependencies>
</project>