pom.xml revision 73f9e2bdde9270cbef1203804de2674ce0d90ddb
88319179998c5d8d19943d09450931b88694be58takashi<?xml version="1.0" encoding="UTF-8"?>
88319179998c5d8d19943d09450931b88694be58takashi<!--
fd9abdda70912b99b24e3bf1a38f26fde908a74cnd * The contents of this file are subject to the terms of the Common Development and
fd9abdda70912b99b24e3bf1a38f26fde908a74cnd * Distribution License (the License). You may not use this file except in compliance with the
fd9abdda70912b99b24e3bf1a38f26fde908a74cnd * License.
88319179998c5d8d19943d09450931b88694be58takashi *
88319179998c5d8d19943d09450931b88694be58takashi * You can obtain a copy of the License at legal/CDDLv1.0.txt. See the License for the
88319179998c5d8d19943d09450931b88694be58takashi * specific language governing permission and limitations under the License.
88319179998c5d8d19943d09450931b88694be58takashi *
96ad5d81ee4a2cc66a4ae19893efc8aa6d06fae7jailletc * When distributing Covered Software, include this CDDL Header Notice in each file and include
88319179998c5d8d19943d09450931b88694be58takashi * the License file at legal/CDDLv1.0.txt. If applicable, add the following below the CDDL
88319179998c5d8d19943d09450931b88694be58takashi * Header, with the fields enclosed by brackets [] replaced by your own identifying
d29d9ab4614ff992b0e8de6e2b88d52b6f1f153erbowen * information: "Portions copyright [year] [name of copyright owner]".
2e545ce2450a9953665f701bb05350f0d3f26275nd *
d29d9ab4614ff992b0e8de6e2b88d52b6f1f153erbowen * Copyright 2011-2016 ForgeRock AS.
d29d9ab4614ff992b0e8de6e2b88d52b6f1f153erbowen-->
88319179998c5d8d19943d09450931b88694be58takashi<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">
88319179998c5d8d19943d09450931b88694be58takashi <modelVersion>4.0.0</modelVersion>
88319179998c5d8d19943d09450931b88694be58takashi
af33a4994ae2ff15bc67d19ff1a7feb906745bf8rbowen <!-- Parent Project -->
3f08db06526d6901aa08c110b5bc7dde6bc39905nd <parent>
88319179998c5d8d19943d09450931b88694be58takashi <groupId>org.forgerock.openam</groupId>
88319179998c5d8d19943d09450931b88694be58takashi <artifactId>openam-distribution</artifactId>
88319179998c5d8d19943d09450931b88694be58takashi <version>14.0.0-M6</version>
3f08db06526d6901aa08c110b5bc7dde6bc39905nd </parent>
88319179998c5d8d19943d09450931b88694be58takashi
88319179998c5d8d19943d09450931b88694be58takashi <!-- Component Definition -->
88319179998c5d8d19943d09450931b88694be58takashi <name>OpenAM Distribution Fedlet UnConfigured</name>
88319179998c5d8d19943d09450931b88694be58takashi <description>OpenAM Distribution Fedlet UnConfigured</description>
88319179998c5d8d19943d09450931b88694be58takashi <artifactId>openam-distribution-fedlet-unconfigured</artifactId>
f086b4b402fa9a2fefc7dda85de2a3cc1cd0a654rjung <packaging>pom</packaging>
88319179998c5d8d19943d09450931b88694be58takashi
88319179998c5d8d19943d09450931b88694be58takashi <!-- Build -->
88319179998c5d8d19943d09450931b88694be58takashi <build>
88319179998c5d8d19943d09450931b88694be58takashi <finalName>Fedlet-${project.version}</finalName>
88319179998c5d8d19943d09450931b88694be58takashi <plugins>
88319179998c5d8d19943d09450931b88694be58takashi <plugin>
9a58dc6a2b26ec128b1270cf48810e705f1a90dbsf <groupId>org.apache.maven.plugins</groupId>
ecdc51f25765b81b6d07389c6fa02a9529411f5drbowen <artifactId>maven-assembly-plugin</artifactId>
9a58dc6a2b26ec128b1270cf48810e705f1a90dbsf <executions>
88319179998c5d8d19943d09450931b88694be58takashi <execution>
88319179998c5d8d19943d09450931b88694be58takashi <id>fedlet-assembly</id>
88319179998c5d8d19943d09450931b88694be58takashi <phase>package</phase>
88319179998c5d8d19943d09450931b88694be58takashi <goals>
88319179998c5d8d19943d09450931b88694be58takashi <goal>single</goal>
88319179998c5d8d19943d09450931b88694be58takashi </goals>
88319179998c5d8d19943d09450931b88694be58takashi <configuration>
88319179998c5d8d19943d09450931b88694be58takashi <appendAssemblyId>false</appendAssemblyId>
88319179998c5d8d19943d09450931b88694be58takashi <tarLongFileMode>gnu</tarLongFileMode>
88319179998c5d8d19943d09450931b88694be58takashi <descriptors>
88319179998c5d8d19943d09450931b88694be58takashi <descriptor>src/main/assembly/openAMFedlet_ZIP_Assembly_Descriptor.xml</descriptor>
88319179998c5d8d19943d09450931b88694be58takashi </descriptors>
88319179998c5d8d19943d09450931b88694be58takashi </configuration>
88319179998c5d8d19943d09450931b88694be58takashi </execution>
88319179998c5d8d19943d09450931b88694be58takashi </executions>
88319179998c5d8d19943d09450931b88694be58takashi </plugin>
88319179998c5d8d19943d09450931b88694be58takashi </plugins>
88319179998c5d8d19943d09450931b88694be58takashi </build>
88319179998c5d8d19943d09450931b88694be58takashi
88319179998c5d8d19943d09450931b88694be58takashi <dependencies>
88319179998c5d8d19943d09450931b88694be58takashi <dependency>
88319179998c5d8d19943d09450931b88694be58takashi <groupId>org.forgerock.openam</groupId>
88319179998c5d8d19943d09450931b88694be58takashi <artifactId>openam-fedlet-unconfigured-war</artifactId>
88319179998c5d8d19943d09450931b88694be58takashi <type>war</type>
9a58dc6a2b26ec128b1270cf48810e705f1a90dbsf </dependency>
88319179998c5d8d19943d09450931b88694be58takashi </dependencies>
88319179998c5d8d19943d09450931b88694be58takashi</project>
88319179998c5d8d19943d09450931b88694be58takashi
88319179998c5d8d19943d09450931b88694be58takashi