pom.xml revision d4de9ddda5fd42c488cf567ef756d6479247ed7b
<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">
<modelVersion>4.0.0</modelVersion>
<parent>
<artifactId>jee-agents-sampleapp-appserver</artifactId>
<version>3.2.0-SNAPSHOT</version>
</parent>
<name>OpenAM JavaEE Policy Agents SampleApp Appserver WAR</name>
<description>OpenAM JavaEE Policy Agents SampleApp Appserver WAR</description>
<artifactId>jee-agents-sampleapp-appserver-war</artifactId>
<properties>
</properties>
<packaging>war</packaging>
<build>
<plugins>
<plugin>
<artifactId>maven-war-plugin</artifactId>
<configuration>
<webResources>
<resource>
<targetPath>images</targetPath>
</resource>
<resource>
<targetPath>jsp</targetPath>
</resource>
<resource>
<targetPath>public</targetPath>
</resource>
<resource>
<targetPath>authentication</targetPath>
</resource>
<resource>
<targetPath>jsp</targetPath>
</resource>
<resource>
<targetPath>public</targetPath>
</resource>
<resource>
<targetPath></targetPath>
<includes>
<include>*.html</include>
</includes>
</resource>
</webResources>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<artifactId>jee-agents-sampleapp-webservlet</artifactId>
</dependency>
<dependency>
<artifactId>jee-agents-sampleapp-ejbservlet</artifactId>
</dependency>
<dependency>
<artifactId>jee-agents-sampleapp-ejb</artifactId>
<scope>provided</scope>
</dependency>
</dependencies>
</project>