pom.xml revision 25e37495f2591ee8f2c057f2644ed5570b4c078d
509N/A<?xml version="1.0" encoding="UTF-8"?>
509N/A<!--
509N/A* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
509N/A*
943N/A* Copyright (c) 2012 ForgeRock Inc. All Rights Reserved
509N/A*
509N/A* The contents of this file are subject to the terms
919N/A* of the Common Development and Distribution License
919N/A* (the License). You may not use this file except in
919N/A* compliance with the License.
919N/A*
919N/A* You can obtain a copy of the License at
919N/A* http://forgerock.org/license/CDDLv1.0.html
919N/A* See the License for the specific language governing
919N/A* permission and limitations under the License.
919N/A*
919N/A* When distributing Covered Code, include this CDDL
919N/A* Header Notice in each file and include the License file
919N/A* at http://forgerock.org/license/CDDLv1.0.html
919N/A* If applicable, add the following below the CDDL Header,
919N/A* with the fields enclosed by brackets [] replaced by
919N/A* your own identifying information:
919N/A* "Portions Copyrighted [year] [name of copyright owner]"
919N/A*
509N/A-->
509N/A<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
509N/A xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
509N/A <modelVersion>4.0.0</modelVersion>
509N/A <!-- Parent Project -->
509N/A <parent>
509N/A <groupId>org.forgerock.openam</groupId>
509N/A <artifactId>openam</artifactId>
851N/A <version>10.1.0-SNAPSHOT</version>
851N/A </parent>
851N/A
851N/A <!-- Component Definition -->
851N/A <name>OpenAM Common Auth UI</name>
<description>OpenAM Common Auth UI</description>
<artifactId>openam-common-auth-ui</artifactId>
<packaging>jar</packaging>
<!-- Build -->
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<index>true</index>
<manifestEntries>
<Specification-Title>OpenAM Common UI</Specification-Title>
<Specification-Version>${project.version} - ${maven.build.timestamp}</Specification-Version>
<Specification-Vendor>ForgeRock</Specification-Vendor>
<Implementation-Title>OpenAM Common UI</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>
<SVN-Revision>R${svn-revision.revision}</SVN-Revision>
<!-- TODO Add License to Manifest -->
<License></License>
</manifestEntries>
</archive>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
</dependency>
<dependency>
<groupId>javax.servlet.jsp</groupId>
<artifactId>jsp-api</artifactId>
</dependency>
<dependency>
<groupId>org.forgerock.openam</groupId>
<artifactId>openam-core</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
</dependencies>
</project>