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