pom.xml revision fe0e28a60f7379a33c7ae0de9afd92ffd40d62a7
10139N/A<?xml version="1.0" encoding="UTF-8"?>
10139N/A<!--
10139N/A *
12219N/A * Copyright 2013 ForgeRock AS.
10139N/A *
10139N/A * The contents of this file are subject to the terms of the Common Development and
12352N/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.
12296N/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]".
11922N/A *
10139N/A-->
11027N/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">
10139N/A <modelVersion>4.0.0</modelVersion>
10139N/A
10139N/A <!-- Parent Project -->
10139N/A <parent>
10139N/A <groupId>org.forgerock.openam.agents</groupId>
10139N/A <artifactId>openam-agents</artifactId>
10139N/A <version>4.0.0-SNAPSHOT</version>
10139N/A </parent>
10139N/A
10139N/A <!-- Component Definition -->
10139N/A <name>OpenAM JavaEE Policy Agents</name>
10139N/A <description>OpenAM JavaEE Policy Agents</description>
10139N/A <artifactId>jee-agents</artifactId>
10139N/A <packaging>pom</packaging>
10139N/A <properties>
10139N/A <jee-agents.properties>jee-agents.properties</jee-agents.properties>
10139N/A <openam.version>11.0.0-SNAPSHOT</openam.version>
10139N/A </properties>
10139N/A <modules>
10139N/A <!-- OpenAM JavaEE Policy Agent Modules -->
10139N/A <module>jee-agents-sdk</module>
10139N/A <module>jee-agents-agentapp</module>
10139N/A <module>jee-agents-tomcat</module>
10139N/A <module>jee-agents-jboss</module>
10139N/A <module>jee-agents-jetty</module>
10139N/A <module>jee-agents-appserver</module>
10139N/A <module>jee-agents-weblogic</module>
10139N/A <module>jee-agents-websphere</module>
10139N/A <module>jee-agents-jsr196</module>
10139N/A <module>jee-agents-sampleapp</module>
10139N/A <module>jee-agents-distribution</module>
11027N/A </modules>
10139N/A
10139N/A <build>
10139N/A <plugins>
10139N/A <!-- Inject Specified Build Properties-->
10139N/A <plugin>
10139N/A <groupId>org.codehaus.mojo</groupId>
10139N/A <artifactId>properties-maven-plugin</artifactId>
10139N/A <version>1.0-alpha-2</version>
10139N/A <inherited>true</inherited>
10139N/A <executions>
10139N/A <execution>
10139N/A <phase>initialize</phase>
10139N/A <goals>
10139N/A <goal>read-project-properties</goal>
10139N/A </goals>
10139N/A <configuration>
10139N/A <files>
10139N/A <file>${jee-agents.properties}</file>
10139N/A </files>
10139N/A </configuration>
10139N/A </execution>
10139N/A </executions>
10139N/A </plugin>
10139N/A </plugins>
10139N/A <pluginManagement>
10139N/A <plugins>
10139N/A <plugin>
10139N/A <groupId>org.apache.maven.plugins</groupId>
10139N/A <artifactId>maven-ear-plugin</artifactId>
10139N/A <version>2.8</version>
10139N/A </plugin>
10139N/A </plugins>
10139N/A </pluginManagement>
10139N/A </build>
10139N/A
10139N/A <dependencies>
10139N/A <!-- External dependencies -->
10139N/A <dependency>
10139N/A <groupId>javax.servlet</groupId>
10139N/A <artifactId>servlet-api</artifactId>
10139N/A <version>2.5</version>
10139N/A <scope>provided</scope>
10139N/A </dependency>
10139N/A <dependency>
10139N/A <groupId>javax.servlet.jsp</groupId>
10139N/A <artifactId>jsp-api</artifactId>
10139N/A <version>2.1</version>
10139N/A <scope>provided</scope>
10139N/A </dependency>
10139N/A <dependency>
10139N/A <groupId>javaee</groupId>
10139N/A <artifactId>javaee-api</artifactId>
10139N/A <version>5</version>
10139N/A <scope>provided</scope>
10139N/A </dependency>
10139N/A <dependency>
10139N/A <groupId>commons-io</groupId>
10139N/A <artifactId>commons-io</artifactId>
10139N/A <version>1.4</version>
10139N/A <scope>provided</scope>
10139N/A </dependency>
10139N/A <!-- OpenAM project dependencies -->
12288N/A <dependency>
12296N/A <groupId>org.forgerock.openam</groupId>
12296N/A <artifactId>openam-clientsdk</artifactId>
12296N/A <version>${openam.version}</version>
12288N/A <scope>provided</scope>
12288N/A </dependency>
12219N/A <dependency>
12219N/A <groupId>org.forgerock.openam</groupId>
12219N/A <artifactId>openam-installtools</artifactId>
12072N/A <version>${openam.version}</version>
12072N/A <scope>provided</scope>
12072N/A </dependency>
12022N/A <dependency>
12022N/A <groupId>org.forgerock.openam</groupId>
12022N/A <artifactId>openam-installtools-launcher</artifactId>
11922N/A <version>${openam.version}</version>
11922N/A <scope>provided</scope>
11922N/A </dependency>
11416N/A </dependencies>
11416N/A</project>
11416N/A
11377N/A