pom.xml revision 70ddbef2d2c639b10fd8b86bafe1e8e7ffdfa4ef
41cff438a611c7aac5b2a2c3e395fc5b88d68230Till Mossakowski<?xml version="1.0" encoding="UTF-8"?>
41cff438a611c7aac5b2a2c3e395fc5b88d68230Till Mossakowski<!--
41cff438a611c7aac5b2a2c3e395fc5b88d68230Till Mossakowski* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
41cff438a611c7aac5b2a2c3e395fc5b88d68230Till Mossakowski*
41cff438a611c7aac5b2a2c3e395fc5b88d68230Till Mossakowski* Copyright 2011-2015 ForgeRock AS.
41cff438a611c7aac5b2a2c3e395fc5b88d68230Till Mossakowski*
41cff438a611c7aac5b2a2c3e395fc5b88d68230Till Mossakowski* The contents of this file are subject to the terms
41cff438a611c7aac5b2a2c3e395fc5b88d68230Till Mossakowski* of the Common Development and Distribution License
41cff438a611c7aac5b2a2c3e395fc5b88d68230Till Mossakowski* (the License). You may not use this file except in
41cff438a611c7aac5b2a2c3e395fc5b88d68230Till Mossakowski* compliance with the License.
41cff438a611c7aac5b2a2c3e395fc5b88d68230Till Mossakowski*
41cff438a611c7aac5b2a2c3e395fc5b88d68230Till Mossakowski* You can obtain a copy of the License at
41cff438a611c7aac5b2a2c3e395fc5b88d68230Till Mossakowski* http://forgerock.org/license/CDDLv1.0.html
41cff438a611c7aac5b2a2c3e395fc5b88d68230Till Mossakowski* See the License for the specific language governing
41cff438a611c7aac5b2a2c3e395fc5b88d68230Till Mossakowski* permission and limitations under the License.
41cff438a611c7aac5b2a2c3e395fc5b88d68230Till Mossakowski*
41cff438a611c7aac5b2a2c3e395fc5b88d68230Till Mossakowski* When distributing Covered Code, include this CDDL
41cff438a611c7aac5b2a2c3e395fc5b88d68230Till Mossakowski* Header Notice in each file and include the License file
41cff438a611c7aac5b2a2c3e395fc5b88d68230Till Mossakowski* at http://forgerock.org/license/CDDLv1.0.html
41cff438a611c7aac5b2a2c3e395fc5b88d68230Till Mossakowski* If applicable, add the following below the CDDL Header,
41cff438a611c7aac5b2a2c3e395fc5b88d68230Till Mossakowski* with the fields enclosed by brackets [] replaced by
41cff438a611c7aac5b2a2c3e395fc5b88d68230Till Mossakowski* your own identifying information:
41cff438a611c7aac5b2a2c3e395fc5b88d68230Till Mossakowski* "Portions Copyrighted [year] [name of copyright owner]"
4918e2f622cfb96f9a57b7617cd18ca7e4f8b5d4Christian Maeder*
-->
<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-authentication</artifactId>
<version>13.0.0-RC7</version>
</parent>
<!-- Component Definition -->
<name>OpenAM Auth Membership</name>
<description>OpenAM Authentication Membership</description>
<artifactId>openam-auth-membership</artifactId>
<packaging>jar</packaging>
<!-- 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 Auth Membership</Specification-Title>
<Specification-Version>${project.version} - ${maven.build.timestamp}</Specification-Version>
<Specification-Vendor>ForgeRock</Specification-Vendor>
<Implementation-Title>OpenAM Auth Membership</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>
<Revision>${git.short.sha1}</Revision>
<!-- TODO Add License to Manifest -->
<License />
</manifestEntries>
</archive>
</configuration>
</plugin>
</plugins>
</build>
</project>