pom.xml revision fe0e28a60f7379a33c7ae0de9afd92ffd40d62a7
2788N/A<?xml version="1.0" encoding="UTF-8"?>
2788N/A<!--
2788N/A *
2788N/A * Copyright 2013 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
6982N/A * specific language governing permission and limitations under the License.
6982N/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]".
6982N/A *
6982N/A-->
6982N/A<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
6982N/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>
5061N/A <groupId>org.forgerock.openam.agents</groupId>
6063N/A <artifactId>jee-agents-sampleapp-jsr196</artifactId>
2788N/A <version>4.0.0-SNAPSHOT</version>
2788N/A </parent>
2788N/A
3853N/A <name>OpenAM JavaEE Policy Agents SampleApp JSR196 EJB</name>
3853N/A <description>OpenAM JavaEE Policy Agents SampleApp JSR196 EJB</description>
3853N/A <artifactId>jee-agents-sampleapp-jsr196-ejb</artifactId>
3853N/A
3853N/A <properties>
3853N/A <jee-agents.properties>/jee-agents.properties</jee-agents.properties>
3853N/A </properties>
3853N/A
3853N/A <packaging>jar</packaging>
3853N/A
3853N/A <build>
3853N/A <plugins>
3853N/A <plugin>
3853N/A <groupId>org.apache.maven.plugins</groupId>
3853N/A <artifactId>maven-shade-plugin</artifactId>
3853N/A <executions>
3853N/A <execution>
3853N/A <phase>package</phase>
3853N/A <goals>
3853N/A <goal>shade</goal>
3853N/A </goals>
3853N/A <configuration>
3853N/A <filters>
3853N/A <filter>
6304N/A <artifact>org.forgerock.openam.agents:jee-agents-sampleapp-ejb</artifact>
6304N/A <includes>
6304N/A <include>**/*.class</include>
6304N/A </includes>
6304N/A </filter>
6304N/A </filters>
6304N/A <transformers>
6304N/A <transformer implementation="org.apache.maven.plugins.shade.resource.IncludeResourceTransformer">
6304N/A <resource>META-INF/*.xml</resource>
6304N/A </transformer>
6304N/A </transformers>
6304N/A </configuration>
6304N/A </execution>
6304N/A </executions>
6304N/A </plugin>
6304N/A </plugins>
6304N/A </build>
6304N/A <dependencies>
6304N/A <dependency>
6304N/A <groupId>org.forgerock.openam.agents</groupId>
6304N/A <artifactId>jee-agents-sampleapp-ejb</artifactId>
6304N/A <version>${project.version}</version>
6304N/A </dependency>
6304N/A </dependencies>
6304N/A</project>
6304N/A