pom.xml revision 151a6008aae1979ecff24d2b058dcc58c9f6d038
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) 2012 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 -->
6238N/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 <artifactId>openidm-project</artifactId>
5394N/A <groupId>org.forgerock.openidm</groupId>
5394N/A <version>4.0.0-RC2</version>
5394N/A </parent>
5394N/A <artifactId>openidm-script</artifactId>
5394N/A <packaging>bundle</packaging>
5394N/A <name>OpenIDM Script Bundle</name>
5394N/A <description>This bundle implement the Scripting support for the Common Resource Access Protocol</description>
5394N/A
5394N/A <dependencies>
5394N/A <dependency>
5394N/A <groupId>org.forgerock.http</groupId>
6399N/A <artifactId>chf-http-core</artifactId>
5394N/A </dependency>
5394N/A <dependency>
5394N/A <groupId>org.forgerock.openidm</groupId>
5394N/A <artifactId>openidm-enhanced-config</artifactId>
6402N/A <version>${project.version}</version>
5394N/A </dependency>
5394N/A <dependency>
5394N/A <groupId>org.forgerock.openidm</groupId>
5394N/A <artifactId>openidm-quartz-fragment</artifactId>
5394N/A <version>${project.version}</version>
5714N/A </dependency>
5394N/A <dependency>
6402N/A <groupId>org.forgerock.commons</groupId>
6402N/A <artifactId>script-common</artifactId>
6402N/A </dependency>
5394N/A <dependency>
5394N/A <groupId>org.forgerock.commons</groupId>
5394N/A <artifactId>script-groovy</artifactId>
5394N/A </dependency>
6399N/A <dependency>
5394N/A <groupId>org.forgerock.commons</groupId>
5394N/A <artifactId>script-javascript</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 -->
6238N/A <dependency>
5947N/A <groupId>org.apache.felix</groupId>
5947N/A <artifactId>org.apache.felix.framework</artifactId>
5947N/A <scope>provided</scope>
5947N/A </dependency>
5947N/A <dependency>
5947N/A <groupId>org.osgi</groupId>
5947N/A <artifactId>org.osgi.compendium</artifactId>
5947N/A <scope>provided</scope>
5947N/A </dependency>
5947N/A
5947N/A <!-- Provided Dependencies -->
5947N/A <dependency>
5947N/A <groupId>org.apache.felix</groupId>
5947N/A <artifactId>org.apache.felix.scr.annotations</artifactId>
5947N/A <scope>provided</scope>
5947N/A </dependency>
5947N/A
5947N/A <dependency>
5947N/A <groupId>org.ops4j.pax.swissbox</groupId>
5394N/A <artifactId>pax-swissbox-extender</artifactId>
5394N/A <version>1.6.0</version>
5395N/A <exclusions>
5394N/A <exclusion>
5394N/A <artifactId>pax-swissbox-optional-jcl</artifactId>
5394N/A <groupId>org.ops4j.pax.swissbox</groupId>
5394N/A </exclusion>
5394N/A </exclusions>
5394N/A <scope>provided</scope>
5947N/A <optional>true</optional>
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.assertj</groupId>
5394N/A <artifactId>assertj-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>
5457N/A <artifactId>maven-scr-plugin</artifactId>
5394N/A <executions>
5394N/A <execution>
5394N/A <id>generate-scr-scrdescriptor</id>
5423N/A <goals>
5947N/A <goal>scr</goal>
5947N/A </goals>
5947N/A </execution>
5947N/A </executions>
5947N/A </plugin>
5947N/A <plugin>
5947N/A <groupId>org.apache.felix</groupId>
5947N/A <artifactId>maven-bundle-plugin</artifactId>
5947N/A <extensions>true</extensions>
5947N/A <configuration>
5947N/A <instructions>
5947N/A <Private-Package>org.forgerock.openidm.script.impl*</Private-Package>
5443N/A </instructions>
5423N/A </configuration>
5423N/A </plugin>
5454N/A </plugins>
5423N/A </build>
5423N/A</project>
5454N/A