pom.xml revision 625e53b81e28bce5a207ff7a75f399f4d85a9529
80ca0b9f5ad61b2335af25d4dcf25a04ebfcbc91Peter Major<?xml version="1.0" encoding="UTF-8"?>
dfc4e0fc3052835b2a069aa9d869fa1161c33fe6Peter Major<!--
f0b8f6dd844f8752946b865bdd44175863b15812Peter Major ~ DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
f0b8f6dd844f8752946b865bdd44175863b15812Peter Major ~
f0b8f6dd844f8752946b865bdd44175863b15812Peter Major ~ Copyright (c) 2011-2014 ForgeRock AS. All Rights Reserved
f0b8f6dd844f8752946b865bdd44175863b15812Peter Major ~
f0b8f6dd844f8752946b865bdd44175863b15812Peter Major ~ The contents of this file are subject to the terms
f0b8f6dd844f8752946b865bdd44175863b15812Peter Major ~ of the Common Development and Distribution License
f0b8f6dd844f8752946b865bdd44175863b15812Peter Major ~ (the License). You may not use this file except in
f0b8f6dd844f8752946b865bdd44175863b15812Peter Major ~ compliance with the License.
f0b8f6dd844f8752946b865bdd44175863b15812Peter Major ~
f0b8f6dd844f8752946b865bdd44175863b15812Peter Major ~ You can obtain a copy of the License at
f0b8f6dd844f8752946b865bdd44175863b15812Peter Major ~ http://forgerock.org/license/CDDLv1.0.html
f0b8f6dd844f8752946b865bdd44175863b15812Peter Major ~ See the License for the specific language governing
f0b8f6dd844f8752946b865bdd44175863b15812Peter Major ~ permission and limitations under the License.
dfc4e0fc3052835b2a069aa9d869fa1161c33fe6Peter Major ~
1f48f8236de7de97be1c6b9d06bef50b379c8801jenkins ~ When distributing Covered Code, include this CDDL
80ca0b9f5ad61b2335af25d4dcf25a04ebfcbc91Peter Major ~ Header Notice in each file and include the License file
80ca0b9f5ad61b2335af25d4dcf25a04ebfcbc91Peter Major ~ at http://forgerock.org/license/CDDLv1.0.html
80ca0b9f5ad61b2335af25d4dcf25a04ebfcbc91Peter Major ~ If applicable, add the following below the CDDL Header,
80ca0b9f5ad61b2335af25d4dcf25a04ebfcbc91Peter Major ~ with the fields enclosed by brackets [] replaced by
80ca0b9f5ad61b2335af25d4dcf25a04ebfcbc91Peter Major ~ your own identifying information:
80ca0b9f5ad61b2335af25d4dcf25a04ebfcbc91Peter Major ~ "Portions Copyrighted [year] [name of copyright owner]"
2d8eba3efb0ced5c2ab004e5b3e949094747aeb3jenkins -->
80ca0b9f5ad61b2335af25d4dcf25a04ebfcbc91Peter Major<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">
80ca0b9f5ad61b2335af25d4dcf25a04ebfcbc91Peter Major <modelVersion>4.0.0</modelVersion>
80ca0b9f5ad61b2335af25d4dcf25a04ebfcbc91Peter Major <parent>
80ca0b9f5ad61b2335af25d4dcf25a04ebfcbc91Peter Major <groupId>org.forgerock.openidm</groupId>
80ca0b9f5ad61b2335af25d4dcf25a04ebfcbc91Peter Major <artifactId>openidm-project</artifactId>
80ca0b9f5ad61b2335af25d4dcf25a04ebfcbc91Peter Major <version>3.1.0-RC2-SNAPSHOT</version>
80ca0b9f5ad61b2335af25d4dcf25a04ebfcbc91Peter Major </parent>
80ca0b9f5ad61b2335af25d4dcf25a04ebfcbc91Peter Major <artifactId>openidm-router</artifactId>
80ca0b9f5ad61b2335af25d4dcf25a04ebfcbc91Peter Major <packaging>bundle</packaging>
80ca0b9f5ad61b2335af25d4dcf25a04ebfcbc91Peter Major <name>OpenIDM Router Bundle</name>
80ca0b9f5ad61b2335af25d4dcf25a04ebfcbc91Peter Major <description>This bundle contains OpenIDM</description>
80ca0b9f5ad61b2335af25d4dcf25a04ebfcbc91Peter Major <properties>
80ca0b9f5ad61b2335af25d4dcf25a04ebfcbc91Peter Major <openidm.osgi.import.defaults>org.forgerock.json.resource.servlet,org.forgerock.script,org.forgerock.openidm.sync</openidm.osgi.import.defaults>
80ca0b9f5ad61b2335af25d4dcf25a04ebfcbc91Peter Major </properties>
<dependencies>
<dependency>
<groupId>org.forgerock.openidm</groupId>
<artifactId>openidm-util</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.forgerock.openidm</groupId>
<artifactId>openidm-smartevent</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.forgerock.commons</groupId>
<artifactId>script-common</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>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-all</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.codehaus.gmaven</groupId>
<artifactId>gmaven-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<goals>
<goal>generateTestStubs</goal>
<goal>testCompile</goal>
</goals>
<configuration>
<providerSelection>2.0</providerSelection>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<extensions>true</extensions>
</plugin>
</plugins>
</build>
</project>