pom.xml revision f47b62dff8c0dae47c0f6ce897e16ef5f047615f
c053576cdcd7389a1e11dd9c656f1f723ae854bcrbowen<?xml version="1.0" encoding="UTF-8"?>
c053576cdcd7389a1e11dd9c656f1f723ae854bcrbowen<!--
e942c741056732f50da2074b36fe59805d370650slive* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
c053576cdcd7389a1e11dd9c656f1f723ae854bcrbowen*
c053576cdcd7389a1e11dd9c656f1f723ae854bcrbowen* Copyright (c) 2013-2015 ForgeRock AS. All Rights Reserved
c053576cdcd7389a1e11dd9c656f1f723ae854bcrbowen*
75569f53579b42dc17cf097015b6b055c01e6875slive* The contents of this file are subject to the terms
75569f53579b42dc17cf097015b6b055c01e6875slive* of the Common Development and Distribution License
c053576cdcd7389a1e11dd9c656f1f723ae854bcrbowen* (the License). You may not use this file except in
c3fcea07965f59723831e23da647a77518285b8eslive* compliance with the License.
c3fcea07965f59723831e23da647a77518285b8eslive*
c053576cdcd7389a1e11dd9c656f1f723ae854bcrbowen* You can obtain a copy of the License at
c053576cdcd7389a1e11dd9c656f1f723ae854bcrbowen* http://forgerock.org/license/CDDLv1.0.html
c053576cdcd7389a1e11dd9c656f1f723ae854bcrbowen* See the License for the specific language governing
c053576cdcd7389a1e11dd9c656f1f723ae854bcrbowen* permission and limitations under the License.
c053576cdcd7389a1e11dd9c656f1f723ae854bcrbowen*
c053576cdcd7389a1e11dd9c656f1f723ae854bcrbowen* When distributing Covered Code, include this CDDL
c053576cdcd7389a1e11dd9c656f1f723ae854bcrbowen* Header Notice in each file and include the License file
c053576cdcd7389a1e11dd9c656f1f723ae854bcrbowen* at http://forgerock.org/license/CDDLv1.0.html
c053576cdcd7389a1e11dd9c656f1f723ae854bcrbowen* If applicable, add the following below the CDDL Header,
c053576cdcd7389a1e11dd9c656f1f723ae854bcrbowen* with the fields enclosed by brackets [] replaced by
c053576cdcd7389a1e11dd9c656f1f723ae854bcrbowen* your own identifying information:
c053576cdcd7389a1e11dd9c656f1f723ae854bcrbowen* "Portions Copyrighted [year] [name of copyright owner]"
75159a79720160d33d888cf45481ef400c1e3a01nd*
c053576cdcd7389a1e11dd9c656f1f723ae854bcrbowen-->
75569f53579b42dc17cf097015b6b055c01e6875slive<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">
75569f53579b42dc17cf097015b6b055c01e6875slive <modelVersion>4.0.0</modelVersion>
75569f53579b42dc17cf097015b6b055c01e6875slive <!-- Parent Project -->
75569f53579b42dc17cf097015b6b055c01e6875slive <parent>
75569f53579b42dc17cf097015b6b055c01e6875slive <groupId>org.forgerock.openam</groupId>
75569f53579b42dc17cf097015b6b055c01e6875slive <artifactId>openam-tools</artifactId>
75569f53579b42dc17cf097015b6b055c01e6875slive <version>13.0.0-RC4</version>
eabaccd4bdeaafc3d0c21886863bd9acefea99bbslive </parent>
eabaccd4bdeaafc3d0c21886863bd9acefea99bbslive
eabaccd4bdeaafc3d0c21886863bd9acefea99bbslive <!-- Component Definition -->
c053576cdcd7389a1e11dd9c656f1f723ae854bcrbowen <artifactId>openam-configurator-tool</artifactId>
eabaccd4bdeaafc3d0c21886863bd9acefea99bbslive <packaging>jar</packaging>
eabaccd4bdeaafc3d0c21886863bd9acefea99bbslive <name>OpenAM Configurator Tool</name>
eabaccd4bdeaafc3d0c21886863bd9acefea99bbslive <description>OpenAM Configurator Tool</description>
eabaccd4bdeaafc3d0c21886863bd9acefea99bbslive
75569f53579b42dc17cf097015b6b055c01e6875slive <!-- Build -->
75569f53579b42dc17cf097015b6b055c01e6875slive <build>
75569f53579b42dc17cf097015b6b055c01e6875slive <plugins>
75569f53579b42dc17cf097015b6b055c01e6875slive <plugin>
75569f53579b42dc17cf097015b6b055c01e6875slive <artifactId>maven-dependency-plugin</artifactId>
75569f53579b42dc17cf097015b6b055c01e6875slive <executions>
f794e11d17dcdae9f5f2944a5bfd06a7ded6a579yoshiki <execution>
75569f53579b42dc17cf097015b6b055c01e6875slive <phase>install</phase>
eabaccd4bdeaafc3d0c21886863bd9acefea99bbslive <goals>
eabaccd4bdeaafc3d0c21886863bd9acefea99bbslive <goal>copy-dependencies</goal>
eabaccd4bdeaafc3d0c21886863bd9acefea99bbslive </goals>
eabaccd4bdeaafc3d0c21886863bd9acefea99bbslive <configuration>
df5db89264efca559e954ca181763a0d3ef2f844nd <outputDirectory>${project.build.directory}/lib</outputDirectory>
df5db89264efca559e954ca181763a0d3ef2f844nd </configuration>
eabaccd4bdeaafc3d0c21886863bd9acefea99bbslive </execution>
eabaccd4bdeaafc3d0c21886863bd9acefea99bbslive </executions>
eabaccd4bdeaafc3d0c21886863bd9acefea99bbslive </plugin>
eabaccd4bdeaafc3d0c21886863bd9acefea99bbslive <plugin>
eabaccd4bdeaafc3d0c21886863bd9acefea99bbslive <groupId>org.apache.maven.plugins</groupId>
eabaccd4bdeaafc3d0c21886863bd9acefea99bbslive <artifactId>maven-jar-plugin</artifactId>
eabaccd4bdeaafc3d0c21886863bd9acefea99bbslive <configuration>
eabaccd4bdeaafc3d0c21886863bd9acefea99bbslive <archive>
75569f53579b42dc17cf097015b6b055c01e6875slive <index>true</index>
75569f53579b42dc17cf097015b6b055c01e6875slive <manifest>
c053576cdcd7389a1e11dd9c656f1f723ae854bcrbowen <addClasspath>true</addClasspath>
c053576cdcd7389a1e11dd9c656f1f723ae854bcrbowen <mainClass>com.sun.identity.setup.Main</mainClass>
c053576cdcd7389a1e11dd9c656f1f723ae854bcrbowen <classpathPrefix>lib/</classpathPrefix>
c053576cdcd7389a1e11dd9c656f1f723ae854bcrbowen <classpathLayoutType>custom</classpathLayoutType>
c053576cdcd7389a1e11dd9c656f1f723ae854bcrbowen <customClasspathLayout>${artifact.artifactId}-${artifact.baseVersion}${dashClassifier?}.${artifact.extension}</customClasspathLayout>
c053576cdcd7389a1e11dd9c656f1f723ae854bcrbowen </manifest>
c053576cdcd7389a1e11dd9c656f1f723ae854bcrbowen <manifestEntries>
c053576cdcd7389a1e11dd9c656f1f723ae854bcrbowen <Specification-Title>OpenAM Configurator Tool</Specification-Title>
75159a79720160d33d888cf45481ef400c1e3a01nd <Specification-Version>${project.version} - ${maven.build.timestamp}</Specification-Version>
75159a79720160d33d888cf45481ef400c1e3a01nd <Specification-Vendor>ForgeRock</Specification-Vendor>
75569f53579b42dc17cf097015b6b055c01e6875slive <Implementation-Title>OpenAM Configurator Tool</Implementation-Title>
eabaccd4bdeaafc3d0c21886863bd9acefea99bbslive <Implementation-Version>${project.version} - ${maven.build.timestamp}</Implementation-Version>
eabaccd4bdeaafc3d0c21886863bd9acefea99bbslive <Implementation-Vendor>ForgeRock</Implementation-Vendor>
75569f53579b42dc17cf097015b6b055c01e6875slive <Built-By>${user.name}</Built-By>
75569f53579b42dc17cf097015b6b055c01e6875slive <Build-Jdk>${java.version}</Build-Jdk>
75569f53579b42dc17cf097015b6b055c01e6875slive <Build-Time>${maven.build.timestamp}</Build-Time>
75569f53579b42dc17cf097015b6b055c01e6875slive <Version>${project.version}</Version>
75159a79720160d33d888cf45481ef400c1e3a01nd <Create-On>${maven.build.timestamp}</Create-On>
c053576cdcd7389a1e11dd9c656f1f723ae854bcrbowen <Revision>${git.short.sha1}</Revision>
c053576cdcd7389a1e11dd9c656f1f723ae854bcrbowen <!-- TODO Add License to Manifest -->
c053576cdcd7389a1e11dd9c656f1f723ae854bcrbowen <License />
75159a79720160d33d888cf45481ef400c1e3a01nd </manifestEntries>
75159a79720160d33d888cf45481ef400c1e3a01nd </archive>
75159a79720160d33d888cf45481ef400c1e3a01nd </configuration>
c053576cdcd7389a1e11dd9c656f1f723ae854bcrbowen </plugin>
75159a79720160d33d888cf45481ef400c1e3a01nd </plugins>
75159a79720160d33d888cf45481ef400c1e3a01nd </build>
75159a79720160d33d888cf45481ef400c1e3a01nd
75159a79720160d33d888cf45481ef400c1e3a01nd <dependencies>
c053576cdcd7389a1e11dd9c656f1f723ae854bcrbowen <dependency>
c053576cdcd7389a1e11dd9c656f1f723ae854bcrbowen <groupId>org.forgerock.commons</groupId>
c053576cdcd7389a1e11dd9c656f1f723ae854bcrbowen <artifactId>forgerock-guice-core</artifactId>
c053576cdcd7389a1e11dd9c656f1f723ae854bcrbowen </dependency>
c053576cdcd7389a1e11dd9c656f1f723ae854bcrbowen <dependency>
75159a79720160d33d888cf45481ef400c1e3a01nd <groupId>org.forgerock.openam</groupId>
75159a79720160d33d888cf45481ef400c1e3a01nd <artifactId>openam-license-manager-cli</artifactId>
75159a79720160d33d888cf45481ef400c1e3a01nd </dependency>
75159a79720160d33d888cf45481ef400c1e3a01nd <dependency>
75159a79720160d33d888cf45481ef400c1e3a01nd <groupId>org.forgerock.openam</groupId>
75159a79720160d33d888cf45481ef400c1e3a01nd <artifactId>openam-installer-utils</artifactId>
75159a79720160d33d888cf45481ef400c1e3a01nd </dependency>
c053576cdcd7389a1e11dd9c656f1f723ae854bcrbowen <dependency>
c053576cdcd7389a1e11dd9c656f1f723ae854bcrbowen <groupId>org.slf4j</groupId>
c053576cdcd7389a1e11dd9c656f1f723ae854bcrbowen <artifactId>slf4j-nop</artifactId>
c3fcea07965f59723831e23da647a77518285b8eslive <scope>runtime</scope>
c053576cdcd7389a1e11dd9c656f1f723ae854bcrbowen </dependency>
c053576cdcd7389a1e11dd9c656f1f723ae854bcrbowen <dependency>
c053576cdcd7389a1e11dd9c656f1f723ae854bcrbowen <groupId>org.forgerock.openam</groupId>
c3fcea07965f59723831e23da647a77518285b8eslive <artifactId>openam-license-core</artifactId>
c3fcea07965f59723831e23da647a77518285b8eslive </dependency>
c053576cdcd7389a1e11dd9c656f1f723ae854bcrbowen <dependency>
c053576cdcd7389a1e11dd9c656f1f723ae854bcrbowen <groupId>org.apache.servicemix.bundles</groupId>
c053576cdcd7389a1e11dd9c656f1f723ae854bcrbowen <artifactId>org.apache.servicemix.bundles.javax-inject</artifactId>
75159a79720160d33d888cf45481ef400c1e3a01nd </dependency>
c053576cdcd7389a1e11dd9c656f1f723ae854bcrbowen </dependencies>
75159a79720160d33d888cf45481ef400c1e3a01nd</project>
75159a79720160d33d888cf45481ef400c1e3a01nd
c053576cdcd7389a1e11dd9c656f1f723ae854bcrbowen