pom.xml revision dfc4e0fc3052835b2a069aa9d869fa1161c33fe6
3860N/A<?xml version="1.0" encoding="UTF-8"?>
3860N/A<!--
3860N/A* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
3860N/A*
3860N/A* Copyright (c) 2012-2013 ForgeRock Inc. All Rights Reserved
3860N/A*
3860N/A* The contents of this file are subject to the terms
3860N/A* of the Common Development and Distribution License
3860N/A* (the License). You may not use this file except in
3860N/A* compliance with the License.
3860N/A*
3860N/A* You can obtain a copy of the License at
3860N/A* http://forgerock.org/license/CDDLv1.0.html
3860N/A* See the License for the specific language governing
3860N/A* permission and limitations under the License.
3860N/A*
3860N/A* When distributing Covered Code, include this CDDL
3860N/A* Header Notice in each file and include the License file
3860N/A* at http://forgerock.org/license/CDDLv1.0.html
3860N/A* If applicable, add the following below the CDDL Header,
3860N/A* with the fields enclosed by brackets [] replaced by
3860N/A* your own identifying information:
3860N/A* "Portions Copyrighted [year] [name of copyright owner]"
3860N/A*
4103N/A-->
5372N/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">
3860N/A <modelVersion>4.0.0</modelVersion>
3860N/A <!-- Parent Project -->
3860N/A <parent>
3860N/A <groupId>org.forgerock.openam</groupId>
3860N/A <artifactId>openam-tools</artifactId>
3860N/A <version>10.2.0-SNAPSHOT</version>
3860N/A </parent>
3860N/A
3860N/A <!-- Component Definition -->
3860N/A <name>OpenAM Install Tools Launcher</name>
3860N/A <description>OpenAM Install Tools Launcher</description>
3860N/A <artifactId>openam-installtools-launcher</artifactId>
3860N/A <packaging>jar</packaging>
3860N/A
3860N/A <!-- Build -->
3860N/A <build>
4124N/A <plugins>
3860N/A <plugin>
3860N/A <groupId>org.apache.maven.plugins</groupId>
4124N/A <artifactId>maven-jar-plugin</artifactId>
4124N/A <configuration>
3860N/A <archive>
3860N/A <index>true</index>
3860N/A <manifest>
4124N/A <addClasspath>true</addClasspath>
4124N/A <classpathPrefix>lib/</classpathPrefix>
4124N/A </manifest>
4124N/A <manifestEntries>
4124N/A <Specification-Title>OpenAM Install Tools Launcher</Specification-Title>
4124N/A <Specification-Version>${project.version} - ${maven.build.timestamp}</Specification-Version>
3860N/A <Specification-Vendor>ForgeRock</Specification-Vendor>
3860N/A <Implementation-Title>OpenAM Install Tools Launcher</Implementation-Title>
4124N/A <Implementation-Version>${project.version} - ${maven.build.timestamp}
3860N/A </Implementation-Version>
3860N/A <Implementation-Vendor>ForgeRock</Implementation-Vendor>
4124N/A <Built-By>${user.name}</Built-By>
3860N/A <Build-Jdk>${java.version}</Build-Jdk>
3860N/A <Build-Time>${maven.build.timestamp}</Build-Time>
3860N/A <Version>${project.version}</Version>
3860N/A <Create-On>${maven.build.timestamp}</Create-On>
3860N/A <SVN-Revision>R${svn-revision.revision}</SVN-Revision>
3860N/A <!-- TODO Add License to Manifest -->
3860N/A <License />
3860N/A </manifestEntries>
3860N/A </archive>
3860N/A </configuration>
3860N/A </plugin>
3860N/A </plugins>
3860N/A </build>
3860N/A</project>
3860N/A
3860N/A