pom.xml revision 610c44b8740b31fbcb53632c8478698af5183aeb
3724989bb692e0ae7eeed1f78914f41b429601b8Christian Maeder<?xml version="1.0" encoding="UTF-8"?>
e9458b1a7a19a63aa4c179f9ab20f4d50681c168Jens Elkner<!--
ad0088483a1aa457afc0450f12f49701d1617ed2Christian Maeder ~ DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
98890889ffb2e8f6f722b00e265a211f13b5a861Corneliu-Claudiu Prodescu ~
29b4fbd7edc1faa0f8e584e6ea73a004ec14a0a3Klaus Luettich ~ Copyright (c) 2011-2013 ForgeRock AS. All Rights Reserved
34bff097c14521b5e57ce37279a34256e1f78aa5Klaus Luettich ~
29b4fbd7edc1faa0f8e584e6ea73a004ec14a0a3Klaus Luettich ~ The contents of this file are subject to the terms
29b4fbd7edc1faa0f8e584e6ea73a004ec14a0a3Klaus Luettich ~ of the Common Development and Distribution License
29b4fbd7edc1faa0f8e584e6ea73a004ec14a0a3Klaus Luettich ~ (the License). You may not use this file except in
3724989bb692e0ae7eeed1f78914f41b429601b8Christian Maeder ~ compliance with the License.
29b4fbd7edc1faa0f8e584e6ea73a004ec14a0a3Klaus Luettich ~
29b4fbd7edc1faa0f8e584e6ea73a004ec14a0a3Klaus Luettich ~ You can obtain a copy of the License at
29b4fbd7edc1faa0f8e584e6ea73a004ec14a0a3Klaus Luettich ~ http://forgerock.org/license/CDDLv1.0.html
29b4fbd7edc1faa0f8e584e6ea73a004ec14a0a3Klaus Luettich ~ See the License for the specific language governing
fbb2d28086a1860850f661fbf4af531322bac405Christian Maeder ~ permission and limitations under the License.
fbb2d28086a1860850f661fbf4af531322bac405Christian Maeder ~
29b4fbd7edc1faa0f8e584e6ea73a004ec14a0a3Klaus Luettich ~ When distributing Covered Code, include this CDDL
ccd28c25c1aee73a195053e677eca17e20917d84Christian Maeder ~ Header Notice in each file and include the License file
29b4fbd7edc1faa0f8e584e6ea73a004ec14a0a3Klaus Luettich ~ at http://forgerock.org/license/CDDLv1.0.html
fbb2d28086a1860850f661fbf4af531322bac405Christian Maeder ~ If applicable, add the following below the CDDL Header,
ccd28c25c1aee73a195053e677eca17e20917d84Christian Maeder ~ with the fields enclosed by brackets [] replaced by
ccd28c25c1aee73a195053e677eca17e20917d84Christian Maeder ~ your own identifying information:
fbb2d28086a1860850f661fbf4af531322bac405Christian Maeder ~ "Portions Copyrighted [year] [name of copyright owner]"
d9062d0570e060fc81cf0d1c06c33223eb99a578Dominik Luecke -->
66f22d1887bb451915295fb454aa1baab88129fdChristian Maeder<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">
fbb2d28086a1860850f661fbf4af531322bac405Christian Maeder <modelVersion>4.0.0</modelVersion>
d9062d0570e060fc81cf0d1c06c33223eb99a578Dominik Luecke <parent>
ccd28c25c1aee73a195053e677eca17e20917d84Christian Maeder <groupId>org.forgerock.openidm</groupId>
ccd28c25c1aee73a195053e677eca17e20917d84Christian Maeder <artifactId>openidm-project</artifactId>
ccd28c25c1aee73a195053e677eca17e20917d84Christian Maeder <version>4.0.0</version>
</parent>
<artifactId>openidm-shell</artifactId>
<name>OpenIDM Felix Gogo Shell</name>
<packaging>bundle</packaging>
<properties>
<openidm.osgi.import.defaults>
!org.apache.felix.gogo.shell,!org.apache.felix.gogo.runtime*,org.apache.felix.service.command;version="[0.10.0,1)";status=provisional;mandatory:=status
</openidm.osgi.import.defaults>
</properties>
<dependencies>
<dependency>
<groupId>org.forgerock.openidm</groupId>
<artifactId>openidm-core</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.forgerock.openidm</groupId>
<artifactId>openidm-config</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.forgerock.openidm</groupId>
<artifactId>openidm-external-rest</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.restlet.osgi</groupId>
<artifactId>org.restlet.ext.jackson</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.apache.felix</groupId>
<artifactId>org.apache.felix.gogo.shell</artifactId>
<version>0.10.0</version>
<!-- The spring repository currently serves up a pom with false dependency on this file. Remove it. -->
<exclusions>
<exclusion>
<groupId>org.eclipse.osgi</groupId>
<artifactId>org.eclipse.osgi</artifactId>
</exclusion>
</exclusions>
</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>
<!-- Provided OSGi Dependencies -->
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
<scope>provided</scope>
</dependency>
<!-- TODO Remove org.apache.felix.framework when Compendium 4.3 is used -->
<dependency>
<groupId>org.apache.felix</groupId>
<artifactId>org.apache.felix.framework</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.compendium</artifactId>
<scope>provided</scope>
</dependency>
<!-- Provided Dependencies -->
<dependency>
<groupId>org.apache.felix</groupId>
<artifactId>org.apache.felix.scr.annotations</artifactId>
<scope>provided</scope>
</dependency>
<!-- Test Dependencies -->
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.easytesting</groupId>
<artifactId>fest-assert-core</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-all</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>
<Bundle-Activator>org.forgerock.openidm.shell.felixgogo.Activator</Bundle-Activator>
<Embed-Dependency>*;artifactId=asm-all;inline=false</Embed-Dependency>
<Main-Class>org.forgerock.openidm.shell.impl.Main</Main-Class>
<_failok>true</_failok>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
</project>