pom.xml revision 112d5e49ae4f0d438566e854e2f4f0d19799a617
915c848a88eb557ea392ee7f2fe90ade2edd1fd1Bryan Cantrill<?xml version="1.0" encoding="UTF-8"?>
915c848a88eb557ea392ee7f2fe90ade2edd1fd1Bryan Cantrill<!--
915c848a88eb557ea392ee7f2fe90ade2edd1fd1Bryan Cantrill* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
915c848a88eb557ea392ee7f2fe90ade2edd1fd1Bryan Cantrill*
915c848a88eb557ea392ee7f2fe90ade2edd1fd1Bryan Cantrill* Copyright (c) 2012-2013 ForgeRock AS. All Rights Reserved
915c848a88eb557ea392ee7f2fe90ade2edd1fd1Bryan Cantrill*
915c848a88eb557ea392ee7f2fe90ade2edd1fd1Bryan Cantrill* The contents of this file are subject to the terms
915c848a88eb557ea392ee7f2fe90ade2edd1fd1Bryan Cantrill* of the Common Development and Distribution License
915c848a88eb557ea392ee7f2fe90ade2edd1fd1Bryan Cantrill* (the License). You may not use this file except in
915c848a88eb557ea392ee7f2fe90ade2edd1fd1Bryan Cantrill* compliance with the License.
915c848a88eb557ea392ee7f2fe90ade2edd1fd1Bryan Cantrill*
915c848a88eb557ea392ee7f2fe90ade2edd1fd1Bryan Cantrill* You can obtain a copy of the License at
915c848a88eb557ea392ee7f2fe90ade2edd1fd1Bryan Cantrill* http://forgerock.org/license/CDDLv1.0.html
915c848a88eb557ea392ee7f2fe90ade2edd1fd1Bryan Cantrill* See the License for the specific language governing
915c848a88eb557ea392ee7f2fe90ade2edd1fd1Bryan Cantrill* permission and limitations under the License.
915c848a88eb557ea392ee7f2fe90ade2edd1fd1Bryan Cantrill*
915c848a88eb557ea392ee7f2fe90ade2edd1fd1Bryan Cantrill* When distributing Covered Code, include this CDDL
915c848a88eb557ea392ee7f2fe90ade2edd1fd1Bryan Cantrill* Header Notice in each file and include the License file
915c848a88eb557ea392ee7f2fe90ade2edd1fd1Bryan Cantrill* at http://forgerock.org/license/CDDLv1.0.html
915c848a88eb557ea392ee7f2fe90ade2edd1fd1Bryan Cantrill* If applicable, add the following below the CDDL Header,
915c848a88eb557ea392ee7f2fe90ade2edd1fd1Bryan Cantrill* with the fields enclosed by brackets [] replaced by
915c848a88eb557ea392ee7f2fe90ade2edd1fd1Bryan Cantrill* your own identifying information:
915c848a88eb557ea392ee7f2fe90ade2edd1fd1Bryan Cantrill* "Portions Copyrighted [year] [name of copyright owner]"
915c848a88eb557ea392ee7f2fe90ade2edd1fd1Bryan Cantrill*
-->
<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>
<!-- Parent Project -->
<parent>
<groupId>org.forgerock.openam</groupId>
<artifactId>openam-cli</artifactId>
<version>11.0.0-SNAPSHOT</version>
</parent>
<!-- Component Definition -->
<name>OpenAM CLI Definitions</name>
<description>OpenAM Command Line Definitions</description>
<artifactId>openam-cli-definitions</artifactId>
<packaging>jar</packaging>
<!-- Build -->
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<index>true</index>
<manifestEntries>
<Specification-Title>OpenAM CLI Definitions</Specification-Title>
<Specification-Version>${project.version} - ${maven.build.timestamp}</Specification-Version>
<Specification-Vendor>ForgeRock</Specification-Vendor>
<Implementation-Title>OpenAM CLI Definitions</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>
</project>