pom.xml revision 0a1321c65c6e6ce8102305cd94e56ffc28d59f3e
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-RC8</version>
b1352070d318187b41b088da3533692976f3f225Alan Wright </parent>
b1352070d318187b41b088da3533692976f3f225Alan Wright
b1352070d318187b41b088da3533692976f3f225Alan Wright <!-- Component Definition -->
b1352070d318187b41b088da3533692976f3f225Alan Wright <name>OpenAM Auth Radius</name>
b1352070d318187b41b088da3533692976f3f225Alan Wright <description>OpenAM Authentication Radius</description>
b1352070d318187b41b088da3533692976f3f225Alan Wright <artifactId>openam-auth-radius</artifactId>
b1352070d318187b41b088da3533692976f3f225Alan Wright <packaging>jar</packaging>
b1352070d318187b41b088da3533692976f3f225Alan Wright
b1352070d318187b41b088da3533692976f3f225Alan Wright <dependencies>
bbf6f00c25b6a2bed23c35eac6d62998ecdb338cJordan Brown <dependency>
bbf6f00c25b6a2bed23c35eac6d62998ecdb338cJordan Brown <groupId>org.testng</groupId>
bbf6f00c25b6a2bed23c35eac6d62998ecdb338cJordan Brown <artifactId>testng</artifactId>
bbf6f00c25b6a2bed23c35eac6d62998ecdb338cJordan Brown </dependency>
bbf6f00c25b6a2bed23c35eac6d62998ecdb338cJordan Brown <dependency>
bbf6f00c25b6a2bed23c35eac6d62998ecdb338cJordan Brown <groupId>org.forgerock.openam</groupId>
b1352070d318187b41b088da3533692976f3f225Alan Wright <artifactId>openam-radius-common</artifactId>
bbf6f00c25b6a2bed23c35eac6d62998ecdb338cJordan Brown </dependency>
037cac007b685e7ea79f6ef7e8e62bfd342a4d56joyce mcintosh </dependencies>
b1352070d318187b41b088da3533692976f3f225Alan Wright
da6c28aaf62fa55f0fdb8004aa40f88f23bf53f0amw <!-- Build -->
bbf6f00c25b6a2bed23c35eac6d62998ecdb338cJordan Brown <build>
bbf6f00c25b6a2bed23c35eac6d62998ecdb338cJordan Brown <plugins>
bbf6f00c25b6a2bed23c35eac6d62998ecdb338cJordan Brown <plugin>
da6c28aaf62fa55f0fdb8004aa40f88f23bf53f0amw <groupId>org.apache.maven.plugins</groupId>
da6c28aaf62fa55f0fdb8004aa40f88f23bf53f0amw <artifactId>maven-jar-plugin</artifactId>
da6c28aaf62fa55f0fdb8004aa40f88f23bf53f0amw <configuration>
da6c28aaf62fa55f0fdb8004aa40f88f23bf53f0amw <archive>
da6c28aaf62fa55f0fdb8004aa40f88f23bf53f0amw <index>true</index>
da6c28aaf62fa55f0fdb8004aa40f88f23bf53f0amw <manifest>
da6c28aaf62fa55f0fdb8004aa40f88f23bf53f0amw <addClasspath>true</addClasspath>
da6c28aaf62fa55f0fdb8004aa40f88f23bf53f0amw <classpathPrefix>lib/</classpathPrefix>
da6c28aaf62fa55f0fdb8004aa40f88f23bf53f0amw </manifest>
da6c28aaf62fa55f0fdb8004aa40f88f23bf53f0amw <manifestEntries>
da6c28aaf62fa55f0fdb8004aa40f88f23bf53f0amw <Specification-Title>OpenAM Auth Radius</Specification-Title>
da6c28aaf62fa55f0fdb8004aa40f88f23bf53f0amw <Specification-Version>${project.version} - ${maven.build.timestamp}</Specification-Version>
da6c28aaf62fa55f0fdb8004aa40f88f23bf53f0amw <Specification-Vendor>ForgeRock</Specification-Vendor>
da6c28aaf62fa55f0fdb8004aa40f88f23bf53f0amw <Implementation-Title>OpenAM Auth Radius</Implementation-Title>
da6c28aaf62fa55f0fdb8004aa40f88f23bf53f0amw <Implementation-Version>${project.version} - ${maven.build.timestamp}</Implementation-Version>
bbf6f00c25b6a2bed23c35eac6d62998ecdb338cJordan Brown <Implementation-Vendor>ForgeRock</Implementation-Vendor>
da6c28aaf62fa55f0fdb8004aa40f88f23bf53f0amw <Built-By>${user.name}</Built-By>
7b59d02d2a384be9a08087b14defadd214b3c1ddjb <Build-Jdk>${java.version}</Build-Jdk>
faa1795a28a5c712eed6d0a3f84d98c368a316c6jb <Build-Time>${maven.build.timestamp}</Build-Time>
faa1795a28a5c712eed6d0a3f84d98c368a316c6jb <Version>${project.version}</Version>
b89a8333f5e1f75ec0c269b22524bd2eccb972banatalie li - Sun Microsystems - Irvine United States <Create-On>${maven.build.timestamp}</Create-On>
b89a8333f5e1f75ec0c269b22524bd2eccb972banatalie li - Sun Microsystems - Irvine United States <Revision>${git.short.sha1}</Revision>
faa1795a28a5c712eed6d0a3f84d98c368a316c6jb <!-- TODO Add License to Manifest -->
faa1795a28a5c712eed6d0a3f84d98c368a316c6jb <License />
eb1d736b1c19f6abeee90c921a9320b67fedd016afshin salek ardakani - Sun Microsystems - Irvine United States </manifestEntries>
eb1d736b1c19f6abeee90c921a9320b67fedd016afshin salek ardakani - Sun Microsystems - Irvine United States </archive>
eb1d736b1c19f6abeee90c921a9320b67fedd016afshin salek ardakani - Sun Microsystems - Irvine United States </configuration>
faa1795a28a5c712eed6d0a3f84d98c368a316c6jb </plugin>
eb1d736b1c19f6abeee90c921a9320b67fedd016afshin salek ardakani - Sun Microsystems - Irvine United States </plugins>
faa1795a28a5c712eed6d0a3f84d98c368a316c6jb </build>
faa1795a28a5c712eed6d0a3f84d98c368a316c6jb</project>
faa1795a28a5c712eed6d0a3f84d98c368a316c6jb