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