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