pom.xml revision e4e3e7824f9b9a8309cc925546b08e0e3db9bbf4
770N/A<?xml version="1.0" encoding="UTF-8"?>
770N/A<!--
770N/A * The contents of this file are subject to the terms of the Common Development and
770N/A * Distribution License (the License). You may not use this file except in compliance with the
770N/A * License.
770N/A *
770N/A * You can obtain a copy of the License at legal/CDDLv1.0.txt. See the License for the
770N/A * specific language governing permission and limitations under the License.
770N/A *
770N/A * When distributing Covered Software, include this CDDL Header Notice in each file and include
770N/A * the License file at legal/CDDLv1.0.txt. If applicable, add the following below the CDDL
770N/A * Header, with the fields enclosed by brackets [] replaced by your own identifying
770N/A * information: "Portions copyright [year] [name of copyright owner]".
770N/A *
770N/A * Copyright 2011-2016 ForgeRock AS.
770N/A-->
770N/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">
770N/A <modelVersion>4.0.0</modelVersion>
770N/A
770N/A <!-- Parent Project -->
770N/A <parent>
770N/A <groupId>org.forgerock.openam</groupId>
770N/A <artifactId>openam-distribution</artifactId>
770N/A <version>14.0.0-SNAPSHOT</version>
770N/A </parent>
770N/A
770N/A <!-- Component Definition -->
770N/A <name>OpenAM Distribution ssoConfiguratorTools</name>
770N/A <description>OpenAM Distribution SSO Configurator Tools Kit.</description>
770N/A <artifactId>openam-distribution-ssoconfiguratortools</artifactId>
770N/A <packaging>pom</packaging>
770N/A
770N/A <!-- Build -->
770N/A <build>
770N/A <finalName>SSOConfiguratorTools-${project.version}</finalName>
770N/A <plugins>
770N/A <!-- Get the relevant license from Artifactory -->
770N/A <plugin>
770N/A <groupId>org.apache.maven.plugins</groupId>
770N/A <artifactId>maven-dependency-plugin</artifactId>
770N/A <executions>
770N/A <execution>
770N/A <id>Copy license</id>
770N/A <phase>prepare-package</phase>
770N/A <goals>
770N/A <goal>copy</goal>
770N/A </goals>
770N/A <configuration>
770N/A <artifactItems>
770N/A <artifactItem>
770N/A <groupId>${forgerock.license.groupId}</groupId>
770N/A <artifactId>${forgerock.license.artifactId}</artifactId>
770N/A <version>${forgerock.license.version}</version>
770N/A <type>txt</type>
770N/A <overWrite>true</overWrite>
770N/A <outputDirectory>${project.build.directory}/legal-notices</outputDirectory>
770N/A <destFileName>license.txt</destFileName>
770N/A </artifactItem>
770N/A </artifactItems>
770N/A </configuration>
770N/A </execution>
770N/A </executions>
770N/A </plugin>
770N/A
770N/A <plugin>
770N/A <groupId>org.apache.maven.plugins</groupId>
770N/A <artifactId>maven-assembly-plugin</artifactId>
770N/A <executions>
770N/A <execution>
770N/A <id>openam-ssoconfiguratortools</id>
770N/A <phase>package</phase>
770N/A <goals>
770N/A <goal>single</goal>
770N/A </goals>
770N/A <configuration>
770N/A <appendAssemblyId>false</appendAssemblyId>
770N/A <tarLongFileMode>gnu</tarLongFileMode>
770N/A <descriptors>
770N/A <descriptor>src/main/assembly/openAMToolsAssembly_Descriptor.xml</descriptor>
770N/A </descriptors>
770N/A <escapeString>\</escapeString>
770N/A </configuration>
770N/A </execution>
770N/A </executions>
770N/A </plugin>
770N/A </plugins>
770N/A </build>
770N/A
770N/A <dependencies>
770N/A <dependency>
770N/A <groupId>org.forgerock.openam</groupId>
770N/A <artifactId>openam-configurator-tool</artifactId>
770N/A </dependency>
770N/A <dependency>
770N/A <groupId>org.slf4j</groupId>
770N/A <artifactId>slf4j-nop</artifactId>
770N/A <scope>runtime</scope>
770N/A </dependency>
770N/A <dependency>
770N/A <groupId>org.forgerock.openam</groupId>
770N/A <artifactId>openam-upgrade-tool</artifactId>
770N/A </dependency>
770N/A </dependencies>
770N/A</project>
770N/A