pom.xml revision 430677edf1f67e2cbb29a342fc489524c08575af
5394N/A<?xml version="1.0" encoding="UTF-8"?>
5394N/A<!--
5394N/A ~ DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
5394N/A ~
5394N/A ~ Copyright (c) 2011-2014 ForgeRock AS. All Rights Reserved
5394N/A ~
5394N/A ~ The contents of this file are subject to the terms
5394N/A ~ of the Common Development and Distribution License
5394N/A ~ (the License). You may not use this file except in
5394N/A ~ compliance with the License.
5394N/A ~
5394N/A ~ You can obtain a copy of the License at
5394N/A ~ http://forgerock.org/license/CDDLv1.0.html
5394N/A ~ See the License for the specific language governing
5394N/A ~ permission and limitations under the License.
5394N/A ~
5394N/A ~ When distributing Covered Code, include this CDDL
5394N/A ~ Header Notice in each file and include the License file
5394N/A ~ at http://forgerock.org/license/CDDLv1.0.html
5394N/A ~ If applicable, add the following below the CDDL Header,
5394N/A ~ with the fields enclosed by brackets [] replaced by
5394N/A ~ your own identifying information:
5394N/A ~ "Portions Copyrighted [year] [name of copyright owner]"
5394N/A -->
5394N/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">
5394N/A <modelVersion>4.0.0</modelVersion>
5394N/A <parent>
5394N/A <groupId>org.forgerock.openidm</groupId>
5394N/A <artifactId>openidm-project</artifactId>
5394N/A <version>4.0.1-SNAPSHOT</version>
5394N/A </parent>
5394N/A <artifactId>openidm-router</artifactId>
5394N/A <packaging>bundle</packaging>
5394N/A <name>OpenIDM Router Bundle</name>
5394N/A <description>This bundle contains OpenIDM</description>
5394N/A <properties>
5394N/A <openidm.osgi.import.defaults>org.forgerock.script,org.forgerock.openidm.sync</openidm.osgi.import.defaults>
5394N/A </properties>
5394N/A <dependencies>
5394N/A <dependency>
5394N/A <groupId>org.forgerock.openidm</groupId>
5394N/A <artifactId>openidm-util</artifactId>
5394N/A <version>${project.version}</version>
5394N/A </dependency>
5394N/A <dependency>
5394N/A <groupId>org.forgerock.openidm</groupId>
5394N/A <artifactId>openidm-smartevent</artifactId>
5394N/A <version>${project.version}</version>
5394N/A </dependency>
5394N/A <dependency>
5394N/A <groupId>org.forgerock.commons</groupId>
5394N/A <artifactId>script-common</artifactId>
5394N/A </dependency>
5394N/A
5394N/A <!-- Provided OSGi Dependencies -->
5394N/A <dependency>
5394N/A <groupId>org.osgi</groupId>
5394N/A <artifactId>org.osgi.core</artifactId>
5394N/A <scope>provided</scope>
5394N/A </dependency>
5394N/A <!-- TODO Remove org.apache.felix.framework when Compendium 4.3 is used -->
5394N/A <dependency>
5394N/A <groupId>org.apache.felix</groupId>
5394N/A <artifactId>org.apache.felix.framework</artifactId>
5394N/A <scope>provided</scope>
5394N/A </dependency>
5394N/A <dependency>
5394N/A <groupId>org.osgi</groupId>
5394N/A <artifactId>org.osgi.compendium</artifactId>
5394N/A <scope>provided</scope>
5394N/A </dependency>
5394N/A
5395N/A <!-- Provided Dependencies -->
5394N/A <dependency>
5394N/A <groupId>org.apache.felix</groupId>
5394N/A <artifactId>org.apache.felix.scr.annotations</artifactId>
5394N/A <scope>provided</scope>
5394N/A </dependency>
5394N/A
5394N/A <!-- Test Dependencies -->
5394N/A <dependency>
5394N/A <groupId>org.testng</groupId>
5394N/A <artifactId>testng</artifactId>
5394N/A <scope>test</scope>
5394N/A </dependency>
5394N/A <dependency>
5394N/A <groupId>org.easytesting</groupId>
5394N/A <artifactId>fest-assert-core</artifactId>
5394N/A <scope>test</scope>
5394N/A </dependency>
5394N/A <dependency>
5394N/A <groupId>org.mockito</groupId>
5394N/A <artifactId>mockito-all</artifactId>
5394N/A <scope>test</scope>
5394N/A </dependency>
5394N/A </dependencies>
5394N/A <build>
5394N/A <plugins>
5394N/A <plugin>
5394N/A <groupId>org.apache.felix</groupId>
5394N/A <artifactId>maven-scr-plugin</artifactId>
5394N/A <executions>
5394N/A <execution>
5396N/A <id>generate-scr-scrdescriptor</id>
5394N/A <goals>
5394N/A <goal>scr</goal>
5394N/A </goals>
5423N/A </execution>
5423N/A </executions>
5423N/A </plugin>
5423N/A <plugin>
5423N/A <groupId>org.codehaus.gmaven</groupId>
5423N/A <artifactId>gmaven-plugin</artifactId>
5423N/A <version>1.5</version>
5423N/A <executions>
5423N/A <execution>
5423N/A <goals>
5423N/A <goal>generateTestStubs</goal>
5423N/A <goal>testCompile</goal>
5423N/A </goals>
5423N/A <configuration>
5423N/A <providerSelection>2.0</providerSelection>
5423N/A </configuration>
5423N/A </execution>
5423N/A </executions>
5423N/A </plugin>
5423N/A <plugin>
5423N/A <groupId>org.apache.felix</groupId>
5423N/A <artifactId>maven-bundle-plugin</artifactId>
5423N/A <extensions>true</extensions>
5423N/A </plugin>
5423N/A <plugin>
5423N/A <groupId>org.apache.maven.plugins</groupId>
5394N/A <artifactId>maven-jar-plugin</artifactId>
5394N/A <version>2.6</version>
5394N/A <configuration>
5394N/A <includes>
5394N/A <include>**</include>
5394N/A </includes>
5394N/A </configuration>
5394N/A <executions>
5394N/A <execution>
5394N/A <goals>
5394N/A <goal>test-jar</goal>
5394N/A </goals>
5394N/A </execution>
5394N/A </executions>
5394N/A </plugin>
5394N/A </plugins>
5394N/A </build>
5394N/A</project>
5394N/A