pom.xml revision 92a971c897f707d8ddb833f5c5765944216aa2c5
1612N/A<?xml version="1.0" encoding="UTF-8"?>
1879N/A<!--
1612N/A *
1612N/A * Copyright 2013 ForgeRock, Inc.
1612N/A *
1612N/A * The contents of this file are subject to the terms of the Common Development and
1612N/A * Distribution License (the License). You may not use this file except in compliance with the
1612N/A * License.
1612N/A *
1612N/A * You can obtain a copy of the License at legal/CDDLv1.0.txt. See the License for the
1612N/A * specific language governing permission and limitations under the License.
1612N/A *
1612N/A * When distributing Covered Software, include this CDDL Header Notice in each file and include
1612N/A * the License file at legal/CDDLv1.0.txt. If applicable, add the following below the CDDL
1612N/A * Header, with the fields enclosed by brackets [] replaced by your own identifying
1612N/A * information: "Portions copyright [year] [name of copyright owner]".
1612N/A *
1612N/A-->
1612N/A<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
1612N/A xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
1612N/A
1612N/A <modelVersion>4.0.0</modelVersion>
1612N/A
1612N/A <parent>
1612N/A <groupId>org.forgerock.openam.agents</groupId>
1879N/A <artifactId>jee-agents-sampleapp-appserver</artifactId>
1879N/A <version>3.2.0-SNAPSHOT</version>
1879N/A </parent>
1879N/A
1879N/A <name>OpenAM JavaEE Policy Agents SampleApp Appserver EJB</name>
1879N/A <description>OpenAM JavaEE Policy Agents SampleApp Appserver EJB</description>
1879N/A <artifactId>jee-agents-sampleapp-appserver-ejb</artifactId>
1879N/A
1612N/A <properties>
1612N/A <jee-agents.properties>/jee-agents.properties</jee-agents.properties>
1612N/A </properties>
1612N/A
1612N/A <packaging>jar</packaging>
1612N/A
1612N/A <build>
1612N/A <plugins>
1612N/A <plugin>
1612N/A <groupId>org.apache.maven.plugins</groupId>
1612N/A <artifactId>maven-shade-plugin</artifactId>
1612N/A <executions>
1612N/A <execution>
1612N/A <phase>package</phase>
1612N/A <goals>
1612N/A <goal>shade</goal>
1612N/A </goals>
1612N/A <configuration>
1612N/A <filters>
1612N/A <filter>
1612N/A <artifact>org.forgerock.openam.agents:jee-agents-sampleapp-ejb</artifact>
1612N/A <includes>
1612N/A <include>**/*.class</include>
1612N/A </includes>
1612N/A </filter>
1612N/A </filters>
1612N/A <transformers>
1612N/A <transformer implementation="org.apache.maven.plugins.shade.resource.IncludeResourceTransformer">
1612N/A <resource>META-INF/*.xml</resource>
1612N/A </transformer>
1612N/A </transformers>
1612N/A </configuration>
1612N/A </execution>
1612N/A </executions>
1612N/A </plugin>
1612N/A </plugins>
1612N/A </build>
1612N/A <dependencies>
1612N/A <dependency>
1612N/A <groupId>org.forgerock.openam.agents</groupId>
1612N/A <artifactId>jee-agents-sampleapp-ejb</artifactId>
1612N/A <version>${project.version}</version>
1612N/A </dependency>
1612N/A </dependencies>
1612N/A</project>
1612N/A