org.opennms.oce.features.graph.shell-1.0.0-20190308.073304-3.pom
Checksums
MD5
|
6eefb9456c48f083494d53f2f1f67454
|
SHA1
|
31452a1191075511afe64fe84d8ea10a776d5120
|
SHA256
|
e1c5c896b0512f83bf41425f9f3cdabc3ae2eed6d0e0ed6aef30e043ecd81d42
|
SHA512
|
de0d042f0846a81683c5a158c3e948daab1d66d9aa67e5dd7511e82d99e00ab4e2c62f99922e6a04c6cb0ff8216d2e7cf4198291b97a4e8a81952c26329a9479
|
POM
<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">
<parent>
<groupId>org.opennms.oce.features</groupId>
<artifactId>graph</artifactId>
<version>1.0.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.oce.features.graph</groupId>
<artifactId>org.opennms.oce.features.graph.shell</artifactId>
<name>OCE :: Features :: Graph :: Shell</name>
<packaging>bundle</packaging>
<build>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<instructions>
<Bundle-RequiredExecutionEnvironment>JavaSE-1.8</Bundle-RequiredExecutionEnvironment>
<Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
<Bundle-Version>${project.version}</Bundle-Version>
<Karaf-Commands>*</Karaf-Commands>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms.oce.features.graph</groupId>
<artifactId>org.opennms.oce.features.graph.common</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.apache.karaf.shell</groupId>
<artifactId>org.apache.karaf.shell.core</artifactId>
<version>${karaf.version}</version>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
</dependency>
<!-- Test -->
<dependency>
<groupId>org.opennms.oce</groupId>
<artifactId>oce-test-api</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-library</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.oce.datasource</groupId>
<artifactId>org.opennms.oce.datasource.common</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>