processor-redundant-1.0.0-20190308.073138-3.pom
Checksums
MD5
|
e6f50bb56632c98f6b42f67a1cea39a7
|
SHA1
|
9e4bd2573dee6757497196f9f740aa1516ae00ff
|
SHA256
|
368c544f8e47af92f0a0b8cc4ae7f52c52838633284c6a1f2617b88d0c66f516
|
SHA512
|
efba7345ec4c5f93f48e3e2da582fcf8e706461189dfc69f57d33b1396e551194cf37daabdf95497b0ab81f100369185f848b32a3e44a5687a87dd0399de3016
|
POM
<?xml version="1.0" encoding="UTF-8"?>
<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</groupId>
<artifactId>processor</artifactId>
<version>1.0.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>processor-redundant</artifactId>
<name>OCE :: Processor :: Redundant</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.groupId}.${project.artifactId}</Bundle-SymbolicName>
<Bundle-Version>${project.version}</Bundle-Version>
<Export-Package>org.opennms.oce.processor.redundant</Export-Package>
<Karaf-Commands>*</Karaf-Commands>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms.integration.api</groupId>
<artifactId>api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.oce.datasource</groupId>
<artifactId>org.opennms.oce.datasource.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.oce</groupId>
<artifactId>processor-standalone</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${slf4j-api.version}</version>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>${guava.version}</version>
</dependency>
<dependency>
<groupId>org.apache.karaf.shell</groupId>
<artifactId>org.apache.karaf.shell.core</artifactId>
<version>${karaf.version}</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.awaitility</groupId>
<artifactId>awaitility</artifactId>
<version>3.1.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>