pom.xml revision f81f15509860812fa3550a500665ecb11024abb6
5b64d5d44892834ba97f003080f3467299b7c5c5jeff.schenk<?xml version="1.0" encoding="UTF-8"?>
5b64d5d44892834ba97f003080f3467299b7c5c5jeff.schenk<!--
5b64d5d44892834ba97f003080f3467299b7c5c5jeff.schenk The contents of this file are subject to the terms of the Common Development and
5b64d5d44892834ba97f003080f3467299b7c5c5jeff.schenk Distribution License (the License). You may not use this file except in compliance with the
5b64d5d44892834ba97f003080f3467299b7c5c5jeff.schenk License.
5b64d5d44892834ba97f003080f3467299b7c5c5jeff.schenk
5b64d5d44892834ba97f003080f3467299b7c5c5jeff.schenk You can obtain a copy of the License at legal/CDDLv1.0.txt. See the License for the
5b64d5d44892834ba97f003080f3467299b7c5c5jeff.schenk specific language governing permission and limitations under the License.
5b64d5d44892834ba97f003080f3467299b7c5c5jeff.schenk
5b64d5d44892834ba97f003080f3467299b7c5c5jeff.schenk When distributing Covered Software, include this CDDL Header Notice in each file and include
5b64d5d44892834ba97f003080f3467299b7c5c5jeff.schenk the License file at legal/CDDLv1.0.txt. If applicable, add the following below the CDDL
5b64d5d44892834ba97f003080f3467299b7c5c5jeff.schenk Header, with the fields enclosed by brackets [] replaced by your own identifying
5b64d5d44892834ba97f003080f3467299b7c5c5jeff.schenk information: "Portions Copyrighted [year] [name of copyright owner]".
5b64d5d44892834ba97f003080f3467299b7c5c5jeff.schenk
5b64d5d44892834ba97f003080f3467299b7c5c5jeff.schenk Copyright © 2011 ForgeRock AS. All rights reserved.
5b64d5d44892834ba97f003080f3467299b7c5c5jeff.schenk-->
5b64d5d44892834ba97f003080f3467299b7c5c5jeff.schenk<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
5b64d5d44892834ba97f003080f3467299b7c5c5jeff.schenk xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5b64d5d44892834ba97f003080f3467299b7c5c5jeff.schenk <modelVersion>4.0.0</modelVersion>
5b64d5d44892834ba97f003080f3467299b7c5c5jeff.schenk <parent>
5b64d5d44892834ba97f003080f3467299b7c5c5jeff.schenk <groupId>org.forgerock.openidm</groupId>
5b64d5d44892834ba97f003080f3467299b7c5c5jeff.schenk <artifactId>openidm-project</artifactId>
5b64d5d44892834ba97f003080f3467299b7c5c5jeff.schenk <version>2.0.0-SNAPSHOT</version>
5b64d5d44892834ba97f003080f3467299b7c5c5jeff.schenk </parent>
5b64d5d44892834ba97f003080f3467299b7c5c5jeff.schenk <artifactId>openidm-shell</artifactId>
5b64d5d44892834ba97f003080f3467299b7c5c5jeff.schenk <name>OpenIDM Felix Gogo Shell</name>
<packaging>bundle</packaging>
<dependencies>
<dependency>
<groupId>org.forgerock.openidm</groupId>
<artifactId>openidm-core</artifactId>
<version>${openidm.version}</version>
</dependency>
<dependency>
<groupId>org.forgerock.openidm</groupId>
<artifactId>openidm-external-rest</artifactId>
<version>${openidm.version}</version>
</dependency>
<dependency>
<groupId>org.restlet.jee</groupId>
<artifactId>org.restlet.ext.jackson</artifactId>
<version>${restlet.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.felix</groupId>
<artifactId>org.apache.felix.gogo.shell</artifactId>
<version>0.10.0</version>
</dependency>
<!--dependency>
<groupId>org.apache.felix</groupId>
<artifactId>org.apache.felix.gogo.command</artifactId>
<version>0.12.0</version>
<scope>provided</scope>
</dependency-->
<dependency>
<groupId>asm</groupId>
<artifactId>asm-all</artifactId>
<version>3.3.1</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.compendium</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.felix</groupId>
<artifactId>org.apache.felix.scr.annotations</artifactId>
<scope>provided</scope>
</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>
<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>
org.apache.felix.service.command;version="[0.10.0,1)";status=provisional;mandatory:=status,
*
</Import-Package>
<Export-Package>org.forgerock.openidm.shell;version=${openidm.version}</Export-Package>
<Bundle-Activator>org.forgerock.openidm.shell.felixgogo.Activator</Bundle-Activator>
<Embed-Dependency>*;artifactId=asm-all;inline=false</Embed-Dependency>
<_removeheaders>Bnd-LastModified, Built-By, Private-Package, Tool, Build-Jdk, Include-Resource
</_removeheaders>
<Main-Class>org.forgerock.openidm.shell.impl.Main</Main-Class>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
</project>