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