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