pom.xml revision fe0e28a60f7379a33c7ae0de9afd92ffd40d62a7
10139N/A<?xml version="1.0" encoding="UTF-8"?>
10139N/A<!--
10139N/A *
10139N/A * Copyright 2013 ForgeRock AS.
10139N/A *
10139N/A * The contents of this file are subject to the terms of the Common Development and
10139N/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]".
10139N/A *
10139N/A-->
10139N/A<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
10139N/A xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
10139N/A
10139N/A <modelVersion>4.0.0</modelVersion>
10139N/A
10139N/A <parent>
10139N/A <groupId>org.forgerock.openam.agents</groupId>
10139N/A <artifactId>jee-agents-sampleapp-jsr196</artifactId>
10139N/A <version>4.0.0-SNAPSHOT</version>
10139N/A </parent>
10139N/A
10139N/A <name>OpenAM JavaEE Policy Agents SampleApp JSR196 WAR</name>
10139N/A <description>OpenAM JavaEE Policy Agents SampleApp JSR196 WAR</description>
10139N/A <artifactId>jee-agents-sampleapp-jsr196-war</artifactId>
10139N/A
10139N/A <properties>
10139N/A <jee-agents.properties>/jee-agents.properties</jee-agents.properties>
10139N/A </properties>
10139N/A
10139N/A <packaging>war</packaging>
10139N/A
10139N/A <build>
10139N/A <plugins>
10139N/A <plugin>
10139N/A <groupId>org.apache.maven.plugins</groupId>
10139N/A <artifactId>maven-war-plugin</artifactId>
10139N/A <configuration>
10139N/A <webResources>
10139N/A <resource>
10139N/A <targetPath>images</targetPath>
10139N/A <directory>${project.basedir}/src/main/assembly/docroot/images</directory>
10139N/A </resource>
10139N/A <resource>
10139N/A <targetPath>jsp</targetPath>
10139N/A <directory>${project.basedir}/src/main/assembly/docroot/ejb/jsp</directory>
10139N/A </resource>
10139N/A <resource>
10139N/A <targetPath>public</targetPath>
10139N/A <directory>${project.basedir}/src/main/assembly/docroot/ejb/public</directory>
10139N/A </resource>
10139N/A <resource>
10139N/A <targetPath>authentication</targetPath>
10139N/A <directory>${project.basedir}/src/main/assembly/docroot/shared/authentication</directory>
10139N/A </resource>
10139N/A <resource>
10139N/A <targetPath>jsp</targetPath>
10139N/A <directory>${project.basedir}/src/main/assembly/docroot/shared/jsp</directory>
10139N/A </resource>
10139N/A <resource>
10139N/A <targetPath>public</targetPath>
10139N/A <directory>${project.basedir}/src/main/assembly/docroot/shared/public</directory>
10139N/A </resource>
10139N/A <resource>
10139N/A <targetPath></targetPath>
10139N/A <directory>${project.basedir}/src/main/assembly/docroot/shared</directory>
10139N/A <includes>
10139N/A <include>*.html</include>
10139N/A </includes>
10139N/A </resource>
10139N/A </webResources>
10139N/A </configuration>
10139N/A </plugin>
10139N/A </plugins>
10139N/A </build>
10139N/A <dependencies>
10139N/A <dependency>
10139N/A <groupId>org.forgerock.openam.agents</groupId>
10139N/A <artifactId>jee-agents-sampleapp-webservlet</artifactId>
10139N/A <version>${project.version}</version>
10139N/A </dependency>
10139N/A <dependency>
10139N/A <groupId>org.forgerock.openam.agents</groupId>
10139N/A <artifactId>jee-agents-sampleapp-ejbservlet</artifactId>
10139N/A <version>${project.version}</version>
10139N/A </dependency>
10139N/A <dependency>
10139N/A <groupId>org.forgerock.openam.agents</groupId>
10139N/A <artifactId>jee-agents-sampleapp-ejb</artifactId>
10139N/A <version>${project.version}</version>
10139N/A <scope>provided</scope>
10139N/A </dependency>
10139N/A </dependencies>
10139N/A</project>
10139N/A