pom.xml revision 446fac86c061a2a8641868998b07a445d502fd94
688N/A<?xml version="1.0" encoding="UTF-8"?>
2887N/A<!--
688N/A* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
688N/A*
688N/A* Copyright 2011-2015 ForgeRock AS.
688N/A*
688N/A* The contents of this file are subject to the terms
688N/A* of the Common Development and Distribution License
688N/A* (the License). You may not use this file except in
688N/A* compliance with the License.
6982N/A*
6982N/A* You can obtain a copy of the License at
688N/A* http://forgerock.org/license/CDDLv1.0.html
688N/A* See the License for the specific language governing
688N/A* permission and limitations under the License.
688N/A*
6982N/A* When distributing Covered Code, include this CDDL
6982N/A* Header Notice in each file and include the License file
6982N/A* at http://forgerock.org/license/CDDLv1.0.html
6982N/A* If applicable, add the following below the CDDL Header,
688N/A* with the fields enclosed by brackets [] replaced by
688N/A* your own identifying information:
688N/A* "Portions Copyrighted [year] [name of copyright owner]"
688N/A*
4320N/A-->
6184N/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">
688N/A <modelVersion>4.0.0</modelVersion>
688N/A
688N/A <!-- Parent Project -->
688N/A <parent>
688N/A <groupId>org.forgerock.openam</groupId>
688N/A <artifactId>openam-authentication</artifactId>
755N/A <version>13.5.0-SNAPSHOT</version>
755N/A </parent>
755N/A
755N/A <!-- Component Definition -->
755N/A <name>OpenAM Auth Membership</name>
755N/A <description>OpenAM Authentication Membership</description>
755N/A <artifactId>openam-auth-membership</artifactId>
688N/A <packaging>jar</packaging>
688N/A
688N/A <!-- Build -->
755N/A <build>
755N/A <plugins>
755N/A <plugin>
755N/A <groupId>org.apache.maven.plugins</groupId>
755N/A <artifactId>maven-jar-plugin</artifactId>
6184N/A <configuration>
755N/A <archive>
755N/A <index>true</index>
4004N/A <manifest>
4004N/A <addClasspath>true</addClasspath>
755N/A <classpathPrefix>lib/</classpathPrefix>
755N/A </manifest>
755N/A <manifestEntries>
755N/A <Specification-Title>OpenAM Auth Membership</Specification-Title>
755N/A <Specification-Version>${project.version} - ${maven.build.timestamp}</Specification-Version>
2173N/A <Specification-Vendor>ForgeRock</Specification-Vendor>
688N/A <Implementation-Title>OpenAM Auth Membership</Implementation-Title>
785N/A <Implementation-Version>${project.version} - ${maven.build.timestamp}</Implementation-Version>
688N/A <Implementation-Vendor>ForgeRock</Implementation-Vendor>
4004N/A <Built-By>${user.name}</Built-By>
4004N/A <Build-Jdk>${java.version}</Build-Jdk>
688N/A <Build-Time>${maven.build.timestamp}</Build-Time>
688N/A <Version>${project.version}</Version>
1919N/A <Create-On>${maven.build.timestamp}</Create-On>
4004N/A <Revision>${git.short.sha1}</Revision>
4004N/A <!-- TODO Add License to Manifest -->
4004N/A <License />
4004N/A </manifestEntries>
4004N/A </archive>
4004N/A </configuration>
4004N/A </plugin>
688N/A </plugins>
1919N/A </build>
688N/A</project>
4004N/A