pom.xml revision 240f5b67f7d955657fe57057033db90e10e209c5
5f5a64f82934d363d2548d4cb6af4fd13e974b8bChristian Maeder<?xml version="1.0" encoding="UTF-8"?>
e9458b1a7a19a63aa4c179f9ab20f4d50681c168Jens Elkner<!--
5f5a64f82934d363d2548d4cb6af4fd13e974b8bChristian Maeder* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
5f5a64f82934d363d2548d4cb6af4fd13e974b8bChristian Maeder*
98890889ffb2e8f6f722b00e265a211f13b5a861Corneliu-Claudiu Prodescu* Copyright 2011-2015 ForgeRock AS.
5f5a64f82934d363d2548d4cb6af4fd13e974b8bChristian Maeder*
5f5a64f82934d363d2548d4cb6af4fd13e974b8bChristian Maeder* The contents of this file are subject to the terms
5f5a64f82934d363d2548d4cb6af4fd13e974b8bChristian Maeder* of the Common Development and Distribution License
5f5a64f82934d363d2548d4cb6af4fd13e974b8bChristian Maeder* (the License). You may not use this file except in
5f5a64f82934d363d2548d4cb6af4fd13e974b8bChristian Maeder* compliance with the License.
5f5a64f82934d363d2548d4cb6af4fd13e974b8bChristian Maeder*
5f5a64f82934d363d2548d4cb6af4fd13e974b8bChristian Maeder* You can obtain a copy of the License at
5f5a64f82934d363d2548d4cb6af4fd13e974b8bChristian Maeder* http://forgerock.org/license/CDDLv1.0.html
e9d60751b5ff7e1c9fa2c3fd2df9c4cdb1597a63Christian Maeder* See the License for the specific language governing
5f5a64f82934d363d2548d4cb6af4fd13e974b8bChristian Maeder* permission and limitations under the License.
5f5a64f82934d363d2548d4cb6af4fd13e974b8bChristian Maeder*
bccea164bdfc2ddc3d1e20749bb5477a46eab3a6Christian Maeder* When distributing Covered Code, include this CDDL
5f5a64f82934d363d2548d4cb6af4fd13e974b8bChristian Maeder* Header Notice in each file and include the License file
5f5a64f82934d363d2548d4cb6af4fd13e974b8bChristian Maeder* at http://forgerock.org/license/CDDLv1.0.html
5f5a64f82934d363d2548d4cb6af4fd13e974b8bChristian Maeder* If applicable, add the following below the CDDL Header,
5f5a64f82934d363d2548d4cb6af4fd13e974b8bChristian Maeder* with the fields enclosed by brackets [] replaced by
5f5a64f82934d363d2548d4cb6af4fd13e974b8bChristian Maeder* your own identifying information:
3d3889e0cefcdce9b3f43c53aaa201943ac2e895Jonathan von Schroeder* "Portions Copyrighted [year] [name of copyright owner]"
5f5a64f82934d363d2548d4cb6af4fd13e974b8bChristian Maeder*
3d3889e0cefcdce9b3f43c53aaa201943ac2e895Jonathan von Schroeder-->
5f5a64f82934d363d2548d4cb6af4fd13e974b8bChristian Maeder<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">
5f5a64f82934d363d2548d4cb6af4fd13e974b8bChristian Maeder <modelVersion>4.0.0</modelVersion>
5f5a64f82934d363d2548d4cb6af4fd13e974b8bChristian Maeder
5f5a64f82934d363d2548d4cb6af4fd13e974b8bChristian Maeder <!-- Parent Project -->
5f5a64f82934d363d2548d4cb6af4fd13e974b8bChristian Maeder <parent>
5f5a64f82934d363d2548d4cb6af4fd13e974b8bChristian Maeder <groupId>org.forgerock.openam</groupId>
5f5a64f82934d363d2548d4cb6af4fd13e974b8bChristian Maeder <artifactId>openam-authentication</artifactId>
5f5a64f82934d363d2548d4cb6af4fd13e974b8bChristian Maeder <version>13.1.0-SNAPSHOT</version>
5f5a64f82934d363d2548d4cb6af4fd13e974b8bChristian Maeder </parent>
5f5a64f82934d363d2548d4cb6af4fd13e974b8bChristian Maeder
5f5a64f82934d363d2548d4cb6af4fd13e974b8bChristian Maeder <!-- Component Definition -->
bccea164bdfc2ddc3d1e20749bb5477a46eab3a6Christian Maeder <name>OpenAM Auth HOTP</name>
e9d60751b5ff7e1c9fa2c3fd2df9c4cdb1597a63Christian Maeder <description>OpenAM Authentication HOTP</description>
e9d60751b5ff7e1c9fa2c3fd2df9c4cdb1597a63Christian Maeder <artifactId>openam-auth-hotp</artifactId>
e9d60751b5ff7e1c9fa2c3fd2df9c4cdb1597a63Christian Maeder <packaging>jar</packaging>
<!-- Build -->
<build>
<plugins>
<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 HOTP</Specification-Title>
<Specification-Version>${project.version} - ${maven.build.timestamp}</Specification-Version>
<Specification-Vendor>ForgeRock</Specification-Vendor>
<Implementation-Title>OpenAM Auth HOTP</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>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>javax.mail</groupId>
<artifactId>mail</artifactId>
</dependency>
</dependencies>
</project>