87b3fc65db52638e30547ac9de01938f83b78758Peter Major<?xml version="1.0" encoding="UTF-8"?>
87b3fc65db52638e30547ac9de01938f83b78758Peter Major<!--
f0b8f6dd844f8752946b865bdd44175863b15812Peter Major * The contents of this file are subject to the terms of the Common Development and
f0b8f6dd844f8752946b865bdd44175863b15812Peter Major * Distribution License (the License). You may not use this file except in compliance with the
f0b8f6dd844f8752946b865bdd44175863b15812Peter Major * License.
f0b8f6dd844f8752946b865bdd44175863b15812Peter Major *
f0b8f6dd844f8752946b865bdd44175863b15812Peter Major * You can obtain a copy of the License at legal/CDDLv1.0.txt. See the License for the
f0b8f6dd844f8752946b865bdd44175863b15812Peter Major * specific language governing permission and limitations under the License.
f0b8f6dd844f8752946b865bdd44175863b15812Peter Major *
f0b8f6dd844f8752946b865bdd44175863b15812Peter Major * When distributing Covered Software, include this CDDL Header Notice in each file and include
f0b8f6dd844f8752946b865bdd44175863b15812Peter Major * the License file at legal/CDDLv1.0.txt. If applicable, add the following below the CDDL
f0b8f6dd844f8752946b865bdd44175863b15812Peter Major * Header, with the fields enclosed by brackets [] replaced by your own identifying
f0b8f6dd844f8752946b865bdd44175863b15812Peter Major * information: "Portions copyright [year] [name of copyright owner]".
f0b8f6dd844f8752946b865bdd44175863b15812Peter Major *
f0b8f6dd844f8752946b865bdd44175863b15812Peter Major * Copyright 2013-2016 ForgeRock AS.
87b3fc65db52638e30547ac9de01938f83b78758Peter Major-->
87b3fc65db52638e30547ac9de01938f83b78758Peter Major<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">
87b3fc65db52638e30547ac9de01938f83b78758Peter Major <modelVersion>4.0.0</modelVersion>
87b3fc65db52638e30547ac9de01938f83b78758Peter Major <!-- Parent Project -->
87b3fc65db52638e30547ac9de01938f83b78758Peter Major <parent>
87b3fc65db52638e30547ac9de01938f83b78758Peter Major <groupId>org.forgerock.openam</groupId>
87b3fc65db52638e30547ac9de01938f83b78758Peter Major <artifactId>openam-tools</artifactId>
2d8eba3efb0ced5c2ab004e5b3e949094747aeb3jenkins <version>14.0.0-SNAPSHOT</version>
87b3fc65db52638e30547ac9de01938f83b78758Peter Major </parent>
87b3fc65db52638e30547ac9de01938f83b78758Peter Major
87b3fc65db52638e30547ac9de01938f83b78758Peter Major <!-- Component Definition -->
87b3fc65db52638e30547ac9de01938f83b78758Peter Major <artifactId>openam-configurator-tool</artifactId>
87b3fc65db52638e30547ac9de01938f83b78758Peter Major <packaging>jar</packaging>
87b3fc65db52638e30547ac9de01938f83b78758Peter Major <name>OpenAM Configurator Tool</name>
87b3fc65db52638e30547ac9de01938f83b78758Peter Major <description>OpenAM Configurator Tool</description>
87b3fc65db52638e30547ac9de01938f83b78758Peter Major
87b3fc65db52638e30547ac9de01938f83b78758Peter Major <!-- Build -->
87b3fc65db52638e30547ac9de01938f83b78758Peter Major <build>
87b3fc65db52638e30547ac9de01938f83b78758Peter Major <plugins>
c375ffd945a63cb2de20fda03e2ef0cdf96e64d9David Luna <plugin>
c375ffd945a63cb2de20fda03e2ef0cdf96e64d9David Luna <artifactId>maven-dependency-plugin</artifactId>
c375ffd945a63cb2de20fda03e2ef0cdf96e64d9David Luna <executions>
c375ffd945a63cb2de20fda03e2ef0cdf96e64d9David Luna <execution>
c375ffd945a63cb2de20fda03e2ef0cdf96e64d9David Luna <phase>install</phase>
c375ffd945a63cb2de20fda03e2ef0cdf96e64d9David Luna <goals>
c375ffd945a63cb2de20fda03e2ef0cdf96e64d9David Luna <goal>copy-dependencies</goal>
c375ffd945a63cb2de20fda03e2ef0cdf96e64d9David Luna </goals>
c375ffd945a63cb2de20fda03e2ef0cdf96e64d9David Luna <configuration>
c375ffd945a63cb2de20fda03e2ef0cdf96e64d9David Luna <outputDirectory>${project.build.directory}/lib</outputDirectory>
c375ffd945a63cb2de20fda03e2ef0cdf96e64d9David Luna </configuration>
c375ffd945a63cb2de20fda03e2ef0cdf96e64d9David Luna </execution>
c375ffd945a63cb2de20fda03e2ef0cdf96e64d9David Luna </executions>
c375ffd945a63cb2de20fda03e2ef0cdf96e64d9David Luna </plugin>
87b3fc65db52638e30547ac9de01938f83b78758Peter Major <plugin>
87b3fc65db52638e30547ac9de01938f83b78758Peter Major <groupId>org.apache.maven.plugins</groupId>
87b3fc65db52638e30547ac9de01938f83b78758Peter Major <artifactId>maven-jar-plugin</artifactId>
87b3fc65db52638e30547ac9de01938f83b78758Peter Major <configuration>
87b3fc65db52638e30547ac9de01938f83b78758Peter Major <archive>
87b3fc65db52638e30547ac9de01938f83b78758Peter Major <manifest>
87b3fc65db52638e30547ac9de01938f83b78758Peter Major <addClasspath>true</addClasspath>
c375ffd945a63cb2de20fda03e2ef0cdf96e64d9David Luna <mainClass>com.sun.identity.setup.Main</mainClass>
87b3fc65db52638e30547ac9de01938f83b78758Peter Major <classpathPrefix>lib/</classpathPrefix>
4d8aa93a62889d5ee6fd7383ec390c42b80f9cf0Mark de Reeper <classpathLayoutType>custom</classpathLayoutType>
4d8aa93a62889d5ee6fd7383ec390c42b80f9cf0Mark de Reeper <customClasspathLayout>${artifact.artifactId}-${artifact.baseVersion}${dashClassifier?}.${artifact.extension}</customClasspathLayout>
87b3fc65db52638e30547ac9de01938f83b78758Peter Major </manifest>
87b3fc65db52638e30547ac9de01938f83b78758Peter Major </archive>
87b3fc65db52638e30547ac9de01938f83b78758Peter Major </configuration>
87b3fc65db52638e30547ac9de01938f83b78758Peter Major </plugin>
87b3fc65db52638e30547ac9de01938f83b78758Peter Major </plugins>
87b3fc65db52638e30547ac9de01938f83b78758Peter Major </build>
c375ffd945a63cb2de20fda03e2ef0cdf96e64d9David Luna
c375ffd945a63cb2de20fda03e2ef0cdf96e64d9David Luna <dependencies>
c375ffd945a63cb2de20fda03e2ef0cdf96e64d9David Luna <dependency>
c375ffd945a63cb2de20fda03e2ef0cdf96e64d9David Luna <groupId>org.forgerock.commons</groupId>
c375ffd945a63cb2de20fda03e2ef0cdf96e64d9David Luna <artifactId>forgerock-guice-core</artifactId>
c375ffd945a63cb2de20fda03e2ef0cdf96e64d9David Luna </dependency>
c375ffd945a63cb2de20fda03e2ef0cdf96e64d9David Luna <dependency>
c375ffd945a63cb2de20fda03e2ef0cdf96e64d9David Luna <groupId>org.forgerock.openam</groupId>
c375ffd945a63cb2de20fda03e2ef0cdf96e64d9David Luna <artifactId>openam-license-manager-cli</artifactId>
c375ffd945a63cb2de20fda03e2ef0cdf96e64d9David Luna </dependency>
c375ffd945a63cb2de20fda03e2ef0cdf96e64d9David Luna <dependency>
c375ffd945a63cb2de20fda03e2ef0cdf96e64d9David Luna <groupId>org.forgerock.openam</groupId>
c375ffd945a63cb2de20fda03e2ef0cdf96e64d9David Luna <artifactId>openam-installer-utils</artifactId>
c375ffd945a63cb2de20fda03e2ef0cdf96e64d9David Luna </dependency>
96144cd4a60ce8175d14773710bb2bf5b2457a11David Luna <dependency>
96144cd4a60ce8175d14773710bb2bf5b2457a11David Luna <groupId>org.slf4j</groupId>
96144cd4a60ce8175d14773710bb2bf5b2457a11David Luna <artifactId>slf4j-nop</artifactId>
96144cd4a60ce8175d14773710bb2bf5b2457a11David Luna <scope>runtime</scope>
96144cd4a60ce8175d14773710bb2bf5b2457a11David Luna </dependency>
c375ffd945a63cb2de20fda03e2ef0cdf96e64d9David Luna <dependency>
c375ffd945a63cb2de20fda03e2ef0cdf96e64d9David Luna <groupId>org.forgerock.openam</groupId>
c375ffd945a63cb2de20fda03e2ef0cdf96e64d9David Luna <artifactId>openam-license-core</artifactId>
c375ffd945a63cb2de20fda03e2ef0cdf96e64d9David Luna </dependency>
17d544e8020417f1084a228745f6d5b1dbd78831Neil Madden <dependency>
17d544e8020417f1084a228745f6d5b1dbd78831Neil Madden <groupId>org.apache.servicemix.bundles</groupId>
17d544e8020417f1084a228745f6d5b1dbd78831Neil Madden <artifactId>org.apache.servicemix.bundles.javax-inject</artifactId>
17d544e8020417f1084a228745f6d5b1dbd78831Neil Madden </dependency>
c375ffd945a63cb2de20fda03e2ef0cdf96e64d9David Luna </dependencies>
87b3fc65db52638e30547ac9de01938f83b78758Peter Major</project>
87b3fc65db52638e30547ac9de01938f83b78758Peter Major