pom.xml revision 935bb442e75e8d04a4eda0aca0cfa24cf4c6af6e
5394N/A<?xml version="1.0" encoding="UTF-8"?>
5394N/A<!--
5394N/A The contents of this file are subject to the terms of the Common Development and
5394N/A Distribution License (the License). You may not use this file except in compliance with the
5394N/A License.
5394N/A
5394N/A You can obtain a copy of the License at legal/CDDLv1.0.txt. See the License for the
5394N/A specific language governing permission and limitations under the License.
5394N/A
5394N/A When distributing Covered Software, include this CDDL Header Notice in each file and include
5394N/A the License file at legal/CDDLv1.0.txt. If applicable, add the following below the CDDL
5394N/A Header, with the fields enclosed by brackets [] replaced by your own identifying
5394N/A information: "Portions Copyrighted [year] [name of copyright owner]".
5394N/A
5394N/A Copyright © 2011 ForgeRock AS. All rights reserved.
5394N/A-->
5394N/A<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
5394N/A 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 <groupId>org.forgerock.openidm</groupId>
5394N/A <artifactId>openidm-project</artifactId>
5394N/A <version>2.1.0-SNAPSHOT</version>
5394N/A </parent>
5714N/A <artifactId>openidm-shell</artifactId>
5394N/A <name>OpenIDM Felix Gogo Shell</name>
5394N/A <packaging>bundle</packaging>
5394N/A <properties>
5394N/A <openidm.osgi.import.defaults>org.apache.felix.service.command;version="[0.10.0,1)";status=provisional;mandatory:=status</openidm.osgi.import.defaults>
5394N/A </properties>
5394N/A <dependencies>
5394N/A <dependency>
5394N/A <groupId>org.forgerock.openidm</groupId>
5394N/A <artifactId>openidm-core</artifactId>
5394N/A <version>${openidm.version}</version>
5394N/A </dependency>
5394N/A <dependency>
5394N/A <groupId>org.forgerock.openidm</groupId>
5394N/A <artifactId>openidm-external-rest</artifactId>
5394N/A <version>${openidm.version}</version>
5394N/A </dependency>
5394N/A <dependency>
5394N/A <groupId>org.restlet.jee</groupId>
5394N/A <artifactId>org.restlet.ext.jackson</artifactId>
5394N/A <scope>provided</scope>
5394N/A </dependency>
5394N/A <dependency>
5394N/A <groupId>org.apache.felix</groupId>
5394N/A <artifactId>org.apache.felix.gogo.shell</artifactId>
5394N/A <version>0.10.0</version>
5714N/A </dependency>
5394N/A <!--dependency>
5394N/A <groupId>org.apache.felix</groupId>
5394N/A <artifactId>org.apache.felix.gogo.command</artifactId>
5394N/A <version>0.12.0</version>
5394N/A <scope>provided</scope>
5394N/A </dependency-->
5394N/A <dependency>
5394N/A <groupId>asm</groupId>
5394N/A <artifactId>asm-all</artifactId>
5394N/A <version>3.3.1</version>
5394N/A <scope>provided</scope>
5394N/A </dependency>
5394N/A <dependency>
5394N/A <groupId>org.slf4j</groupId>
5394N/A <artifactId>slf4j-api</artifactId>
5394N/A </dependency>
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 <dependency>
5395N/A <groupId>org.osgi</groupId>
5394N/A <artifactId>org.osgi.compendium</artifactId>
5394N/A <scope>provided</scope>
5394N/A </dependency>
5394N/A <dependency>
5394N/A <groupId>org.apache.felix</groupId>
5394N/A <artifactId>org.apache.felix.scr.annotations</artifactId>
5394N/A <scope>provided</scope>
5394N/A </dependency>
5394N/A
5394N/A <!-- Test Dependencies -->
5394N/A <dependency>
5394N/A <groupId>org.easytesting</groupId>
5394N/A <artifactId>fest-assert</artifactId>
5394N/A <scope>test</scope>
5394N/A </dependency>
5394N/A <dependency>
5394N/A <groupId>org.testng</groupId>
5394N/A <artifactId>testng</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>
5394N/A <artifactId>maven-scr-plugin</artifactId>
5394N/A <executions>
5394N/A <execution>
5394N/A <id>generate-scr-scrdescriptor</id>
5457N/A <goals>
5394N/A <goal>scr</goal>
5394N/A </goals>
5394N/A </execution>
5423N/A </executions>
5443N/A </plugin>
5423N/A <plugin>
5423N/A <groupId>org.apache.felix</groupId>
5454N/A <artifactId>maven-bundle-plugin</artifactId>
5423N/A <extensions>true</extensions>
5423N/A <configuration>
5454N/A <instructions>
5454N/A <Export-Package>org.forgerock.openidm.shell;version=${openidm.version}</Export-Package>
5454N/A <Bundle-Activator>org.forgerock.openidm.shell.felixgogo.Activator</Bundle-Activator>
5454N/A <Embed-Dependency>*;artifactId=asm-all;inline=false</Embed-Dependency>
5423N/A <Main-Class>org.forgerock.openidm.shell.impl.Main</Main-Class>
5423N/A </instructions>
5423N/A </configuration>
5443N/A </plugin>
5443N/A </plugins>
5423N/A </build>
5423N/A</project>
5423N/A