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