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