pom.xml revision dfc4e0fc3052835b2a069aa9d869fa1161c33fe6
10139N/A<?xml version="1.0" encoding="UTF-8"?>
10139N/A<!--
10139N/A* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
10139N/A*
10139N/A* Copyright (c) 2012-2013 ForgeRock AS. All Rights Reserved
10139N/A*
10139N/A* The contents of this file are subject to the terms
10139N/A* of the Common Development and Distribution License
10139N/A* (the License). You may not use this file except in
10139N/A* compliance with the License.
10139N/A*
10139N/A* You can obtain a copy of the License at
10139N/A* http://forgerock.org/license/CDDLv1.0.html
10280N/A* See the License for the specific language governing
10139N/A* permission and limitations under the License.
10139N/A*
10139N/A* When distributing Covered Code, include this CDDL
10139N/A* Header Notice in each file and include the License file
10280N/A* at http://forgerock.org/license/CDDLv1.0.html
10139N/A* If applicable, add the following below the CDDL Header,
10139N/A* with the fields enclosed by brackets [] replaced by
10142N/A* your own identifying information:
10142N/A* "Portions Copyrighted [year] [name of copyright owner]"
10244N/A*
10139N/A-->
10139N/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">
10139N/A <modelVersion>4.0.0</modelVersion>
10139N/A <!-- Parent Project -->
10139N/A <parent>
10139N/A <groupId>org.forgerock.openam</groupId>
10139N/A <artifactId>openam</artifactId>
10139N/A <version>10.2.0-SNAPSHOT</version>
10139N/A </parent>
10139N/A
10139N/A <!-- Component Definition -->
10139N/A <name>OpenAM Common Auth UI</name>
10139N/A <description>OpenAM Common Auth UI</description>
10139N/A <artifactId>openam-common-auth-ui</artifactId>
10139N/A <packaging>jar</packaging>
10139N/A
10139N/A <!-- Build -->
10139N/A <build>
10139N/A <plugins>
10139N/A <plugin>
10139N/A <groupId>org.apache.maven.plugins</groupId>
10139N/A <artifactId>maven-jar-plugin</artifactId>
10139N/A <configuration>
10139N/A <archive>
10139N/A <index>true</index>
10139N/A <manifestEntries>
10139N/A <Specification-Title>OpenAM Common UI</Specification-Title>
10139N/A <Specification-Version>${project.version} - ${maven.build.timestamp}</Specification-Version>
10139N/A <Specification-Vendor>ForgeRock</Specification-Vendor>
10139N/A <Implementation-Title>OpenAM Common UI</Implementation-Title>
10139N/A <Implementation-Version>${project.version} - ${maven.build.timestamp}
10139N/A </Implementation-Version>
10139N/A <Implementation-Vendor>ForgeRock</Implementation-Vendor>
10139N/A <Built-By>${user.name}</Built-By>
10139N/A <Build-Jdk>${java.version}</Build-Jdk>
10139N/A <Build-Time>${maven.build.timestamp}</Build-Time>
10139N/A <Version>${project.version}</Version>
10139N/A <Create-On>${maven.build.timestamp}</Create-On>
10139N/A <SVN-Revision>R${svn-revision.revision}</SVN-Revision>
10139N/A <!-- TODO Add License to Manifest -->
10139N/A <License />
10139N/A </manifestEntries>
10139N/A </archive>
10139N/A </configuration>
10139N/A </plugin>
10139N/A </plugins>
10139N/A </build>
10139N/A
10139N/A <dependencies>
10139N/A <dependency>
10139N/A <groupId>javax.servlet</groupId>
10139N/A <artifactId>servlet-api</artifactId>
10139N/A </dependency>
10139N/A <dependency>
10139N/A <groupId>javax.servlet.jsp</groupId>
10139N/A <artifactId>jsp-api</artifactId>
10139N/A </dependency>
10139N/A <dependency>
10139N/A <groupId>org.forgerock.openam</groupId>
10139N/A <artifactId>openam-core</artifactId>
10139N/A <!-- Using provided scope here so this module can be used with both DAS and on the serverside -->
10139N/A <scope>provided</scope>
10139N/A </dependency>
10139N/A </dependencies>
10139N/A
10139N/A</project>
10139N/A
10139N/A