config-1.0.0-20190308.072603-2.pom
Checksums
MD5
|
85c0018c0968aa127009a874abc91624
|
SHA1
|
ea3bf4717a2e0d8e7ce78c8b5aec125df88335d4
|
SHA256
|
5ee8e2f7de8539c18bac3687dc9c720e17a3ae61d402b6c1b758fefb799d9755
|
SHA512
|
0e2716c294b96cb07f41e05e5047d1cbdd2943c3d526b7feb8b03ffd02625f7a5548ef4714e594c785dc138b1aeff42980a3bf3e82a5b7c9ff842c4663a9e2a6
|
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>config</artifactId>
<name>OCE :: Integrations :: OpenNMS :: Config</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>xml</artifactId>
<version>${opennms.api.version}</version>
</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>