<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">
  <modelVersion>4.0.0</modelVersion>
  <parent>
    <groupId>org.overlord</groupId>
    <artifactId>overlord-commons-dist</artifactId>
    <version>2.0.9.Final</version>
  </parent>
  <artifactId>overlord-commons-karaf-commands</artifactId>
  <name>Overlord Commons: Karaf commands</name>
  <packaging>bundle</packaging>
  <dependencies>
 	<dependency>
 		<groupId>org.apache.karaf.shell</groupId>
    	<artifactId>org.apache.karaf.shell.console</artifactId>
 		<scope>provided</scope>
	</dependency>
	<dependency>
 		<groupId>junit</groupId>
		<artifactId>junit</artifactId>
 		<scope>test</scope>
	</dependency>    
	<dependency>
		<groupId>org.bouncycastle</groupId>
		<artifactId>bcprov-jdk15on</artifactId>
	</dependency>
  </dependencies>
  <build>
    <plugins>
 	 <plugin>
        <groupId>org.apache.felix</groupId>
        <artifactId>maven-bundle-plugin</artifactId>
        <extensions>true</extensions>
      </plugin>
    </plugins>
  </build>
</project>
