pom.xml revision 1c39f25b4e11ae0397f825f3d031bd01983b98f0
2788N/A<?xml version="1.0" encoding="UTF-8"?>
2788N/A<!--
2788N/A* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
2788N/A*
2788N/A* Copyright 2011-2015 ForgeRock AS.
2788N/A*
2788N/A* The contents of this file are subject to the terms
2788N/A* of the Common Development and Distribution License
2788N/A* (the License). You may not use this file except in
2788N/A* compliance with the License.
2788N/A*
2788N/A* You can obtain a copy of the License at
2788N/A* http://forgerock.org/license/CDDLv1.0.html
2788N/A* See the License for the specific language governing
2788N/A* permission and limitations under the License.
2788N/A*
2788N/A* When distributing Covered Code, include this CDDL
2788N/A* Header Notice in each file and include the License file
2788N/A* at http://forgerock.org/license/CDDLv1.0.html
2788N/A* If applicable, add the following below the CDDL Header,
2788N/A* with the fields enclosed by brackets [] replaced by
2788N/A* your own identifying information:
2788N/A* "Portions Copyrighted [year] [name of copyright owner]"
2788N/A*
2788N/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">
2788N/A <modelVersion>4.0.0</modelVersion>
2788N/A
2788N/A <!-- Parent Project -->
3853N/A <parent>
3853N/A <groupId>org.forgerock.openam</groupId>
3853N/A <artifactId>openam-distribution</artifactId>
3853N/A <version>14.0.0-SNAPSHOT</version>
3853N/A </parent>
3853N/A
3853N/A <!-- Component Definition -->
3853N/A <name>OpenAM Distribution Fedlet UnConfigured</name>
3853N/A <description>OpenAM Distribution Fedlet UnConfigured.</description>
3853N/A <artifactId>openam-distribution-fedlet-unconfigured</artifactId>
3853N/A <packaging>pom</packaging>
3853N/A
3853N/A <!-- Build -->
3853N/A <build>
3853N/A <finalName>Fedlet-${project.version}</finalName>
3853N/A <plugins>
3853N/A <plugin>
3853N/A <groupId>org.apache.maven.plugins</groupId>
3853N/A <artifactId>maven-assembly-plugin</artifactId>
3853N/A <executions>
3853N/A <execution>
3853N/A <id>fedlet-assembly_1</id>
3853N/A <phase>package</phase>
3853N/A <goals>
2788N/A <goal>single</goal>
2788N/A </goals>
2788N/A <configuration>
2788N/A <appendAssemblyId>false</appendAssemblyId>
2788N/A <tarLongFileMode>gnu</tarLongFileMode>
2788N/A <descriptors>
3853N/A <descriptor>src/main/assembly/openAMFedlet_WAR_Assembly_Descriptor.xml</descriptor>
3853N/A </descriptors>
3853N/A </configuration>
2788N/A </execution>
2788N/A <execution>
2788N/A <id>fedlet-assembly_2</id>
2788N/A <phase>package</phase>
2788N/A <goals>
3853N/A <goal>single</goal>
3853N/A </goals>
3853N/A <configuration>
2788N/A <appendAssemblyId>false</appendAssemblyId>
2788N/A <tarLongFileMode>gnu</tarLongFileMode>
2788N/A <descriptors>
2788N/A <descriptor>src/main/assembly/openAMFedlet_ZIP_Assembly_Descriptor.xml</descriptor>
2788N/A </descriptors>
2788N/A </configuration>
2788N/A </execution>
2788N/A </executions>
2788N/A </plugin>
2788N/A </plugins>
2788N/A </build>
3853N/A
3853N/A <dependencies>
3853N/A
3853N/A <dependency>
3853N/A <groupId>org.forgerock.openam</groupId>
3853N/A <artifactId>openam-shared</artifactId>
3853N/A </dependency>
3853N/A
2788N/A <dependency>
2788N/A <groupId>org.forgerock.openam</groupId>
2788N/A <artifactId>openam-federation-library</artifactId>
2788N/A </dependency>
2788N/A
2788N/A <dependency>
2788N/A <groupId>org.forgerock.openam</groupId>
2788N/A <artifactId>openam-dtd-schema</artifactId>
2788N/A </dependency>
2788N/A
2788N/A <dependency>
2788N/A <groupId>org.forgerock.openam</groupId>
2788N/A <artifactId>openam-jaxrpc-schema</artifactId>
2788N/A </dependency>
2788N/A
2788N/A <dependency>
2788N/A <groupId>org.forgerock.openam</groupId>
2788N/A <artifactId>openam-saml2-schema</artifactId>
2788N/A </dependency>
2788N/A
2788N/A <dependency>
2788N/A <groupId>org.forgerock.openam</groupId>
2788N/A <artifactId>openam-mib-schema</artifactId>
2788N/A </dependency>
2788N/A
2788N/A <dependency>
2788N/A <groupId>org.forgerock.openam</groupId>
2788N/A <artifactId>openam-liberty-schema</artifactId>
2788N/A </dependency>
2788N/A
2788N/A <dependency>
2788N/A <groupId>org.forgerock.openam</groupId>
2788N/A <artifactId>openam-wsfederation-schema</artifactId>
2788N/A </dependency>
2788N/A
2788N/A <dependency>
2788N/A <groupId>org.forgerock.openam</groupId>
2788N/A <artifactId>openam-rest</artifactId>
2788N/A </dependency>
2788N/A
2788N/A <dependency>
2788N/A <groupId>external</groupId>
2788N/A <artifactId>esapiport</artifactId>
2788N/A </dependency>
2788N/A
2788N/A <dependency>
2788N/A <groupId>javax.mail</groupId>
3194N/A <artifactId>mail</artifactId>
2788N/A </dependency>
2788N/A
2788N/A <dependency>
2788N/A <groupId>relaxngDatatype</groupId>
2788N/A <artifactId>relaxngDatatype</artifactId>
2788N/A </dependency>
2788N/A
2788N/A <dependency>
2788N/A <groupId>external</groupId>
2788N/A <artifactId>jaxrpc-impl</artifactId>
2788N/A </dependency>
2788N/A
2788N/A <dependency>
2788N/A <groupId>xalan</groupId>
2788N/A <artifactId>xalan</artifactId>
2788N/A </dependency>
3853N/A
3853N/A <dependency>
3853N/A <groupId>xerces-J</groupId>
3853N/A <artifactId>xercesImpl</artifactId>
2788N/A </dependency>
2788N/A
2788N/A <dependency>
2788N/A <groupId>xerces-J</groupId>
2788N/A <artifactId>xml-apis</artifactId>
2788N/A </dependency>
2788N/A
2788N/A <dependency>
2788N/A <groupId>xerces-J</groupId>
2788N/A <artifactId>xml-resolver</artifactId>
2788N/A </dependency>
2788N/A
2788N/A <dependency>
2788N/A <groupId>xerces-J</groupId>
2788N/A <artifactId>xml-serializer</artifactId>
2788N/A </dependency>
2788N/A
2788N/A <dependency>
2788N/A <groupId>org.apache.santuario</groupId>
2788N/A <artifactId>xmlsec</artifactId>
2788N/A </dependency>
2788N/A
2788N/A <dependency>
2788N/A <groupId>commons-logging</groupId>
2788N/A <artifactId>commons-logging-api</artifactId>
2788N/A </dependency>
2788N/A
2788N/A <dependency>
2788N/A <groupId>com.sun.msv.datatype.xsd</groupId>
2788N/A <artifactId>xsdlib</artifactId>
2788N/A </dependency>
2788N/A </dependencies>
2788N/A</project>
2788N/A
2788N/A