pom.xml revision 7c7f40dbeab07edfdcb261387a848c36c13f99e0
3112N/A<?xml version="1.0" encoding="UTF-8"?>
3112N/A<!--
3112N/A *
3112N/A * Copyright 2013 ForgeRock, Inc.
3112N/A *
3112N/A * The contents of this file are subject to the terms of the Common Development and
3112N/A * Distribution License (the License). You may not use this file except in compliance with the
6982N/A * License.
6982N/A *
3112N/A * You can obtain a copy of the License at legal/CDDLv1.0.txt. See the License for the
3112N/A * specific language governing permission and limitations under the License.
3112N/A *
3112N/A * When distributing Covered Software, include this CDDL Header Notice in each file and include
6982N/A * the License file at legal/CDDLv1.0.txt. If applicable, add the following below the CDDL
6982N/A * Header, with the fields enclosed by brackets [] replaced by your own identifying
6982N/A * information: "Portions copyright [year] [name of copyright owner]".
3112N/A *
3112N/A-->
3112N/A<project xmlns="http://maven.apache.org/POM/4.0.0"
3112N/A xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3112N/A xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3112N/A <modelVersion>4.0.0</modelVersion>
5061N/A
6273N/A <parent>
3112N/A <groupId>org.forgerock.openam.agents</groupId>
4458N/A <artifactId>jee-agents</artifactId>
4458N/A <version>3.2.0-SNAPSHOT</version>
4458N/A </parent>
4458N/A
3832N/A <name>OpenAM JavaEE Policy Agents Distribution</name>
3832N/A <description>OpenAM JavaEE Policy Agents Distribution</description>
4458N/A <artifactId>jee-agents-distribution</artifactId>
3832N/A <packaging>pom</packaging>
3832N/A
4458N/A <properties>
4974N/A <jee-agents.properties>/jee-agents.properties</jee-agents.properties>
6568N/A <!-- To workaround a bug in Maven where the maven.build.timestamp prop is not available in file filters. -->
4458N/A <!-- See http://java.dzone.com/tips/stamping-version-number-and -->
6659N/A <build.timestamp>${maven.build.timestamp}</build.timestamp>
6568N/A </properties>
6308N/A
5580N/A <modules>
6308N/A <!-- Distribution Modules -->
4978N/A <module>jee-agents-distribution-tomcat</module>
4978N/A <module>jee-agents-distribution-jboss</module>
6308N/A <module>jee-agents-distribution-weblogic</module>
4978N/A <module>jee-agents-distribution-websphere</module>
5010N/A <module>jee-agents-distribution-jsr196</module>
4978N/A
3832N/A <!-- Activate as required
4458N/A <module>jee-agents-distribution-appserver</module>
4458N/A <module>jee-agents-distribution-jetty</module>
4458N/A -->
4458N/A
4458N/A </modules>
4458N/A
4458N/A <dependencies>
4495N/A <dependency>
4495N/A <groupId>org.forgerock.openam.agents</groupId>
4495N/A <artifactId>jee-agents-agentapp</artifactId>
4495N/A <type>war</type>
4495N/A <version>${project.version}</version>
4495N/A </dependency>
4458N/A <dependency>
4458N/A <groupId>org.forgerock.openam.agents</groupId>
4458N/A <artifactId>jee-agents-sdk</artifactId>
4458N/A <version>${project.version}</version>
4458N/A </dependency>
4714N/A </dependencies>
4714N/A</project>