pom.xml revision 625e53b81e28bce5a207ff7a75f399f4d85a9529
1ab3cda9cf88318392b2c80dcf3082bfda51ec43Christian Maeder<?xml version="1.0" encoding="UTF-8"?>
dad3168223212d034510b3e0ddbe897737c0812fKlaus Luettich<!--
dad3168223212d034510b3e0ddbe897737c0812fKlaus Luettich ~ DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
dad3168223212d034510b3e0ddbe897737c0812fKlaus Luettich ~
dad3168223212d034510b3e0ddbe897737c0812fKlaus Luettich ~ Copyright (c) 2011-2013 ForgeRock AS. All Rights Reserved
dad3168223212d034510b3e0ddbe897737c0812fKlaus Luettich ~
a8fdac7ebbeb34fced934d24f0a560699aaea52aChristian Maeder ~ The contents of this file are subject to the terms
dad3168223212d034510b3e0ddbe897737c0812fKlaus Luettich ~ of the Common Development and Distribution License
dad3168223212d034510b3e0ddbe897737c0812fKlaus Luettich ~ (the License). You may not use this file except in
dad3168223212d034510b3e0ddbe897737c0812fKlaus Luettich ~ compliance with the License.
dad3168223212d034510b3e0ddbe897737c0812fKlaus Luettich ~
a8fdac7ebbeb34fced934d24f0a560699aaea52aChristian Maeder ~ You can obtain a copy of the License at
a8fdac7ebbeb34fced934d24f0a560699aaea52aChristian Maeder ~ http://forgerock.org/license/CDDLv1.0.html
1ab3cda9cf88318392b2c80dcf3082bfda51ec43Christian Maeder ~ See the License for the specific language governing
1ab3cda9cf88318392b2c80dcf3082bfda51ec43Christian Maeder ~ permission and limitations under the License.
1ab3cda9cf88318392b2c80dcf3082bfda51ec43Christian Maeder ~
a8fdac7ebbeb34fced934d24f0a560699aaea52aChristian Maeder ~ When distributing Covered Code, include this CDDL
a8fdac7ebbeb34fced934d24f0a560699aaea52aChristian Maeder ~ Header Notice in each file and include the License file
1ab3cda9cf88318392b2c80dcf3082bfda51ec43Christian Maeder ~ at http://forgerock.org/license/CDDLv1.0.html
dad3168223212d034510b3e0ddbe897737c0812fKlaus Luettich ~ If applicable, add the following below the CDDL Header,
dad3168223212d034510b3e0ddbe897737c0812fKlaus Luettich ~ with the fields enclosed by brackets [] replaced by
dad3168223212d034510b3e0ddbe897737c0812fKlaus Luettich ~ your own identifying information:
dad3168223212d034510b3e0ddbe897737c0812fKlaus Luettich ~ "Portions Copyrighted [year] [name of copyright owner]"
dad3168223212d034510b3e0ddbe897737c0812fKlaus Luettich -->
dad3168223212d034510b3e0ddbe897737c0812fKlaus Luettich<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">
1ab3cda9cf88318392b2c80dcf3082bfda51ec43Christian Maeder <modelVersion>4.0.0</modelVersion>
dad3168223212d034510b3e0ddbe897737c0812fKlaus Luettich <parent>
dad3168223212d034510b3e0ddbe897737c0812fKlaus Luettich <groupId>org.forgerock.openidm</groupId>
dad3168223212d034510b3e0ddbe897737c0812fKlaus Luettich <artifactId>openidm-project</artifactId>
a8fdac7ebbeb34fced934d24f0a560699aaea52aChristian Maeder <version>3.1.0-RC2-SNAPSHOT</version>
dad3168223212d034510b3e0ddbe897737c0812fKlaus Luettich </parent>
dad3168223212d034510b3e0ddbe897737c0812fKlaus Luettich <artifactId>openidm-external-rest</artifactId>
dad3168223212d034510b3e0ddbe897737c0812fKlaus Luettich <packaging>bundle</packaging>
dad3168223212d034510b3e0ddbe897737c0812fKlaus Luettich <name>OpenIDM External REST Bundle</name>
dad3168223212d034510b3e0ddbe897737c0812fKlaus Luettich <description>This bundle allows to make individual REST calls via /external/rest</description>
dad3168223212d034510b3e0ddbe897737c0812fKlaus Luettich
dad3168223212d034510b3e0ddbe897737c0812fKlaus Luettich <dependencies>
a8fdac7ebbeb34fced934d24f0a560699aaea52aChristian Maeder <dependency>
dad3168223212d034510b3e0ddbe897737c0812fKlaus Luettich <groupId>org.forgerock.openidm</groupId>
dad3168223212d034510b3e0ddbe897737c0812fKlaus Luettich <artifactId>openidm-enhanced-config</artifactId>
dad3168223212d034510b3e0ddbe897737c0812fKlaus Luettich <version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.restlet.osgi</groupId>
<artifactId>org.restlet</artifactId>
</dependency>
<dependency>
<groupId>org.restlet.osgi</groupId>
<artifactId>org.restlet.ext.httpclient</artifactId>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient-osgi</artifactId>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpcore-osgi</artifactId>
</dependency>
<!-- Provided OSGi Dependencies -->
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
<scope>provided</scope>
</dependency>
<!-- TODO Remove org.apache.felix.framework when Compendium 4.3 is used -->
<dependency>
<groupId>org.apache.felix</groupId>
<artifactId>org.apache.felix.framework</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.compendium</artifactId>
<scope>provided</scope>
</dependency>
<!-- Provided Dependencies -->
<dependency>
<groupId>org.apache.felix</groupId>
<artifactId>org.apache.felix.scr.annotations</artifactId>
<scope>provided</scope>
</dependency>
<!-- Test Dependencies -->
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.easytesting</groupId>
<artifactId>fest-assert-core</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-scr-plugin</artifactId>
<executions>
<execution>
<id>generate-scr-scrdescriptor</id>
<goals>
<goal>scr</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<extensions>true</extensions>
</plugin>
</plugins>
</build>
</project>