pom.xml revision a149d11dfee7bcc667e71ec330b7566dd0437c1f
1280N/A<?xml version="1.0" encoding="UTF-8"?>
2239N/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">
2239N/A <modelVersion>4.0.0</modelVersion>
2239N/A
2239N/A <!--
2239N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
2239N/A *
2239N/A * Copyright (c) 2011 ForgeRock AS. All Rights Reserved
2239N/A *
2239N/A * The contents of this file are subject to the terms
2239N/A * of the Common Development and Distribution License
2239N/A * (the License). You may not use this file except in
2239N/A * compliance with the License.
2239N/A *
2239N/A * You can obtain a copy of the License at
2239N/A * http://forgerock.org/license/CDDLv1.0.html
2239N/A * See the License for the specific language governing
2239N/A * permission and limitations under the License.
2239N/A *
2239N/A * When distributing Covered Code, include this CDDL
2239N/A * Header Notice in each file and include the License file
2239N/A * at http://forgerock.org/license/CDDLv1.0.html
2239N/A * If applicable, add the following below the CDDL Header,
2239N/A * with the fields enclosed by brackets [] replaced by
2239N/A * your own identifying information:
2239N/A * "Portions Copyrighted [year] [name of copyright owner]"
2239N/A *
2239N/A -->
1280N/A
1280N/A <!-- Parent Project -->
1280N/A <parent>
1280N/A <groupId>org.forgerock.openam</groupId>
1280N/A <artifactId>openam-distribution</artifactId>
1280N/A <version>10.2.0-SNAPSHOT</version>
1280N/A </parent>
2239N/A
1280N/A <!-- Component Definition -->
1280N/A <name>OpenAM Distribution Kit</name>
1280N/A <description>OpenAM Distribution Kit, containing all distributable artifacts.
1280N/A </description>
2239N/A <artifactId>openam-distribution-kit</artifactId>
1280N/A <packaging>pom</packaging>
1280N/A
1280N/A <!-- Build -->
1280N/A <build>
1280N/A <plugins>
1280N/A
1280N/A <plugin>
2239N/A <groupId>org.apache.maven.plugins</groupId>
1433N/A <artifactId>maven-assembly-plugin</artifactId>
1433N/A <executions>
1433N/A <execution>
1433N/A <id>admintools-assembly</id>
1433N/A <phase>package</phase>
1433N/A <goals>
1433N/A <goal>single</goal>
1433N/A </goals>
1433N/A <configuration>
2239N/A <finalName>openam-distribution-kit-${project.version}</finalName>
1280N/A <appendAssemblyId>false</appendAssemblyId>
1280N/A <tarLongFileMode>gnu</tarLongFileMode>
1280N/A <descriptors>
1280N/A <descriptor>src/main/assembly/openAM_KitAssembly_Descriptor.xml</descriptor>
1280N/A </descriptors>
1280N/A </configuration>
1280N/A </execution>
1280N/A </executions>
1280N/A </plugin>
1280N/A
1280N/A <!-- Post-Packaging step for preparing Artifacts for Upload to Nightly Download Area -->
1280N/A <plugin>
1280N/A <groupId>org.apache.maven.plugins</groupId>
1280N/A <artifactId>maven-antrun-plugin</artifactId>
1280N/A <executions>
1280N/A <execution>
<id>post-packaging</id>
<phase>package</phase>
<configuration>
<target>
<property name="distribution.target.dir" value="${project.build.directory}" />
<tstamp>
<format property="time.stamp" pattern="yyyyMMdd" />
</tstamp>
<property name="zipname.set" value="nightly_${time.stamp}" />
<filter token="ZIPNAME" value="${zipname.set}" />
<filter token="BUILD_DATE" value="${time.stamp}" />
<filter token="BUILD_VERSION" value="${project.version}" />
<copy file="/src/main/jenkins/openam_link.js.template" tofile="${distribution.target.dir}/openam_link.js" filtering="true" />
<copy file="/src/main/jenkins/build_date.js.template" tofile="${distribution.target.dir}/build_date.js" filtering="true" />
</target>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.forgerock.openam</groupId>
<artifactId>openam-server</artifactId>
<type>war</type>
</dependency>
<dependency>
<groupId>org.forgerock.openam</groupId>
<artifactId>openam-server-only</artifactId>
<type>war</type>
</dependency>
<dependency>
<groupId>org.forgerock.openam</groupId>
<artifactId>openam-distauth</artifactId>
<type>war</type>
</dependency>
<dependency>
<groupId>org.forgerock.openam</groupId>
<artifactId>openam-distribution-amadmsetup</artifactId>
<type>jar</type>
</dependency>
<dependency>
<groupId>org.forgerock.openam</groupId>
<artifactId>openam-distribution-diagnostics</artifactId>
<type>zip</type>
</dependency>
<dependency>
<groupId>org.forgerock.openam</groupId>
<artifactId>openam-clientsdk</artifactId>
<type>jar</type>
</dependency>
<dependency>
<groupId>org.forgerock.openam</groupId>
<artifactId>openam-distribution-fedlet-unconfigured</artifactId>
<type>zip</type>
</dependency>
<dependency>
<groupId>org.forgerock.openam</groupId>
<artifactId>openam-distribution-ssoadmintools</artifactId>
<type>zip</type>
</dependency>
<dependency>
<groupId>org.forgerock.openam</groupId>
<artifactId>openam-distribution-ssoconfiguratortools</artifactId>
<type>zip</type>
</dependency>
</dependencies>
</project>