pom.xml revision d675d343e644b8a0ac4363eec8108e13cb76c816
2N/A<?xml version="1.0" encoding="UTF-8"?>
2N/A<!--
2N/A* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
2N/A*
2N/A* Copyright 2011-2015 ForgeRock AS.
2N/A*
2N/A* The contents of this file are subject to the terms
2N/A* of the Common Development and Distribution License
2N/A* (the License). You may not use this file except in
2N/A* compliance with the License.
2N/A*
2N/A* You can obtain a copy of the License at
2N/A* http://forgerock.org/license/CDDLv1.0.html
2N/A* See the License for the specific language governing
2N/A* permission and limitations under the License.
2N/A*
2N/A* When distributing Covered Code, include this CDDL
2N/A* Header Notice in each file and include the License file
2N/A* at http://forgerock.org/license/CDDLv1.0.html
2N/A* If applicable, add the following below the CDDL Header,
2N/A* with the fields enclosed by brackets [] replaced by
2N/A* your own identifying information:
2N/A* "Portions Copyrighted [year] [name of copyright owner]"
2N/A*
2N/A-->
2N/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">
2N/A <modelVersion>4.0.0</modelVersion>
2N/A
2N/A <!-- Parent Project -->
2N/A <parent>
2N/A <groupId>org.forgerock.openam</groupId>
2N/A <artifactId>openam</artifactId>
2N/A <version>13.0.0-SNAPSHOT</version>
2N/A </parent>
2N/A
2N/A <!-- Component Definition -->
2N/A <name>OpenAM OAuth</name>
2N/A <description>OpenAM OAuth Modules</description>
2N/A <artifactId>openam-oauth</artifactId>
2N/A <packaging>jar</packaging>
2N/A
2N/A <!-- Build -->
2N/A <build>
2N/A <plugins>
2N/A <plugin>
2N/A <groupId>org.apache.maven.plugins</groupId>
2N/A <artifactId>maven-jar-plugin</artifactId>
2N/A <configuration>
2N/A <archive>
2N/A <index>true</index>
2N/A <manifest>
2N/A <addClasspath>true</addClasspath>
2N/A <classpathPrefix>lib/</classpathPrefix>
2N/A </manifest>
2N/A <manifestEntries>
2N/A <Specification-Title>OpenAM OAuth Module</Specification-Title>
2N/A <Specification-Version>${project.version} - ${maven.build.timestamp}</Specification-Version>
2N/A <Specification-Vendor>ForgeRock</Specification-Vendor>
2N/A <Implementation-Title>OpenAM OAuth Module</Implementation-Title>
2N/A <Implementation-Version>${project.version} - ${maven.build.timestamp}</Implementation-Version>
2N/A <Implementation-Vendor>ForgeRock</Implementation-Vendor>
2N/A <Built-By>${user.name}</Built-By>
2N/A <Build-Jdk>${java.version}</Build-Jdk>
2N/A <Build-Time>${maven.build.timestamp}</Build-Time>
2N/A <Version>${project.version}</Version>
2N/A <Create-On>${maven.build.timestamp}</Create-On>
2N/A <Revision>${git.short.sha1}</Revision>
2N/A <!-- TODO Add License to Manifest -->
2N/A <License />
2N/A </manifestEntries>
2N/A </archive>
2N/A </configuration>
2N/A </plugin>
2N/A </plugins>
2N/A </build>
2N/A
2N/A
2N/A <dependencies>
2N/A
2N/A <dependency>
2N/A <groupId>org.forgerock.openam</groupId>
2N/A <artifactId>openam-core</artifactId>
2N/A </dependency>
2N/A
2N/A <dependency>
2N/A <groupId>com.sun.jersey.contribs.jersey-oauth</groupId>
2N/A <artifactId>oauth-client</artifactId>
2N/A </dependency>
2N/A
2N/A <dependency>
2N/A <groupId>com.sun.jersey.contribs.jersey-oauth</groupId>
2N/A <artifactId>oauth-server</artifactId>
2N/A </dependency>
2N/A
2N/A <dependency>
2N/A <groupId>com.sun.jersey.contribs.jersey-oauth</groupId>
2N/A <artifactId>oauth-signature</artifactId>
2N/A </dependency>
2N/A
2N/A <dependency>
2N/A <groupId>com.sun.jersey</groupId>
2N/A <artifactId>jersey-bundle</artifactId>
2N/A </dependency>
2N/A </dependencies>
2N/A</project>
2N/A