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