pom.xml revision f49c6dcced09ef9c8b981cc2c05c6c3eb2f40c5b
1N/A<?xml version="1.0" encoding="UTF-8"?>
1N/A<!--
1N/A* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
1N/A*
1N/A* Copyright (c) 2011-2013 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<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 <!-- Parent Project -->
1N/A <parent>
1N/A <groupId>org.forgerock.openam</groupId>
1N/A <artifactId>openam-diagnostics</artifactId>
1N/A <version>11.0.0-SNAPSHOT</version>
1N/A </parent>
1N/A
1N/A <!-- Component Definition -->
1N/A <name>OpenAM Diagnostics Base</name>
1N/A <description>OpenAM Diagnostic Base Components</description>
1N/A <artifactId>openam-diagnostics-base</artifactId>
1N/A <packaging>jar</packaging>
1N/A
1N/A <!-- Component Properties -->
1N/A <properties>
1N/A <!-- Main Bootstrap ClassName for Jar. -->
1N/A <main.bootstrap.classname>com.sun.identity.diagnostic.base.core.DiagnosticToolMain</main.bootstrap.classname>
1N/A </properties>
1N/A
1N/A <!-- Build -->
1N/A <build>
1N/A <plugins>
1N/A <plugin>
1N/A <groupId>org.apache.maven.plugins</groupId>
1N/A <artifactId>maven-jar-plugin</artifactId>
1N/A <configuration>
1N/A <archive>
1N/A <index>true</index>
<manifest>
<addClasspath>true</addClasspath>
<classpathPrefix>lib/</classpathPrefix>
</manifest>
<manifestEntries>
<Specification-Title>OpenAM Diagnostics</Specification-Title>
<Specification-Version>${project.version} - ${maven.build.timestamp}</Specification-Version>
<Specification-Vendor>ForgeRock</Specification-Vendor>
<Implementation-Title>OpenAM Diagnostics</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 />
<Main-Class>${main.bootstrap.classname}</Main-Class>
</manifestEntries>
</archive>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.forgerock.openam</groupId>
<artifactId>openam-core</artifactId>
</dependency>
<dependency>
<groupId>org.forgerock.openam</groupId>
<artifactId>openam-shared</artifactId>
</dependency>
<dependency>
<groupId>org.forgerock.openam</groupId>
<artifactId>openam-diagnostics-schema</artifactId>
</dependency>
</dependencies>
</project>