pom.xml revision b4ea7f9e608360b7cab941d07bdd949561ed2911
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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
2788N/A <modelVersion>4.0.0</modelVersion>
2788N/A
2788N/A <!-- Parent Project -->
2788N/A <parent>
2788N/A <groupId>org.forgerock.openam.agents</groupId>
2788N/A <artifactId>jee-agents</artifactId>
5061N/A <version>3.5.0</version>
5429N/A </parent>
2788N/A
2788N/A <!-- Component Definition -->
2788N/A <name>OpenAM JavaEE Policy Agents JSR196</name>
2788N/A <description>OpenAM JavaEE Policy Agents JSR196</description>
2788N/A <artifactId>jee-agents-jsr196</artifactId>
2788N/A <packaging>jar</packaging>
2788N/A
2788N/A <build>
2788N/A <plugins>
2788N/A <plugin>
2788N/A <groupId>org.apache.maven.plugins</groupId>
2788N/A <artifactId>maven-jar-plugin</artifactId>
5362N/A <configuration>
5362N/A <archive>
5362N/A <index>true</index>
5362N/A <manifest>
5362N/A <addClasspath>false</addClasspath>
5362N/A </manifest>
5362N/A <manifestEntries>
5362N/A <Specification-Title>OpenAM JavaEE Policy Agents JSR196</Specification-Title>
5362N/A <Specification-Version>${project.version} - ${maven.build.timestamp}</Specification-Version>
5362N/A <Specification-Vendor>ForgeRock</Specification-Vendor>
5362N/A <Implementation-Title>OpenAM JavaEE Policy Agents JSR196</Implementation-Title>
5362N/A <Implementation-Version>${project.version} - ${maven.build.timestamp}
5362N/A </Implementation-Version>
5362N/A <Implementation-Vendor>ForgeRock</Implementation-Vendor>
5362N/A <Built-By>${user.name}</Built-By>
5362N/A <Build-Jdk>${java.version}</Build-Jdk>
5362N/A <Build-Time>${maven.build.timestamp}</Build-Time>
5362N/A <Version>${project.version}</Version>
5362N/A <Create-On>${maven.build.timestamp}</Create-On>
5362N/A <SVN-Revision>${svn-revision.revision}</SVN-Revision>
5362N/A <!-- TODO Add License to Manifest -->
3361N/A <License/>
2788N/A </manifestEntries>
2788N/A </archive>
2788N/A </configuration>
2788N/A </plugin>
2788N/A <plugin>
2788N/A <groupId>org.apache.maven.plugins</groupId>
2788N/A <artifactId>maven-shade-plugin</artifactId>
2788N/A <executions>
2788N/A <execution>
2788N/A <phase>package</phase>
2788N/A <goals>
2788N/A <goal>shade</goal>
2788N/A </goals>
2788N/A </execution>
2788N/A </executions>
2788N/A <configuration>
2788N/A <artifactSet>
2788N/A <includes>
2788N/A <include>org.forgerock.openam.agents:jee-agents-sdk</include>
3862N/A <include>external:esapiport</include>
3862N/A </includes>
3862N/A </artifactSet>
3862N/A </configuration>
3862N/A </plugin>
2788N/A </plugins>
2788N/A </build>
2788N/A
2788N/A <dependencies>
2788N/A <dependency>
2788N/A <groupId>org.forgerock.openam.agents</groupId>
2788N/A <artifactId>jee-agents-sdk</artifactId>
2788N/A </dependency>
2788N/A <dependency>
2788N/A <groupId>org.forgerock.openam</groupId>
2788N/A <artifactId>openam-clientsdk</artifactId>
3666N/A </dependency>
4865N/A <dependency>
5429N/A <groupId>org.forgerock.openam</groupId>
2788N/A <artifactId>openam-installtools</artifactId>
2788N/A </dependency>
2788N/A <dependency>
2788N/A <groupId>javax.security.auth.message</groupId>
2788N/A <artifactId>javax.security.auth.message-api</artifactId>
2788N/A </dependency>
2788N/A <dependency>
2788N/A <groupId>org.glassfish.security</groupId>
2788N/A <artifactId>security</artifactId>
2788N/A </dependency>
2788N/A </dependencies>
2788N/A</project>
4458N/A
4458N/A