extension-1.0.0-20190308.072542-2.pom
Checksums
MD5
|
5552aeabc4452fae3086ba296a532530
|
SHA1
|
eafe308c1061da97efafe3ea08a34451fbf7c96d
|
SHA256
|
13c017c21a5a2acb3f7aafc00e51d6c9b522d297b8b15648e53242540f713eaa
|
SHA512
|
91442909a96880bb2fc7522b5e3682755c88a50b382e575b27d5e7b0aae5baf3daed69ff50aa3bb52261b520afdfbb8ab5547304219d87965e17969800211800
|
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.integrations</groupId>
<artifactId>opennms</artifactId>
<version>1.0.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.oce.integrations.opennms</groupId>
<artifactId>extension</artifactId>
<name>OCE :: Integrations :: OpenNMS :: Extension</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>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms.integration.api</groupId>
<artifactId>common</artifactId>
</dependency>
<dependency>
<groupId>org.apache.servicemix.bundles</groupId>
<artifactId>org.apache.servicemix.bundles.snmp4j</artifactId>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.oce.integrations.opennms</groupId>
<artifactId>model</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
</dependency>
<!-- Test -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-library</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.oce</groupId>
<artifactId>oce-test-api</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>