pom.xml revision 6a901ebad73ff7eae18de9ed218aa15187babca0
80802511792d4e59a4ac67ad19677009d332b37dBruno Lavit<?xml version="1.0" encoding="UTF-8"?>
80802511792d4e59a4ac67ad19677009d332b37dBruno Lavit<!--
80802511792d4e59a4ac67ad19677009d332b37dBruno Lavit* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
80802511792d4e59a4ac67ad19677009d332b37dBruno Lavit*
b34025e1e963e60c0f81c01af0f25f1984b9ca54James Phillpotts* Copyright (c) 2013 ForgeRock AS. All Rights Reserved
80802511792d4e59a4ac67ad19677009d332b37dBruno Lavit*
80802511792d4e59a4ac67ad19677009d332b37dBruno Lavit* The contents of this file are subject to the terms
80802511792d4e59a4ac67ad19677009d332b37dBruno Lavit* of the Common Development and Distribution License
685810e390056c123842842f5104daa3179cf2c9Phill Cunnington* (the License). You may not use this file except in
0d29d2c9c206eb1652fa951dd55bcc0cfa4b48feNeil Madden* compliance with the License.
685810e390056c123842842f5104daa3179cf2c9Phill Cunnington*
685810e390056c123842842f5104daa3179cf2c9Phill Cunnington* You can obtain a copy of the License at
80802511792d4e59a4ac67ad19677009d332b37dBruno Lavit* http://forgerock.org/license/CDDLv1.0.html
b34025e1e963e60c0f81c01af0f25f1984b9ca54James Phillpotts* See the License for the specific language governing
b34025e1e963e60c0f81c01af0f25f1984b9ca54James Phillpotts* permission and limitations under the License.
685810e390056c123842842f5104daa3179cf2c9Phill Cunnington*
685810e390056c123842842f5104daa3179cf2c9Phill Cunnington* When distributing Covered Code, include this CDDL
80802511792d4e59a4ac67ad19677009d332b37dBruno Lavit* Header Notice in each file and include the License file
685810e390056c123842842f5104daa3179cf2c9Phill Cunnington* at http://forgerock.org/license/CDDLv1.0.html
80802511792d4e59a4ac67ad19677009d332b37dBruno Lavit* If applicable, add the following below the CDDL Header,
80802511792d4e59a4ac67ad19677009d332b37dBruno Lavit* with the fields enclosed by brackets [] replaced by
80802511792d4e59a4ac67ad19677009d332b37dBruno Lavit* your own identifying information:
80802511792d4e59a4ac67ad19677009d332b37dBruno Lavit* "Portions Copyrighted [year] [name of copyright owner]"
80802511792d4e59a4ac67ad19677009d332b37dBruno Lavit*
80802511792d4e59a4ac67ad19677009d332b37dBruno Lavit-->
80802511792d4e59a4ac67ad19677009d332b37dBruno Lavit<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">
80802511792d4e59a4ac67ad19677009d332b37dBruno Lavit <modelVersion>4.0.0</modelVersion>
4f39fae2f8671f7389a26412a6203c455b80f06dDavid Luna
80802511792d4e59a4ac67ad19677009d332b37dBruno Lavit <!-- Parent Project -->
80802511792d4e59a4ac67ad19677009d332b37dBruno Lavit <parent>
80802511792d4e59a4ac67ad19677009d332b37dBruno Lavit <groupId>org.forgerock.openam</groupId>
80802511792d4e59a4ac67ad19677009d332b37dBruno Lavit <artifactId>openam-authentication</artifactId>
80802511792d4e59a4ac67ad19677009d332b37dBruno Lavit <version>12.0.0-SNAPSHOT</version>
80802511792d4e59a4ac67ad19677009d332b37dBruno Lavit </parent>
80802511792d4e59a4ac67ad19677009d332b37dBruno Lavit
80802511792d4e59a4ac67ad19677009d332b37dBruno Lavit <!-- Component Definition -->
80802511792d4e59a4ac67ad19677009d332b37dBruno Lavit <name>OpenAM Auth Persistent Cookie</name>
80802511792d4e59a4ac67ad19677009d332b37dBruno Lavit <description>OpenAM Authentication Persistent</description>
80802511792d4e59a4ac67ad19677009d332b37dBruno Lavit <artifactId>openam-auth-persistentcookie</artifactId>
80802511792d4e59a4ac67ad19677009d332b37dBruno Lavit <packaging>jar</packaging>
80802511792d4e59a4ac67ad19677009d332b37dBruno Lavit
80802511792d4e59a4ac67ad19677009d332b37dBruno Lavit <build>
685810e390056c123842842f5104daa3179cf2c9Phill Cunnington <plugins>
80802511792d4e59a4ac67ad19677009d332b37dBruno Lavit <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 Persistent Cookie</Specification-Title>
<Specification-Version>${project.version} - ${maven.build.timestamp}</Specification-Version>
<Specification-Vendor>ForgeRock</Specification-Vendor>
<Implementation-Title>OpenAM Auth Persistent Cookie</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>
<SVN-Revision>R${svn-revision.revision}</SVN-Revision>
<!-- TODO Add License to Manifest -->
<License />
</manifestEntries>
</archive>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.forgerock.commons</groupId>
<artifactId>forgerock-jaspi-jwt-session-module</artifactId>
</dependency>
<dependency>
<groupId>org.forgerock.openam</groupId>
<artifactId>openam-auth-common</artifactId>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
</dependency>
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-all</artifactId>
</dependency>
</dependencies>
</project>