pom.xml revision 16651a2450d2672ea2eb2751bd775918497432d7
1690N/A<?xml version="1.0" encoding="UTF-8"?>
1690N/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">
1690N/A <modelVersion>4.0.0</modelVersion>
1690N/A
1690N/A<!--
1690N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
1690N/A *
1690N/A * Copyright (c) 2011 ForgeRock AS. All Rights Reserved
1690N/A *
1690N/A * The contents of this file are subject to the terms
1690N/A * of the Common Development and Distribution License
1690N/A * (the License). You may not use this file except in
1690N/A * compliance with the License.
1690N/A *
1690N/A * You can obtain a copy of the License at
1690N/A * http://forgerock.org/license/CDDLv1.0.html
1690N/A * See the License for the specific language governing
1690N/A * permission and limitations under the License.
1690N/A *
1690N/A * When distributing Covered Code, include this CDDL
1690N/A * Header Notice in each file and include the License file
1690N/A * at http://forgerock.org/license/CDDLv1.0.html
1690N/A * If applicable, add the following below the CDDL Header,
1690N/A * with the fields enclosed by brackets [] replaced by
5133N/A * your own identifying information:
1690N/A * "Portions Copyrighted [year] [name of copyright owner]"
1690N/A *
1690N/A -->
2601N/A
1690N/A <!-- Parent Project -->
3853N/A <parent>
3853N/A <groupId>org.forgerock.openam</groupId>
3853N/A <artifactId>openam</artifactId>
3853N/A <version>10.2.0-SNAPSHOT</version>
3853N/A </parent>
3853N/A
3853N/A <!-- Component Definition -->
1690N/A <name>OpenAM Shared</name>
1690N/A <description>OpenAM Shared Components and Modules
2601N/A </description>
1690N/A <artifactId>openam-shared</artifactId>
1690N/A <packaging>jar</packaging>
1690N/A
2601N/A <!-- Build -->
1690N/A <build>
2601N/A <plugins>
2601N/A
2601N/A <plugin>
2601N/A <inherited>true</inherited>
2601N/A <groupId>org.apache.maven.plugins</groupId>
2601N/A <artifactId>maven-compiler-plugin</artifactId>
1690N/A <configuration>
1690N/A <source>${java.source.version}</source>
2601N/A <target>${java.target.version}</target>
3352N/A <encoding>UTF-8</encoding>
2601N/A </configuration>
2601N/A </plugin>
2601N/A
1886N/A <!-- Surefire Tests -->
1886N/A <plugin>
2601N/A <groupId>org.apache.maven.plugins</groupId>
2601N/A <artifactId>maven-surefire-plugin</artifactId>
2601N/A <configuration>
1690N/A <systemPropertyVariables>
1690N/A <templateLoaderPath>${notification.template.path}</templateLoaderPath>
1690N/A </systemPropertyVariables>
1690N/A <excludes>
3902N/A <exclude>**/IT_*</exclude>
2601N/A </excludes>
2601N/A </configuration>
1690N/A </plugin>
1690N/A
4134N/A <plugin>
1690N/A <groupId>org.apache.maven.plugins</groupId>
1690N/A <artifactId>maven-jar-plugin</artifactId>
3853N/A <configuration>
1690N/A <archive>
1690N/A <index>true</index>
1690N/A <manifest>
2601N/A <addClasspath>true</addClasspath>
2601N/A <classpathPrefix>lib/</classpathPrefix>
1690N/A </manifest>
1690N/A <manifestEntries>
1690N/A <Specification-Title>OpenAM Shared Components</Specification-Title>
1690N/A <Specification-Version>${project.version} - ${maven.build.timestamp}</Specification-Version>
2601N/A <Specification-Vendor>ForgeRock</Specification-Vendor>
2601N/A <Implementation-Title>OpenAM Shared Components</Implementation-Title>
2601N/A <Implementation-Version>${project.version} - ${maven.build.timestamp}</Implementation-Version>
2601N/A <Implementation-Vendor>ForgeRock</Implementation-Vendor>
1690N/A <Built-By>${user.name}</Built-By>
2601N/A <Build-Jdk>${java.version}</Build-Jdk>
2601N/A <Build-Time>${maven.build.timestamp}</Build-Time>
2601N/A <Version>${project.version}</Version>
2601N/A <Create-On>${maven.build.timestamp}</Create-On>
2601N/A <SVN-Revision>R${svn-revision.revision}</SVN-Revision>
2601N/A <!-- TODO Add License to Manifest -->
2601N/A <License />
4156N/A </manifestEntries>
4156N/A </archive>
4156N/A </configuration>
4156N/A </plugin>
2601N/A
4156N/A </plugins>
4156N/A
4156N/A <resources>
4156N/A <resource>
2601N/A <filtering>false</filtering>
4156N/A <directory>src/main/resources</directory>
4156N/A <includes>
4156N/A <include>**/*</include>
4156N/A </includes>
1690N/A <excludes>
4156N/A <exclude>version_information.txt</exclude>
4156N/A </excludes>
4156N/A </resource>
4156N/A <resource>
1690N/A <filtering>true</filtering>
4156N/A <directory>src/main/resources</directory>
4156N/A <includes>
4156N/A <include>version_information.txt</include>
4156N/A </includes>
2601N/A </resource>
4156N/A </resources>
4156N/A <testResources>
4156N/A <testResource>
4156N/A <filtering>false</filtering>
2601N/A <directory>src/test/resources</directory>
4156N/A <includes>
4156N/A <include>**/*</include>
4156N/A </includes>
4156N/A </testResource>
2601N/A </testResources>
4156N/A </build>
4156N/A
4156N/A
4156N/A <dependencies>
2601N/A <dependency>
2601N/A <groupId>javax.servlet</groupId>
2601N/A <artifactId>servlet-api</artifactId>
1690N/A </dependency>
1690N/A
1690N/A <dependency>
1690N/A <groupId>external</groupId>
1690N/A <artifactId>jss4</artifactId>
1690N/A </dependency>
1690N/A
1690N/A <dependency>
1690N/A <groupId>org.json</groupId>
2601N/A <artifactId>json</artifactId>
1690N/A </dependency>
1690N/A
1690N/A <dependency>
1690N/A <groupId>org.forgerock.commons</groupId>
2601N/A <artifactId>forgerock-util</artifactId>
1690N/A </dependency>
1690N/A
1690N/A </dependencies>
1690N/A
1690N/A</project>
1690N/A