pom.xml revision 7cf02862991069ea95f957cfa01dce64eee68553
2624N/A<?xml version="1.0" encoding="UTF-8"?>
2624N/A<!--
2624N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
2624N/A *
2624N/A * Copyright (c) 2014 ForgeRock AS. All Rights Reserved
2624N/A *
2624N/A * The contents of this file are subject to the terms
2624N/A * of the Common Development and Distribution License
2624N/A * (the License). You may not use this file except in
2624N/A * compliance with the License.
2624N/A *
2624N/A * You can obtain a copy of the License at
2624N/A * http://forgerock.org/license/CDDLv1.0.html
2624N/A * See the License for the specific language governing
2624N/A * permission and limitations under the License.
2624N/A *
2624N/A * When distributing Covered Code, include this CDDL
2624N/A * Header Notice in each file and include the License file
2624N/A * at http://forgerock.org/license/CDDLv1.0.html
2624N/A * If applicable, add the following below the CDDL Header,
2624N/A * with the fields enclosed by brackets [] replaced by
2624N/A * your own identifying information:
2624N/A * "Portions Copyrighted [year] [name of copyright owner]"
2624N/A *
2624N/A -->
3215N/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">
5422N/A <modelVersion>4.0.0</modelVersion>
2624N/A
2624N/A <!-- Parent Project -->
2624N/A <parent>
2624N/A <groupId>org.forgerock.openam</groupId>
2624N/A <artifactId>openam-tools</artifactId>
2624N/A <version>13.0.0-RC1</version>
2624N/A </parent>
2868N/A
2624N/A <!-- Component Definition -->
2624N/A <name>OpenAM CLI License Manager</name>
2624N/A <description>OpenAM Command Line Interface License Manger</description>
3201N/A <artifactId>openam-license-manager-cli</artifactId>
5422N/A <packaging>jar</packaging>
2624N/A
2624N/A <build>
2624N/A <plugins>
2624N/A <plugin>
2624N/A <groupId>org.apache.maven.plugins</groupId>
2624N/A <artifactId>maven-dependency-plugin</artifactId>
2624N/A <executions>
2624N/A <execution>
2624N/A <id>Copy license</id>
2624N/A <phase>validate</phase>
2624N/A
2624N/A <goals>
2624N/A <goal>copy</goal>
2624N/A </goals>
2624N/A
2624N/A <configuration>
2624N/A <artifactItems>
2624N/A <artifactItem>
2624N/A <groupId>${forgerock.license.groupId}</groupId>
2624N/A <artifactId>${forgerock.license.artifactId}</artifactId>
2624N/A <version>${forgerock.license.version}</version>
2624N/A <type>txt</type>
2624N/A <overWrite>true</overWrite>
2624N/A <outputDirectory>${project.build.outputDirectory}</outputDirectory>
2624N/A <destFileName>license.txt</destFileName>
2624N/A </artifactItem>
2624N/A </artifactItems>
2624N/A </configuration>
2624N/A </execution>
2624N/A </executions>
2624N/A </plugin>
2624N/A </plugins>
2624N/A </build>
2868N/A
2624N/A <dependencies>
2624N/A
2624N/A <dependency>
2624N/A <groupId>org.slf4j</groupId>
2624N/A <artifactId>slf4j-api</artifactId>
2624N/A </dependency>
2624N/A
2624N/A <dependency>
3102N/A <groupId>org.slf4j</groupId>
3095N/A <artifactId>slf4j-nop</artifactId>
3201N/A </dependency>
3095N/A
3095N/A <dependency>
3201N/A <groupId>org.forgerock.openam</groupId>
3095N/A <artifactId>openam-license-core</artifactId>
3095N/A </dependency>
3095N/A
3095N/A <dependency>
3095N/A <groupId>org.testng</groupId>
3095N/A <artifactId>testng</artifactId>
3095N/A <scope>test</scope>
3095N/A </dependency>
3095N/A
3095N/A <dependency>
3095N/A <groupId>org.mockito</groupId>
3095N/A <artifactId>mockito-all</artifactId>
3095N/A <scope>test</scope>
3095N/A </dependency>
3095N/A
3095N/A </dependencies>
3095N/A
3095N/A</project>
2624N/A