pom.xml revision 25e37495f2591ee8f2c057f2644ed5570b4c078d
546N/A<?xml version="1.0" encoding="UTF-8"?>
546N/A<!--
963N/A* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
546N/A*
1607N/A* Copyright (c) 2012 ForgeRock Inc. All Rights Reserved
546N/A*
546N/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
546N/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*
546N/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*
546N/A-->
546N/A<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
546N/A xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
1513N/A <modelVersion>4.0.0</modelVersion>
1513N/A <!-- Parent Project -->
546N/A <parent>
546N/A <groupId>org.forgerock.openam</groupId>
546N/A <artifactId>openam</artifactId>
546N/A <version>10.1.0-SNAPSHOT</version>
546N/A </parent>
1513N/A
1513N/A <!-- Component Definition -->
1607N/A <name>OpenAM Server Auth UI</name>
1513N/A <description>OpenAM Server Auth UI</description>
1513N/A <artifactId>openam-server-auth-ui</artifactId>
1513N/A <packaging>jar</packaging>
1513N/A
1513N/A <!-- Build -->
1513N/A <build>
1513N/A <plugins>
1513N/A <plugin>
1513N/A <groupId>org.apache.maven.plugins</groupId>
1513N/A <artifactId>maven-jar-plugin</artifactId>
1513N/A <configuration>
1513N/A <archive>
1513N/A <index>true</index>
1513N/A <manifestEntries>
546N/A <Specification-Title>OpenAM Server UI</Specification-Title>
546N/A <Specification-Version>${project.version} - ${maven.build.timestamp}</Specification-Version>
1513N/A <Specification-Vendor>ForgeRock</Specification-Vendor>
1513N/A <Implementation-Title>OpenAM Server UI</Implementation-Title>
1513N/A <Implementation-Version>${project.version} - ${maven.build.timestamp}
546N/A </Implementation-Version>
1466N/A <Implementation-Vendor>ForgeRock</Implementation-Vendor>
963N/A <Built-By>${user.name}</Built-By>
851N/A <Build-Jdk>${java.version}</Build-Jdk>
851N/A <Build-Time>${maven.build.timestamp}</Build-Time>
1513N/A <Version>${project.version}</Version>
1513N/A <Create-On>${maven.build.timestamp}</Create-On>
1513N/A <SVN-Revision>R${svn-revision.revision}</SVN-Revision>
<!-- TODO Add License to Manifest -->
<License></License>
</manifestEntries>
</archive>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.forgerock.openam</groupId>
<artifactId>openam-common-auth-ui</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.forgerock.openam</groupId>
<artifactId>openam-core</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
</dependency>
<dependency>
<groupId>javax.servlet.jsp</groupId>
<artifactId>jsp-api</artifactId>
</dependency>
</dependencies>
</project>