2788N/A<?xml version="1.0" encoding="UTF-8"?>
2788N/A<!--
2788N/A *
2788N/A * Copyright 2013-2015 ForgeRock AS.
2788N/A *
2788N/A * The contents of this file are subject to the terms of the Common Development and
2788N/A * Distribution License (the License). You may not use this file except in compliance with the
2788N/A * License.
2788N/A *
2788N/A * You can obtain a copy of the License at legal/CDDLv1.0.txt. See the License for the
2788N/A * specific language governing permission and limitations under the License.
2788N/A *
2788N/A * When distributing Covered Software, include this CDDL Header Notice in each file and include
2788N/A * the License file at legal/CDDLv1.0.txt. If applicable, add the following below the CDDL
2788N/A * Header, with the fields enclosed by brackets [] replaced by your own identifying
2788N/A * information: "Portions copyright [year] [name of copyright owner]".
2788N/A *
2788N/A-->
2788N/A<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2788N/A xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
2788N/A
2788N/A <modelVersion>4.0.0</modelVersion>
2788N/A
2788N/A <parent>
2788N/A <groupId>org.forgerock.openam.agents</groupId>
3215N/A <artifactId>jee-agents-sampleapp-jboss</artifactId>
2788N/A <version>3.5.0</version>
2788N/A </parent>
2788N/A
3853N/A <name>OpenAM JavaEE Policy Agents SampleApp JBoss EAR</name>
3853N/A <description>OpenAM JavaEE Policy Agents SampleApp JBoss EAR</description>
3853N/A <artifactId>jee-agents-sampleapp-jboss-ear</artifactId>
3853N/A
3853N/A <packaging>ear</packaging>
3853N/A
3853N/A <build>
3853N/A <plugins>
3853N/A <plugin>
3853N/A <groupId>org.apache.maven.plugins</groupId>
3853N/A <artifactId>maven-ear-plugin</artifactId>
3853N/A <configuration>
3853N/A <modules>
3853N/A <webModule>
3853N/A <groupId>org.forgerock.openam.agents</groupId>
3853N/A <artifactId>jee-agents-sampleapp-jboss-war</artifactId>
3853N/A <!-- To match the value in the application.xml -->
3853N/A <bundleFileName>agentservlets.war</bundleFileName>
3853N/A </webModule>
3853N/A <ejbModule>
3853N/A <groupId>org.forgerock.openam.agents</groupId>
3853N/A <artifactId>jee-agents-sampleapp-jboss-ejb</artifactId>
3853N/A <!-- To match the value in the application.xml -->
3853N/A <bundleFileName>agentejb.jar</bundleFileName>
2788N/A </ejbModule>
2788N/A </modules>
2788N/A </configuration>
2788N/A </plugin>
2788N/A </plugins>
2788N/A </build>
3853N/A
3853N/A <dependencies>
3853N/A <dependency>
2788N/A <groupId>org.forgerock.openam.agents</groupId>
2788N/A <artifactId>jee-agents-sampleapp-jboss-war</artifactId>
2788N/A <type>war</type>
2788N/A <scope>provided</scope>
2788N/A </dependency>
3853N/A <dependency>
3853N/A <groupId>org.forgerock.openam.agents</groupId>
3853N/A <artifactId>jee-agents-sampleapp-jboss-ejb</artifactId>
2788N/A <type>ejb</type>
2788N/A <scope>provided</scope>
2788N/A </dependency>
2788N/A </dependencies>
2788N/A</project>
2788N/A