pom.xml revision fe0e28a60f7379a33c7ae0de9afd92ffd40d62a7
10139N/A<?xml version="1.0" encoding="UTF-8"?>
10139N/A<!--
10139N/A *
12243N/A * Copyright 2013 ForgeRock AS.
10139N/A *
10139N/A * The contents of this file are subject to the terms of the Common Development and
10139N/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.
10139N/A *
12451N/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]".
10139N/A *
12451N/A-->
10139N/A<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
10139N/A xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
10139N/A
10139N/A <modelVersion>4.0.0</modelVersion>
10139N/A
10139N/A <parent>
10139N/A <groupId>org.forgerock.openam.agents</groupId>
10139N/A <artifactId>jee-agents-sampleapp-websphere</artifactId>
10139N/A <version>4.0.0-SNAPSHOT</version>
10139N/A </parent>
10139N/A
10139N/A <name>OpenAM JavaEE Policy Agents SampleApp Websphere EJB</name>
10139N/A <description>OpenAM JavaEE Policy Agents SampleApp Websphere EJB</description>
10139N/A <artifactId>jee-agents-sampleapp-websphere-ejb</artifactId>
10139N/A
10139N/A <properties>
10139N/A <jee-agents.properties>/jee-agents.properties</jee-agents.properties>
10139N/A </properties>
10139N/A
10139N/A <packaging>jar</packaging>
10139N/A
10139N/A <build>
10139N/A <plugins>
10139N/A <plugin>
10139N/A <groupId>org.apache.maven.plugins</groupId>
10139N/A <artifactId>maven-shade-plugin</artifactId>
10139N/A <executions>
10139N/A <execution>
10139N/A <phase>package</phase>
10139N/A <goals>
10139N/A <goal>shade</goal>
10139N/A </goals>
10139N/A <configuration>
10139N/A <filters>
10139N/A <filter>
10139N/A <artifact>org.forgerock.openam.agents:jee-agents-sampleapp-ejb</artifact>
10139N/A <includes>
10139N/A <include>**/*.class</include>
10139N/A </includes>
10139N/A </filter>
10139N/A </filters>
10139N/A <transformers>
10139N/A <transformer implementation="org.apache.maven.plugins.shade.resource.IncludeResourceTransformer">
10139N/A <resource>META-INF/*.xml</resource>
10139N/A </transformer>
10139N/A </transformers>
10139N/A </configuration>
10139N/A </execution>
10139N/A </executions>
10139N/A </plugin>
10139N/A </plugins>
10139N/A </build>
10139N/A <dependencies>
10139N/A <dependency>
10139N/A <groupId>org.forgerock.openam.agents</groupId>
10139N/A <artifactId>jee-agents-sampleapp-ejb</artifactId>
10139N/A <version>${project.version}</version>
10139N/A </dependency>
10139N/A </dependencies>
10139N/A</project>
10139N/A