pom.xml revision 4e75655a7adb3543d98c425513a7d555feaf0e4f
2N/A<?xml version="1.0" encoding="UTF-8"?>
2N/A<!--
2N/A* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
2N/A*
2N/A* Copyright 2011-2015 ForgeRock AS.
2N/A*
2N/A* The contents of this file are subject to the terms
2N/A* of the Common Development and Distribution License
2N/A* (the License). You may not use this file except in
2N/A* compliance with the License.
2N/A*
2N/A* You can obtain a copy of the License at
2N/A* http://forgerock.org/license/CDDLv1.0.html
2N/A* See the License for the specific language governing
2N/A* permission and limitations under the License.
2N/A*
2N/A* When distributing Covered Code, include this CDDL
2N/A* Header Notice in each file and include the License file
2N/A* at http://forgerock.org/license/CDDLv1.0.html
2N/A* If applicable, add the following below the CDDL Header,
2N/A* with the fields enclosed by brackets [] replaced by
2N/A* your own identifying information:
2N/A* "Portions Copyrighted [year] [name of copyright owner]"
2N/A*
2N/A-->
2N/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">
2N/A <modelVersion>4.0.0</modelVersion>
2N/A
2N/A <!-- Parent Project -->
2N/A <parent>
2N/A <groupId>org.forgerock.openam</groupId>
2N/A <artifactId>openam-distribution</artifactId>
2N/A <version>13.0.1-SNAPSHOT</version>
2N/A </parent>
2N/A
2N/A <!-- Component Definition -->
2N/A <name>OpenAM Distribution Diagnostics</name>
2N/A <description>OpenAM Distribution Diagnostics</description>
2N/A <artifactId>openam-distribution-diagnostics</artifactId>
2N/A <packaging>pom</packaging>
2N/A
2N/A <!-- Build -->
2N/A <build>
2N/A <finalName>SSODiagnosticTools-${project.version}</finalName>
2N/A <plugins>
2N/A <plugin>
2N/A <groupId>org.apache.maven.plugins</groupId>
2N/A <artifactId>maven-assembly-plugin</artifactId>
2N/A <executions>
2N/A <execution>
2N/A <id>openam-ssodiagnostictools</id>
2N/A <phase>package</phase>
2N/A <goals>
2N/A <goal>single</goal>
2N/A </goals>
2N/A <configuration>
2N/A <appendAssemblyId>false</appendAssemblyId>
2N/A <tarLongFileMode>gnu</tarLongFileMode>
2N/A <descriptors>
2N/A <descriptor>src/main/assembly/openAMDiagnosticAssembly_Descriptor.xml</descriptor>
2N/A </descriptors>
2N/A </configuration>
2N/A </execution>
2N/A </executions>
2N/A </plugin>
2N/A </plugins>
2N/A </build>
2N/A
2N/A <dependencies>
2N/A <dependency>
2N/A <groupId>org.forgerock.openam</groupId>
2N/A <artifactId>openam-core</artifactId>
2N/A </dependency>
2N/A <dependency>
2N/A <groupId>org.forgerock.openam</groupId>
2N/A <artifactId>openam-diagnostics-schema</artifactId>
2N/A </dependency>
2N/A <dependency>
2N/A <groupId>org.forgerock.openam</groupId>
2N/A <artifactId>openam-diagnostics-base</artifactId>
2N/A </dependency>
2N/A <dependency>
2N/A <groupId>org.forgerock.openam</groupId>
2N/A <artifactId>openam-diagnostics-plugins</artifactId>
2N/A </dependency>
2N/A <dependency>
2N/A <groupId>org.forgerock.openam</groupId>
2N/A <artifactId>openam-shared</artifactId>
2N/A </dependency>
2N/A <dependency>
2N/A <groupId>javax.xml.bind</groupId>
2N/A <artifactId>jaxb-api</artifactId>
2N/A </dependency>
2N/A <dependency>
2N/A <groupId>com.sun.xml.bind</groupId>
2N/A <artifactId>jaxb1-impl</artifactId>
2N/A </dependency>
2N/A <dependency>
2N/A <groupId>com.sun.msv.datatype.xsd</groupId>
2N/A <artifactId>xsdlib</artifactId>
2N/A </dependency>
2N/A <dependency>
2N/A <groupId>external</groupId>
2N/A <artifactId>jaxrpc-impl</artifactId>
2N/A </dependency>
2N/A <dependency>
2N/A <groupId>org.forgerock.opendj</groupId>
2N/A <artifactId>opendj-server</artifactId>
2N/A </dependency>
2N/A </dependencies>
2N/A</project>
2N/A