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