pom.xml revision c375ffd945a63cb2de20fda03e2ef0cdf96e64d9
3952N/A<?xml version="1.0" encoding="UTF-8"?>
3952N/A<!--
3952N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
3952N/A *
3952N/A * Copyright (c) 2014 ForgeRock AS. All Rights Reserved
3952N/A *
3952N/A * The contents of this file are subject to the terms
3952N/A * of the Common Development and Distribution License
3952N/A * (the License). You may not use this file except in
3952N/A * compliance with the License.
3952N/A *
3952N/A * You can obtain a copy of the License at
3952N/A * http://forgerock.org/license/CDDLv1.0.html
3952N/A * See the License for the specific language governing
3952N/A * permission and limitations under the License.
3952N/A *
3952N/A * When distributing Covered Code, include this CDDL
3952N/A * Header Notice in each file and include the License file
3952N/A * at http://forgerock.org/license/CDDLv1.0.html
3952N/A * If applicable, add the following below the CDDL Header,
3952N/A * with the fields enclosed by brackets [] replaced by
3952N/A * your own identifying information:
3952N/A * "Portions Copyrighted [year] [name of copyright owner]"
5347N/A *
3952N/A -->
3952N/A<project xmlns="http://maven.apache.org/POM/4.0.0"
3952N/A xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3952N/A xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
3952N/A <modelVersion>4.0.0</modelVersion>
3952N/A
4586N/A <!-- Parent Project -->
4586N/A <parent>
3952N/A <groupId>org.forgerock.openam</groupId>
3952N/A <artifactId>openam-tools</artifactId>
3952N/A <version>12.0.0-SNAPSHOT</version>
3952N/A </parent>
4586N/A
3952N/A <!-- Component Definition -->
3952N/A <name>OpenAM CLI License Manager</name>
3952N/A <description>OpenAM Command Line Interface License Manger</description>
3952N/A <artifactId>openam-license-manager-cli</artifactId>
3952N/A <packaging>jar</packaging>
3952N/A
3952N/A <dependencies>
3952N/A
3952N/A <dependency>
3952N/A <groupId>org.slf4j</groupId>
3952N/A <artifactId>slf4j-api</artifactId>
3952N/A </dependency>
3952N/A
3952N/A <dependency>
3952N/A <groupId>org.slf4j</groupId>
3952N/A <artifactId>slf4j-nop</artifactId>
3952N/A </dependency>
3952N/A
3952N/A <dependency>
3952N/A <groupId>org.forgerock.openam</groupId>
3952N/A <artifactId>openam-license-core</artifactId>
3952N/A </dependency>
3952N/A
3952N/A <dependency>
3952N/A <groupId>org.testng</groupId>
3952N/A <artifactId>testng</artifactId>
3952N/A <scope>test</scope>
3952N/A </dependency>
4586N/A
3952N/A <dependency>
4305N/A <groupId>org.mockito</groupId>
3952N/A <artifactId>mockito-all</artifactId>
3952N/A <scope>test</scope>
3952N/A </dependency>
3952N/A
4586N/A <dependency>
4586N/A <groupId>org.forgerock.commons</groupId>
4586N/A <artifactId>forgerock-guice-core</artifactId>
4586N/A </dependency>
4586N/A
4586N/A <dependency>
4586N/A <groupId>com.google.inject</groupId>
4586N/A <artifactId>guice</artifactId>
3952N/A </dependency>
3952N/A
3952N/A </dependencies>
3952N/A
3952N/A</project>
3952N/A