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