pom.xml revision 2fa3941d2c8e2d9c5b21d68695483ec6f140870c
<?xml version="1.0" encoding="UTF-8"?>
<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">
<modelVersion>4.0.0</modelVersion>
<parent>
<artifactId>openidm-project</artifactId>
<version>2.0.0-SNAPSHOT</version>
</parent>
<artifactId>openidm-provisioner-openicf</artifactId>
<packaging>bundle</packaging>
<name>OpenIDM provisioner using OpenICF</name>
<dependencies>
<dependency>
<artifactId>openidm-core</artifactId>
</dependency>
<dependency>
<artifactId>openidm-provisioner</artifactId>
</dependency>
<dependency>
<artifactId>connector-framework</artifactId>
<version>1.1.0.0-SNAPSHOT</version>
</dependency>
<dependency>
<artifactId>connector-framework-internal</artifactId>
<version>1.1.0.0-SNAPSHOT</version>
</dependency>
<dependency>
<artifactId>json-schema</artifactId>
</dependency>
<dependency>
<artifactId>json-fluent</artifactId>
</dependency>
<dependency>
</dependency>
<dependency>
</dependency>
<dependency>
</dependency>
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
<version>1.5</version>
</dependency>
<dependency>
<artifactId>slf4j-api</artifactId>
<scope>compile</scope>
</dependency>
<!-- Test Dependencies -->
<dependency>
<artifactId>fest-assert</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<artifactId>testng</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<artifactId>mockito-all</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<artifactId>connector-test-common</artifactId>
<version>1.1.0.0-SNAPSHOT</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<systemPropertyVariables>
<bundles.configuration.location>${project.build.testOutputDirectory}/connectorServer/
</systemPropertyVariables>
</configuration>
</plugin>
<plugin>
<artifactId>maven-scr-plugin</artifactId>
<version>1.7.0</version>
<executions>
<execution>
<id>generate-scr-scrdescriptor</id>
<goals>
<goal>scr</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-bundle-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<instructions>
<!--Embed-Dependency>orientdb*;orient*;persistence-api;scope=compile</Embed-Dependency>
<<Export-Package>org.forgerock.openidm.provisioner.openicf</Export-Package>-->
</instructions>
</configuration>
</plugin>
<plugin>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<!-- Copy bundle JARs -->
<execution>
<id>copy-connectorbundles</id>
<phase>generate-test-sources</phase>
<goals>
<goal>copy</goal>
</goals>
<configuration>
<artifactItems>
<artifactItem>
<artifactId>xml</artifactId>
<version>1.1.0.0-SNAPSHOT</version>
<type>bundle</type>
</artifactItem>
</artifactItems>
</outputDirectory>
<stripVersion>true</stripVersion>
</configuration>
</execution>
<execution>
<id>copy-connectorServer</id>
<phase>generate-test-sources</phase>
<goals>
<goal>copy</goal>
</goals>
<configuration>
<artifactItems>
<artifactItem>
<artifactId>connector-framework</artifactId>
<version>1.1.0.0-SNAPSHOT</version>
</artifactItem>
<artifactItem>
<artifactId>connector-framework-internal</artifactId>
<version>1.1.0.0-SNAPSHOT</version>
</artifactItem>
<artifactItem>
<artifactId>groovy-all</artifactId>
<version>1.7.10</version>
</artifactItem>
</artifactItems>
<stripVersion>true</stripVersion>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>