pom.xml revision 4e09b43d07f5b34fe78ca10ece472ee6cbfea35c
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 2011-2015 ForgeRock AS.
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.
80802511792d4e59a4ac67ad19677009d332b37dBruno Lavit*
685810e390056c123842842f5104daa3179cf2c9Phill Cunnington* When distributing Covered Code, include this CDDL
685810e390056c123842842f5104daa3179cf2c9Phill Cunnington* Header Notice in each file and include the License file
80802511792d4e59a4ac67ad19677009d332b37dBruno Lavit* at http://forgerock.org/license/CDDLv1.0.html
685810e390056c123842842f5104daa3179cf2c9Phill Cunnington* 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>
80802511792d4e59a4ac67ad19677009d332b37dBruno Lavit
0d29d2c9c206eb1652fa951dd55bcc0cfa4b48feNeil Madden <!-- Parent Project -->
80802511792d4e59a4ac67ad19677009d332b37dBruno Lavit <parent>
80802511792d4e59a4ac67ad19677009d332b37dBruno Lavit <groupId>org.forgerock.openam</groupId>
80802511792d4e59a4ac67ad19677009d332b37dBruno Lavit <artifactId>openam-authentication</artifactId>
80802511792d4e59a4ac67ad19677009d332b37dBruno Lavit <version>13.0.0-SNAPSHOT</version>
80802511792d4e59a4ac67ad19677009d332b37dBruno Lavit </parent>
80802511792d4e59a4ac67ad19677009d332b37dBruno Lavit
80802511792d4e59a4ac67ad19677009d332b37dBruno Lavit <!-- Component Definition -->
80802511792d4e59a4ac67ad19677009d332b37dBruno Lavit <name>OpenAM Auth OAUTH2</name>
80802511792d4e59a4ac67ad19677009d332b37dBruno Lavit <description>OpenAM Authentication OAUTH2</description>
80802511792d4e59a4ac67ad19677009d332b37dBruno Lavit <artifactId>openam-auth-oauth2</artifactId>
80802511792d4e59a4ac67ad19677009d332b37dBruno Lavit <packaging>jar</packaging>
80802511792d4e59a4ac67ad19677009d332b37dBruno Lavit
80802511792d4e59a4ac67ad19677009d332b37dBruno Lavit <!-- Build -->
80802511792d4e59a4ac67ad19677009d332b37dBruno Lavit <build>
80802511792d4e59a4ac67ad19677009d332b37dBruno Lavit <plugins>
80802511792d4e59a4ac67ad19677009d332b37dBruno Lavit <plugin>
80802511792d4e59a4ac67ad19677009d332b37dBruno Lavit <groupId>org.apache.maven.plugins</groupId>
80802511792d4e59a4ac67ad19677009d332b37dBruno Lavit <artifactId>maven-jar-plugin</artifactId>
685810e390056c123842842f5104daa3179cf2c9Phill Cunnington <configuration>
80802511792d4e59a4ac67ad19677009d332b37dBruno Lavit <archive>
80802511792d4e59a4ac67ad19677009d332b37dBruno Lavit <index>true</index>
80802511792d4e59a4ac67ad19677009d332b37dBruno Lavit <manifest>
80802511792d4e59a4ac67ad19677009d332b37dBruno Lavit <addClasspath>true</addClasspath>
80802511792d4e59a4ac67ad19677009d332b37dBruno Lavit <classpathPrefix>lib/</classpathPrefix>
</manifest>
<manifestEntries>
<Specification-Title>OpenAM Auth OAUTH2</Specification-Title>
<Specification-Version>${project.version} - ${maven.build.timestamp}</Specification-Version>
<Specification-Vendor>ForgeRock</Specification-Vendor>
<Implementation-Title>OpenAM Auth OAUTH2</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>
<Revision>${git.short.sha1}</Revision>
<!-- TODO Add License to Manifest -->
<License />
</manifestEntries>
</archive>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.forgerock.openam</groupId>
<artifactId>openam-auth-common</artifactId>
</dependency>
<dependency>
<groupId>org.forgerock.openam</groupId>
<artifactId>openam-auth-oidc</artifactId>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.json</groupId>
<artifactId>json</artifactId>
</dependency>
<dependency>
<groupId>external</groupId>
<artifactId>esapiport</artifactId>
</dependency>
</dependencies>
</project>