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