3N/A<?xml version="1.0" encoding="UTF-8"?>
3N/A<!--
3N/A *
3N/A * Copyright 2013-2015 ForgeRock AS.
38N/A *
3N/A * The contents of this file are subject to the terms of the Common Development and
3N/A * Distribution License (the License). You may not use this file except in compliance with the
3N/A * License.
3N/A *
3N/A * You can obtain a copy of the License at legal/CDDLv1.0.txt. See the License for the
3N/A * specific language governing permission and limitations under the License.
3N/A *
3N/A * When distributing Covered Software, include this CDDL Header Notice in each file and include
3N/A * the License file at legal/CDDLv1.0.txt. If applicable, add the following below the CDDL
3N/A * Header, with the fields enclosed by brackets [] replaced by your own identifying
3N/A * information: "Portions copyright [year] [name of copyright owner]".
3N/A *
3N/A-->
3N/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">
3N/A <modelVersion>4.0.0</modelVersion>
3N/A
3N/A <!-- Parent Project -->
3N/A <parent>
3N/A <groupId>org.forgerock.openam.agents</groupId>
3N/A <artifactId>jee-agents</artifactId>
38N/A <version>3.5.0</version>
3N/A </parent>
3N/A
38N/A <!-- Component Definition -->
3N/A <name>OpenAM JavaEE Policy Agents AgentApp</name>
3N/A <description>OpenAM JavaEE Policy Agents AgentApp</description>
349N/A <artifactId>jee-agents-agentapp</artifactId>
3N/A <packaging>war</packaging>
30N/A
89N/A <dependencies>
271N/A <dependency>
3N/A <groupId>org.forgerock.openam.agents</groupId>
3N/A <artifactId>jee-agents-sdk</artifactId>
3N/A <scope>provided</scope>
38N/A </dependency>
3N/A </dependencies>
3N/A <build>
3N/A <plugins>
3N/A <plugin>
3N/A <artifactId>maven-war-plugin</artifactId>
3N/A <configuration>
30N/A <!-- exclude all libs since we expect them to come from the container's classpath setup during the install -->
89N/A <packagingExcludes>WEB-INF/lib/*.jar</packagingExcludes>
271N/A <archive>
349N/A <manifestEntries>
38N/A <Dependencies>org.forgerock.openam.agent</Dependencies>
349N/A </manifestEntries>
38N/A </archive>
3N/A </configuration>
3N/A </plugin>
3N/A </plugins>
38N/A </build>
38N/A</project>
38N/A