pom.xml revision d7acdbdfb47e51f588dbf7bafc4706000a44aca5
3941N/A<?xml version="1.0" encoding="UTF-8"?>
3941N/A<!--
3941N/A* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
3941N/A*
3941N/A* Copyright (c) 2011-2013 ForgeRock AS. All Rights Reserved
3941N/A*
3941N/A* The contents of this file are subject to the terms
3941N/A* of the Common Development and Distribution License
3941N/A* (the License). You may not use this file except in
3941N/A* compliance with the License.
3941N/A*
3941N/A* You can obtain a copy of the License at
3941N/A* http://forgerock.org/license/CDDLv1.0.html
3941N/A* See the License for the specific language governing
3941N/A* permission and limitations under the License.
3941N/A*
3941N/A* When distributing Covered Code, include this CDDL
3941N/A* Header Notice in each file and include the License file
3941N/A* at http://forgerock.org/license/CDDLv1.0.html
3941N/A* If applicable, add the following below the CDDL Header,
3941N/A* with the fields enclosed by brackets [] replaced by
3941N/A* your own identifying information:
3941N/A* "Portions Copyrighted [year] [name of copyright owner]"
3941N/A*
3941N/A-->
3941N/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">
3941N/A <modelVersion>4.0.0</modelVersion>
3941N/A
3941N/A <!-- Parent Project -->
3941N/A <parent>
3941N/A <groupId>org.forgerock.openam</groupId>
3941N/A <artifactId>openam-distribution</artifactId>
3941N/A <version>11.0.0-SNAPSHOT</version>
3941N/A </parent>
3941N/A
3941N/A <!-- Component Definition -->
3941N/A <name>OpenAM Distribution ssoAdminTools</name>
3941N/A <description>OpenAM Distribution SSO Admin Tools Kit.
</description>
<artifactId>openam-distribution-ssoadmintools</artifactId>
<packaging>pom</packaging>
<!-- Build -->
<build>
<finalName>SSOAdminTools-${project.version}</finalName>
<plugins>
<!-- Pre-Packaging step for Zip Elements. -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<executions>
<execution>
<id>zip-pre-packaging</id>
<phase>compile</phase>
<configuration>
<target>
<property name="build.class.path" refid="maven.compile.classpath" />
<property name="project.basedir" value="./" />
<property name="target.resources.dir" value="${project.build.directory}/resources" />
<property name="resources.i18n.dir"
value="${project.basedir}/openam-locale/src/main/resources/locale" />
<tstamp>
<format property="war.time.stamp" pattern="yyyy-MMMM-dd HH:mm" locale="en,UK" />
</tstamp>
<property name="version.set" value="${project.version}" />
<filter token="DATESTAMP" value="${war.time.stamp}" />
<filter token="VERSION" value="${version.set}" />
<!-- Set our Version Information for the Package -->
<copy todir="${project.build.directory}/resources" overwrite="true" filtering="true" flatten="yes">
<fileset dir="${project.basedir}/openam-server-only/src/main/resources/config">
<include name="serviceDefaultValues.properties" />
</fileset>
</copy>
</target>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<id>admintools-assembly</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
<configuration>
<appendAssemblyId>false</appendAssemblyId>
<tarLongFileMode>gnu</tarLongFileMode>
<descriptors>
<descriptor>src/main/assembly/openAMToolsAssembly_Descriptor.xml</descriptor>
</descriptors>
<escapeString>\</escapeString>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.forgerock.openam</groupId>
<artifactId>openam-entitlements</artifactId>
</dependency>
<dependency>
<groupId>org.forgerock.openam</groupId>
<artifactId>openam-installtools</artifactId>
</dependency>
<dependency>
<groupId>org.forgerock.openam</groupId>
<artifactId>openam-core</artifactId>
</dependency>
<dependency>
<groupId>org.forgerock.openam</groupId>
<artifactId>openam-cli-definitions</artifactId>
</dependency>
<dependency>
<groupId>org.forgerock.openam</groupId>
<artifactId>openam-cli-impl</artifactId>
</dependency>
<dependency>
<groupId>org.forgerock.openam</groupId>
<artifactId>openam-federation-library</artifactId>
</dependency>
<dependency>
<groupId>org.forgerock.openam</groupId>
<artifactId>OpenFM</artifactId>
</dependency>
<dependency>
<groupId>org.forgerock.openam</groupId>
<artifactId>openam-oauth</artifactId>
</dependency>
<dependency>
<groupId>org.forgerock.openam</groupId>
<artifactId>openam-dtd-schema</artifactId>
</dependency>
<dependency>
<groupId>org.forgerock.openam</groupId>
<artifactId>openam-jaxrpc-schema</artifactId>
</dependency>
<dependency>
<groupId>org.forgerock.openam</groupId>
<artifactId>openam-saml2-schema</artifactId>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
</dependency>
</dependencies>
</project>