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