pom.xml revision d35bbd972bc0a110a482d2585dab524308d8fd6d
0c27b3fe77ac1d5094ba3521e8142d9e7973133fMark Andrews<?xml version="1.0" encoding="UTF-8"?>
434bfc3dfa2003ba0dd4b2392286806131fd6724Evan Hunt<!--
0c27b3fe77ac1d5094ba3521e8142d9e7973133fMark Andrews The contents of this file are subject to the terms of the Common Development and
0c27b3fe77ac1d5094ba3521e8142d9e7973133fMark Andrews Distribution License (the License). You may not use this file except in compliance with the
0c27b3fe77ac1d5094ba3521e8142d9e7973133fMark Andrews License.
434bfc3dfa2003ba0dd4b2392286806131fd6724Evan Hunt
434bfc3dfa2003ba0dd4b2392286806131fd6724Evan Hunt You can obtain a copy of the License at legal/CDDLv1.0.txt. See the License for the
434bfc3dfa2003ba0dd4b2392286806131fd6724Evan Hunt specific language governing permission and limitations under the License.
434bfc3dfa2003ba0dd4b2392286806131fd6724Evan Hunt
434bfc3dfa2003ba0dd4b2392286806131fd6724Evan Hunt When distributing Covered Software, include this CDDL Header Notice in each file and include
434bfc3dfa2003ba0dd4b2392286806131fd6724Evan Hunt the License file at legal/CDDLv1.0.txt. If applicable, add the following below the CDDL
434bfc3dfa2003ba0dd4b2392286806131fd6724Evan Hunt Header, with the fields enclosed by brackets [] replaced by your own identifying
434bfc3dfa2003ba0dd4b2392286806131fd6724Evan Hunt information: "Portions Copyrighted [year] [name of copyright owner]".
434bfc3dfa2003ba0dd4b2392286806131fd6724Evan Hunt
434bfc3dfa2003ba0dd4b2392286806131fd6724Evan Hunt Copyright © 2011 ForgeRock AS. All rights reserved.
434bfc3dfa2003ba0dd4b2392286806131fd6724Evan Hunt-->
434bfc3dfa2003ba0dd4b2392286806131fd6724Evan Hunt<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
434bfc3dfa2003ba0dd4b2392286806131fd6724Evan Hunt xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.forgerock.openidm</groupId>
<artifactId>openidm-project</artifactId>
<version>2.0.0-SNAPSHOT</version>
</parent>
<artifactId>openidm-util</artifactId>
<name>OpenIDM Utility Classes</name>
<packaging>bundle</packaging>
<dependencies>
<dependency>
<groupId>org.forgerock.commons</groupId>
<artifactId>json-fluent</artifactId>
</dependency>
<dependency>
<groupId>org.apache.servicemix.bundles</groupId>
<artifactId>org.apache.servicemix.bundles.rhino</artifactId>
<version>1.7R2_2</version>
</dependency>
<dependency>
<groupId>org.codehaus.jackson</groupId>
<artifactId>jackson-core-asl</artifactId>
</dependency>
<dependency>
<groupId>org.codehaus.jackson</groupId>
<artifactId>jackson-mapper-asl</artifactId>
</dependency>
<dependency>
<groupId>org.apache.felix</groupId>
<artifactId>org.apache.felix.fileinstall</artifactId>
<scope>provided</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.apache.felix</groupId>
<artifactId>org.apache.felix.scr.annotations</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
<!-- Test Dependencies -->
<dependency>
<groupId>org.easytesting</groupId>
<artifactId>fest-assert</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<resources>
<resource>
<directory>${basedir}/src/main/java</directory>
<includes>
<include>META-INF/**/*</include>
</includes>
</resource>
</resources>
<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>
<configuration>
<instructions>
<Import-Package>*</Import-Package>
<Export-Package>
org.forgerock.openidm.audit.util;version=${openidm.version},
org.forgerock.openidm.config;version=${openidm.version},
org.forgerock.openidm.config.installer;version=${openidm.version},
org.forgerock.openidm.context;version=${openidm.version},
org.forgerock.openidm.objset;version=${openidm.version},
org.forgerock.openidm.script;version=${openidm.version},
org.forgerock.openidm.script.javascript;version=${openidm.version},
org.forgerock.openidm.sync;version=${openidm.version}
</Export-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
</project>