pom.xml revision 2d8eba3efb0ced5c2ab004e5b3e949094747aeb3
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
12198N/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
10139N/A * information: "Portions copyright [year] [name of copyright owner]".
16372N/A *
12578N/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">
10139N/A <modelVersion>4.0.0</modelVersion>
16158N/A
11419N/A <!-- Parent Project -->
10139N/A <parent>
11419N/A <groupId>org.forgerock.openam</groupId>
10139N/A <artifactId>openam-distribution</artifactId>
10142N/A <version>14.0.0-SNAPSHOT</version>
10142N/A </parent>
10244N/A
14429N/A <!-- Component Definition -->
14429N/A <name>OpenAM Distribution Fedlet UnConfigured</name>
12773N/A <description>OpenAM Distribution Fedlet UnConfigured</description>
14444N/A <artifactId>openam-distribution-fedlet-unconfigured</artifactId>
12773N/A <packaging>pom</packaging>
11419N/A
10139N/A <!-- Build -->
10139N/A <build>
11419N/A <finalName>Fedlet-${project.version}</finalName>
11437N/A <plugins>
11962N/A <plugin>
11437N/A <groupId>org.apache.maven.plugins</groupId>
11437N/A <artifactId>maven-assembly-plugin</artifactId>
10139N/A <executions>
10139N/A <execution>
10139N/A <id>fedlet-assembly</id>
10139N/A <phase>package</phase>
10803N/A <goals>
10139N/A <goal>single</goal>
10139N/A </goals>
10139N/A <configuration>
10139N/A <appendAssemblyId>false</appendAssemblyId>
10139N/A <tarLongFileMode>gnu</tarLongFileMode>
13462N/A <descriptors>
13462N/A <descriptor>src/main/assembly/openAMFedlet_ZIP_Assembly_Descriptor.xml</descriptor>
13462N/A </descriptors>
11419N/A </configuration>
10139N/A </execution>
10139N/A </executions>
10139N/A </plugin>
10139N/A </plugins>
11419N/A </build>
10139N/A
13901N/A <dependencies>
10139N/A <dependency>
13901N/A <groupId>org.forgerock.openam</groupId>
16463N/A <artifactId>openam-fedlet-unconfigured-war</artifactId>
16463N/A <type>war</type>
16463N/A </dependency>
16463N/A </dependencies>
16463N/A</project>
13901N/A
14048N/A