pom.xml revision dc5fdeac9087e5ffe3fa63246396fe312f990050
2N/A<?xml version="1.0" encoding="UTF-8"?>
2N/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">
2N/A <modelVersion>4.0.0</modelVersion>
2N/A
2N/A<!--
2N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
2N/A *
2N/A * Copyright (c) 2011 ForgeRock AS. All Rights Reserved
2N/A *
2N/A * The contents of this file are subject to the terms
2N/A * of the Common Development and Distribution License
2N/A * (the License). You may not use this file except in
2N/A * compliance with the License.
2N/A *
2N/A * You can obtain a copy of the License at
2N/A * http://forgerock.org/license/CDDLv1.0.html
2N/A * See the License for the specific language governing
2N/A * permission and limitations under the License.
2N/A *
2N/A * When distributing Covered Code, include this CDDL
2N/A * Header Notice in each file and include the License file
2N/A * at http://forgerock.org/license/CDDLv1.0.html
2N/A * If applicable, add the following below the CDDL Header,
2N/A * with the fields enclosed by brackets [] replaced by
2N/A * your own identifying information:
2N/A * "Portions Copyrighted [year] [name of copyright owner]"
2N/A *
2N/A -->
2N/A
2N/A <!-- Parent Project -->
2N/A <parent>
2N/A <groupId>org.forgerock</groupId>
2N/A <artifactId>openam-federation</artifactId>
2N/A <version>10.1.0-SNAPSHOT</version>
2N/A </parent>
2N/A
2N/A <!-- Component Definition -->
2N/A <name>OpenFM</name>
2N/A <description>OpenAM Federation
2N/A </description>
2N/A <artifactId>OpenFM</artifactId>
2N/A <version>10.1.0-SNAPSHOT</version>
2N/A <packaging>jar</packaging>
2N/A <organization>
2N/A <name>ForgeRock</name>
<url>http://www.forgerock.com</url>
</organization>
<!-- Build -->
<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</Specification-Title>
<Specification-Version>${project.version} - ${maven.build.timestamp}</Specification-Version>
<Specification-Vendor>ForgeRock</Specification-Vendor>
<Implementation-Title>OpenAM Federation</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></License>
</manifestEntries>
</archive>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.forgerock</groupId>
<artifactId>openam-core</artifactId>
<version>10.1.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.forgerock</groupId>
<artifactId>openam-entitlements</artifactId>
<version>10.1.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.forgerock</groupId>
<artifactId>openam-federation-library</artifactId>
<version>10.1.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>