pom.xml revision 2bbaf3849b4e302a1d5f936783a55fc6ee27268f
2N/A<?xml version="1.0" encoding="UTF-8"?>
2N/A
2N/A<!--
2N/A ~ DO NOT REMOVE COPYRIGHT NOTICES OR THIS HEADER.
2N/A ~
2N/A ~ Copyright (c) 2012 ForgeRock Inc. All rights reserved.
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/xsd/maven-4.0.0.xsd">
2N/A <modelVersion>4.0.0</modelVersion>
2N/A <parent>
2N/A <groupId>org.forgerock.openam</groupId>
2N/A <artifactId>openam-oauth2</artifactId>
2N/A <version>10.1.0-SNAPSHOT</version>
2N/A </parent>
2N/A
2N/A <groupId>org.forgerock.openam</groupId>
2N/A <artifactId>openam-oauth2-openam-extension</artifactId>
2N/A <packaging>jar</packaging>
2N/A
2N/A <name>OpenAM OAuth2 OpenAM Restlet Extensions</name>
2N/A <properties>
2N/A <maven.compiler.target>1.6</maven.compiler.target>
2N/A <maven.compiler.source>1.6</maven.compiler.source>
2N/A <skipTests>true</skipTests>
2N/A </properties>
2N/A
2N/A <repositories>
2N/A <repository>
2N/A <id>forgerock-openam-repository</id>
2N/A <name>ForgeRock Release Repository</name>
2N/A <url>http://repo.forgerock.org/</url>
2N/A <snapshots>
2N/A <enabled>true</enabled>
2N/A </snapshots>
2N/A </repository>
2N/A <repository>
2N/A <id>forgerock-staging-repository</id>
2N/A <name>ForgeRock Release Repository</name>
2N/A <url>http://maven.forgerock.org/repo/releases</url>
2N/A <snapshots>
2N/A <enabled>false</enabled>
2N/A </snapshots>
2N/A </repository>
2N/A <repository>
2N/A <id>forgerock-snapshots-repository</id>
2N/A <name>ForgeRock Snapshot Repository</name>
2N/A <url>http://maven.forgerock.org/repo/snapshots</url>
2N/A <releases>
2N/A <enabled>false</enabled>
2N/A </releases>
2N/A </repository>
2N/A <repository>
2N/A <id>maven-restlet</id>
2N/A <name>Public online Restlet repository</name>
2N/A <url>http://maven.restlet.org</url>
2N/A </repository>
2N/A </repositories>
2N/A <dependencies>
2N/A <!-- mvn versions:display-plugin-updates
2N/A mvn versions:display-dependency-updates
2N/A mvn versions:use-latest-versions
2N/A -->
2N/A
2N/A <!-- Java EE -->
2N/A <dependency>
2N/A <groupId>javax.servlet</groupId>
2N/A <artifactId>servlet-api</artifactId>
2N/A <version>2.5</version>
2N/A <scope>provided</scope>
2N/A </dependency>
2N/A
2N/A <dependency>
2N/A <groupId>org.forgerock.openam</groupId>
2N/A <artifactId>openam-oauth2-restlet-extension</artifactId>
2N/A </dependency>
2N/A
2N/A <!-- OpenAM -->
2N/A <dependency>
2N/A <groupId>org.forgerock.openam</groupId>
2N/A <artifactId>openam-core</artifactId>
2N/A </dependency>
2N/A <dependency>
2N/A <groupId>org.forgerock.openam</groupId>
2N/A <artifactId>openam-rest</artifactId>
2N/A </dependency>
2N/A <dependency>
2N/A <groupId>org.forgerock.openam</groupId>
2N/A <artifactId>openam-oauth2-common</artifactId>
2N/A </dependency>
2N/A
2N/A
2N/A <!-- Restlet -->
2N/A <dependency>
2N/A <groupId>org.restlet.osgi</groupId>
2N/A <artifactId>org.restlet</artifactId>
2N/A </dependency>
2N/A <dependency>
2N/A <groupId>org.restlet.osgi</groupId>
2N/A <artifactId>org.restlet.ext.servlet</artifactId>
2N/A </dependency>
2N/A
2N/A <!-- Test Dependencies -->
2N/A <dependency>
2N/A <groupId>org.easytesting</groupId>
2N/A <artifactId>fest-assert</artifactId>
2N/A <version>1.4</version>
2N/A <scope>test</scope>
2N/A </dependency>
2N/A <dependency>
2N/A <groupId>org.testng</groupId>
2N/A <artifactId>testng</artifactId>
2N/A <version>6.3.1</version>
2N/A <scope>test</scope>
2N/A </dependency>
2N/A <dependency>
2N/A <groupId>org.mockito</groupId>
2N/A <artifactId>mockito-all</artifactId>
2N/A <version>1.9.0</version>
2N/A <scope>test</scope>
2N/A </dependency>
2N/A </dependencies>
2N/A <build>
2N/A <pluginManagement>
2N/A <plugins>
2N/A <plugin>
2N/A <groupId>org.apache.maven.plugins</groupId>
2N/A <artifactId>maven-javadoc-plugin</artifactId>
2N/A <configuration>
2N/A <links>
2N/A <link>http://docs.oracle.com/javase/6/docs/api</link>
2N/A <link>http://openam.forgerock.org/doc/public-api</link>
2N/A <link>http://www.restlet.org/documentation/2.1/jse/api</link>
2N/A <link>http://www.restlet.org/documentation/2.1/jse/ext</link>
2N/A <link>http://www.restlet.org/documentation/2.1/jse/engine</link>
2N/A </links>
2N/A </configuration>
2N/A </plugin>
2N/A </plugins>
2N/A </pluginManagement>
2N/A <testResources>
2N/A <testResource>
2N/A <directory>src/test/resources</directory>
2N/A <filtering>true</filtering>
2N/A </testResource>
2N/A </testResources>
2N/A <plugins>
2N/A <plugin>
2N/A <groupId>org.apache.felix</groupId>
2N/A <artifactId>maven-bundle-plugin</artifactId>
2N/A <extensions>true</extensions>
2N/A <configuration>
2N/A <instructions>
2N/A <Private-Package>org.forgerock.restlet.ext.openam.internal.*</Private-Package>
2N/A <Export-Package>
2N/A org.forgerock.restlet.ext.openam*;version="${project.version}"
2N/A </Export-Package>
2N/A <Import-Package>*</Import-Package>
2N/A <!--Embed-Dependency>amserver,sharedlib</Embed-Dependency>
2N/A <_failok>true</_failok-->
2N/A </instructions>
2N/A </configuration>
2N/A </plugin>
2N/A </plugins>
2N/A </build>
2N/A <profiles>
2N/A <profile>
2N/A <id>jrebel</id>
2N/A <build>
2N/A <plugins>
2N/A <plugin>
2N/A <groupId>org.zeroturnaround</groupId>
2N/A <artifactId>jrebel-maven-plugin</artifactId>
2N/A <version>1.1.3</version>
2N/A <executions>
2N/A <execution>
2N/A <id>generate-rebel-xml</id>
2N/A <phase>process-resources</phase>
2N/A <goals>
2N/A <goal>generate</goal>
2N/A </goals>
2N/A </execution>
2N/A </executions>
2N/A </plugin>
2N/A <plugin>
2N/A <groupId>org.apache.felix</groupId>
2N/A <artifactId>maven-bundle-plugin</artifactId>
2N/A <extensions>true</extensions>
2N/A <configuration>
2N/A <instructions>
2N/A <Include-Resource>{maven-resources},target/classes/rebel.xml</Include-Resource>
2N/A </instructions>
2N/A </configuration>
2N/A </plugin>
2N/A </plugins>
2N/A </build>
2N/A </profile>
2N/A </profiles>
2N/A</project>
2N/A