You are on page 1of 1231

<?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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms</groupId>
<artifactId>org.opennms.checkstyle</artifactId>
<version>27.0.5</version>
<name>OpenNMS :: Checkstyle</name>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<version>3.0.0-M3</version>
<executions>
<execution>
<id>enforce-maven</id>
<goals>
<goal>enforce</goal>
</goals>
<configuration>
<rules>
<requireMavenVersion>
<version>[3.5,)</version>
</requireMavenVersion>
<requireJavaVersion>
<version>[1.8,9)</version>
</requireJavaVersion>
</rules>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
<?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">

<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>org.opennms</groupId>
<artifactId>org.opennms.container</artifactId>
<version>27.0.5</version>
</parent>
<groupId>org.opennms.container</groupId>
<artifactId>org.opennms.container.branding</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: OSGi Container :: Branding</name>

<build>
<resources>
<resource>
<directory>src/main/filtered-resources</directory>
<filtering>true</filtering>
</resource>
</resources>
<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>manual</Bundle-SymbolicName>
<Export-Package>
org.apache.karaf.branding
</Export-Package>
<Spring-Context>*;public-context:=false</Spring-Context>
</instructions>
</configuration>
</plugin>
</plugins>
</build>

</project>
<?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">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.opennms.container</groupId>
<artifactId>org.opennms.container.bridge</artifactId>
<version>27.0.5</version>
</parent>
<groupId>org.opennms.container.bridge</groupId>
<artifactId>org.opennms.container.bridge.api</artifactId>
<packaging>jar</packaging>
<name>OpenNMS :: OSGi Container :: Web OSGi Bridge :: API</name>
</project>
<?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">

<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>org.opennms</groupId>
<artifactId>org.opennms.container</artifactId>
<version>27.0.5</version>
</parent>
<groupId>org.opennms.container</groupId>
<artifactId>org.opennms.container.bridge</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: OSGi Container :: Web OSGi Bridge :: Parent</name>
<modules>
<module>api</module>
<module>proxy</module>
<module>rest</module>
</modules>
</project>
<?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">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.opennms.container</groupId>
<artifactId>org.opennms.container.bridge</artifactId>
<version>27.0.5</version>
</parent>
<groupId>org.opennms.container.bridge</groupId>
<artifactId>org.opennms.container.bridge.proxy</artifactId>
<packaging>jar</packaging>
<name>OpenNMS :: OSGi Container :: Web OSGi Bridge :: Proxy</name>
<dependencies>
<dependency>
<groupId>org.apache.felix</groupId>
<artifactId>org.apache.felix.http.proxy</artifactId>
<version>${felixProxyVersion}</version>
</dependency>
<dependency>
<groupId>org.opennms.container.bridge</groupId>
<artifactId>org.opennms.container.bridge.api</artifactId>
<version>${project.version}</version>
<!-- otherwise it ends up in jetty-webapp/opennms/WEB-INF/lib, but we
need it in lib -->
<scope>provided</scope>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
<scope>provided</scope>
</dependency>
</dependencies>
</project>
<?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">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.opennms.container</groupId>
<artifactId>org.opennms.container.bridge</artifactId>
<version>27.0.5</version>
</parent>
<groupId>org.opennms.container.bridge</groupId>
<artifactId>org.opennms.container.bridge.rest</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: OSGi Container :: Web OSGi Bridge :: ReST</name>
<build>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms.container.bridge</groupId>
<artifactId>org.opennms.container.bridge.api</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.compendium</artifactId>
<version>${osgiCompendiumVersion}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.eclipsesource.jaxrs</groupId>
<artifactId>publisher-api</artifactId>
<version>${osgiJaxRsVersion}</version>
<scope>provided</scope>
</dependency>
</dependencies>

<!-- Required for com.eclipsesource.jaxrs/* -->


<repositories>
<repository>
<snapshots><enabled>false</enabled></snapshots>
<releases><enabled>true</enabled></releases>
<id>opennms-repo</id>
<name>OpenNMS Maven Repository</name>
<url>http://maven.opennms.org/content/groups/opennms.org-release</url>
</repository>
<repository>
<snapshots><enabled>true</enabled></snapshots>
<releases><enabled>false</enabled></releases>
<id>opennms-snapshots</id>
<name>OpenNMS Snapshot Maven Repository</name>
<url>http://maven.opennms.org/content/groups/opennms.org-snapshot</url>
</repository>
</repositories>
</project>
<?xml version="1.0"?>
<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</groupId>
<artifactId>org.opennms.container</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.container</groupId>
<artifactId>extender</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Container :: Extender</name>

<build>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<extensions>true</extensions>
</plugin>
</plugins>
</build>

<dependencies>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>osgi.core</artifactId>
<version>${osgiVersion}</version>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.compendium</artifactId>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
<dependency>
<groupId>org.apache.karaf.features</groupId>
<artifactId>org.apache.karaf.features.core</artifactId>
<version>${karafVersion}</version>
</dependency>
<dependency>
<groupId>org.apache.karaf.config</groupId>
<artifactId>org.apache.karaf.config.core</artifactId>
<version>${karafVersion}</version>
</dependency>
<dependency>
<groupId>org.apache.karaf.kar</groupId>
<artifactId>org.apache.karaf.kar.core</artifactId>
<version>${karafVersion}</version>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?xml version="1.0"?>
<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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>org.opennms.container</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.karaf</groupId>
<artifactId>opennms</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: OSGi Container :: Karaf Features</name>
<build>
<plugins>
<!-- Filter the features.xml files -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<executions>
<execution>
<id>copy-resources</id>
<phase>generate-resources</phase>
<goals><goal>copy-resources</goal></goals>
<configuration>
<outputDirectory>${project.build.outputDirectory}</outputDirectory>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<executions>
<execution>
<id>attach-artifacts</id>
<phase>package</phase>
<goals>
<goal>attach-artifact</goal>
</goals>
<configuration>
<artifacts>
<artifact>
<file>${project.build.outputDirectory}/features-
experimental.xml</file>
<type>xml</type>
<classifier>experimental</classifier>
</artifact>
<artifact>
<file>${project.build.outputDirectory}/features-minion.xml</file>
<type>xml</type>
<classifier>minion</classifier>
</artifact>
<artifact>
<file>${project.build.outputDirectory}/features-
sentinel.xml</file>
<type>xml</type>
<classifier>sentinel</classifier>
</artifact>
<artifact>
<file>${project.build.outputDirectory}/karaf-
extensions.xml</file>
<type>xml</type>
<classifier>karaf-extensions</classifier>
</artifact>
<artifact>
<file>${project.build.outputDirectory}/karaf/standard.xml</file>
<type>xml</type>
<classifier>standard</classifier>
</artifact>
<artifact>
<file>${project.build.outputDirectory}/karaf/spring.xml</file>
<type>xml</type>
<classifier>spring</classifier>
</artifact>
<artifact>
<file>${project.build.outputDirectory}/karaf/spring-
legacy.xml</file>
<type>xml</type>
<classifier>spring-legacy</classifier>
</artifact>
<artifact>
<file>${project.build.outputDirectory}/features.xml</file>
<type>xml</type>
<classifier>features</classifier>
</artifact>
</artifacts>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms.osgi</groupId>
<artifactId>opennms-osgi-core-rest</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.container</groupId>
<artifactId>org.opennms.container.jaas-login-module</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.activemq</groupId>
<artifactId>org.opennms.features.activemq.component</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.activemq</groupId>
<artifactId>org.opennms.features.activemq.shell</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.discovery</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.events</groupId>
<artifactId>org.opennms.features.events.syslog</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.events</groupId>
<artifactId>org.opennms.features.events.traps</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>jmxconfiggenerator</artifactId>
<version>${project.version}</version>
<type>pom</type>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.bsm</groupId>
<artifactId>org.opennms.features.bsm.shell-commands</artifactId>
<version>${project.version}</version>
<type>pom</type>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.bsm</groupId>
<artifactId>vaadin-adminpage</artifactId>
<version>${project.version}</version>
<type>pom</type>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>vaadin-jmxconfiggenerator</artifactId>
<version>${project.version}</version>
<type>pom</type>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>vaadin-snmp-events-and-metrics</artifactId>
<version>${project.version}</version>
<type>pom</type>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>vaadin-node-maps</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>vaadin</artifactId>
<version>${project.version}</version>
<type>pom</type>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.osgi.features.topology</groupId>
<artifactId>opennms-topology-runtime-base</artifactId>
<version>${project.version}</version>
<type>pom</type>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.topology.plugins.topo</groupId>

<artifactId>org.opennms.features.topology.plugins.topo.pathoutage</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.topology.plugins.topo</groupId>
<artifactId>asset</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.topology.plugins</groupId>
<artifactId>org.opennms.features.topology.plugins.browsers</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.topology.plugins.topo</groupId>
<artifactId>org.opennms.features.topology.plugins.topo.linkd</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.topology.plugins.topo</groupId>

<artifactId>org.opennms.features.topology.plugins.topo.application</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.topology.plugins.topo</groupId>
<artifactId>org.opennms.features.topology.plugins.topo.bsm</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.osgi.features.topology</groupId>
<artifactId>opennms-topology-runtime-graphml</artifactId>
<version>${project.version}</version>
<type>pom</type>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.topology.plugins.topo</groupId>
<artifactId>org.opennms.features.topology.plugins.topo.vmware</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.topology</groupId>
<artifactId>org.opennms.features.topology.shell</artifactId>
<version>${project.version}</version>
<type>pom</type>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.enlinkd</groupId>
<artifactId>org.opennms.features.enlinkd.shell</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>vaadin-dashboard</artifactId>
<version>${project.version}</version>
<type>pom</type>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.ifttt</artifactId>
<version>${project.version}</version>
<type>pom</type>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.vaadin-dashlets</groupId>
<artifactId>dashlet-features</artifactId>
<version>${project.version}</version>
<type>pom</type>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>vaadin-surveillance-views</artifactId>
<version>${project.version}</version>
<type>pom</type>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>vaadin-components</artifactId>
<version>${project.version}</version>
<type>pom</type>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>jira-troubleticketer</artifactId>
<version>${project.version}</version>
<type>pom</type>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>opennms-integration-tsrm</artifactId>
<version>${project.version}</version>
<type>pom</type>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-icmp-jni</artifactId>
<version>${project.version}</version>
<type>pom</type>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-icmp-jni6</artifactId>
<version>${project.version}</version>
<type>pom</type>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-icmp-commands</artifactId>
<version>${project.version}</version>
<type>pom</type>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>org.opennms.icmp.proxy.rpc-impl</artifactId>
<version>${project.version}</version>
<type>pom</type>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.snmp</groupId>
<artifactId>org.opennms.core.snmp.commands</artifactId>
<version>${project.version}</version>
<type>pom</type>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>datachoices</artifactId>
<version>${project.version}</version>
<type>pom</type>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.snmp</groupId>
<artifactId>org.opennms.core.snmp.proxy.rpc-impl</artifactId>
<version>${project.version}</version>
<type>pom</type>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-detectorclient-rpc</artifactId>
<version>${project.version}</version>
<type>pom</type>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.poller</groupId>
<artifactId>org.opennms.features.poller.client-rpc</artifactId>
<version>${project.version}</version>
<type>pom</type>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.commands</artifactId>
<version>${project.version}</version>
<type>pom</type>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.events</groupId>
<artifactId>org.opennms.features.events.commands</artifactId>
<version>${project.version}</version>
<type>pom</type>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-wmi</artifactId>
<version>${project.version}</version>
<type>pom</type>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.jest</groupId>
<artifactId>opennms-jest</artifactId>
<version>${project.version}</version>
<type>pom</type>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.opennms-es-rest</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.eif-adapter</artifactId>
<version>${project.version}</version>
<type>pom</type>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.rpc</groupId>
<artifactId>org.opennms.core.ipc.rpc.commands</artifactId>
<version>${project.version}</version>
<type>pom</type>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.common</groupId>
<artifactId>org.opennms.core.ipc.common.kafka-shell</artifactId>
<version>${project.version}</version>
<type>pom</type>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.telemetry.distributed</groupId>
<artifactId>org.opennms.features.telemetry.distributed.common</artifactId>
<version>${project.version}</version>
<type>pom</type>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.telemetry.distributed</groupId>
<artifactId>org.opennms.features.telemetry.distributed.minion</artifactId>
<version>${project.version}</version>
<type>pom</type>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.telemetry.distributed</groupId>
<artifactId>org.opennms.features.telemetry.distributed.sentinel</artifactId>
<version>${project.version}</version>
<type>pom</type>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.situation-feedback</artifactId>
<version>${project.version}</version>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.features.alarms.history.rest</groupId>
<artifactId>org.opennms.features.alarms.history.rest.impl</artifactId>
<version>${project.version}</version>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.features.alarms.history</groupId>
<artifactId>org.opennms.features.alarms.history.elastic</artifactId>
<version>${project.version}</version>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.features.telemetry</groupId>
<artifactId>org.opennms.features.telemetry.api</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.telemetry.config</groupId>
<artifactId>org.opennms.features.telemetry.config.api</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.kafka</groupId>
<artifactId>org.opennms.features.kafka.producer</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.container</groupId>
<artifactId>extender</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.api-layer</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.integration.api.sample</groupId>
<artifactId>sample-project</artifactId>
<version>${opennmsApiVersion}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.integration.api</groupId>
<artifactId>karaf-features</artifactId>
<version>${opennmsApiVersion}</version>
<type>xml</type>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.distributed</groupId>
<artifactId>org.opennms.features.distributed.opennms-identity</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.topologies</groupId>
<artifactId>org.opennms.features.topologies.service.api</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
</dependencies>

<!-- Required for com.eclipsesource.jaxrs/* -->


<repositories>
<repository>
<snapshots><enabled>false</enabled></snapshots>
<releases><enabled>true</enabled></releases>
<id>opennms-repo</id>
<name>OpenNMS Maven Repository</name>
<url>http://maven.opennms.org/content/groups/opennms.org-release</url>
</repository>
<repository>
<snapshots><enabled>true</enabled></snapshots>
<releases><enabled>false</enabled></releases>
<id>opennms-snapshots</id>
<name>OpenNMS Snapshot Maven Repository</name>
<url>http://maven.opennms.org/content/groups/opennms.org-snapshot</url>
</repository>
<repository>
<id>sonatype.org-snapshot</id>
<name>Sonatype OSS Snapshots Repository</name>
<url>http://maven.opennms.org/content/groups/sonatype.org-snapshot/</url>
<releases><enabled>false</enabled></releases>
<snapshots><enabled>true</enabled></snapshots>
</repository>
</repositories>
</project>
<?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">

<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>org.opennms</groupId>
<artifactId>org.opennms.container</artifactId>
<version>27.0.5</version>
</parent>

<groupId>org.opennms.container</groupId>
<artifactId>org.opennms.container.jaas-login-module</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: OSGi Container :: Karaf JAAS Login Module</name>

<build>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<configuration>
<instructions>
<Bundle-SymbolicName>org.opennms.container.jaas-login-
module</Bundle-SymbolicName>
<Bundle-
Activator>org.opennms.container.jaas.Activator</Bundle-Activator>
<Import-Package>
org.apache.karaf.jaas.config;version="${karafVersion}",
*
</Import-Package>
<Export-Package>org.opennms.container.jaas.*</Export-
Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>

<dependencies>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-config</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.springframework-security</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.karaf.jaas</groupId>
<artifactId>org.apache.karaf.jaas.modules</artifactId>
<version>${karafVersion}</version>
</dependency>
<dependency>
<groupId>org.apache.karaf.jaas</groupId>
<artifactId>org.apache.karaf.jaas.config</artifactId>
<version>${karafVersion}</version>
</dependency>
</dependencies>

</project>
<?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</groupId>
<artifactId>org.opennms.container</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.container</groupId>
<artifactId>org.opennms.container.karaf</artifactId>
<packaging>karaf-assembly</packaging>
<name>OpenNMS :: OSGi Container :: Embedded Karaf</name>

<build>
<!-- Include resources from src/main in the distribution -->
<resources>
<resource>
<directory>${project.basedir}/src/main/filtered-
resources</directory>
<filtering>true</filtering>
</resource>
</resources>

<plugins>
<!--
This configuration mimics the default Karaf assembly from:

https://github.com/apache/karaf/blob/karaf-X.X.X/assemblies/apache-
karaf/pom.xml
-->
<plugin>
<groupId>org.apache.karaf.tooling</groupId>
<artifactId>karaf-maven-plugin</artifactId>
<version>${karafVersion}</version>
<extensions>true</extensions>
<configuration>
<bootRepositories>
<!-- OPENNMS: Replace the standard, spring, and spring-
legacy features files with our modified versions -->
<repository>mvn:org.opennms.karaf/opennms/$
{project.version}/xml/standard</repository>
<repository>mvn:org.opennms.karaf/opennms/$
{project.version}/xml/spring</repository>
<repository>mvn:org.opennms.karaf/opennms/$
{project.version}/xml/spring-legacy</repository>
<!-- OPENNMS: Add the OpenNMS feature repository -->
<repository>mvn:org.opennms.karaf/opennms/$
{project.version}/xml/features</repository>
<!-- OPENNMS: Add the OpenNMS Karaf extensions feature
repository -->
<repository>mvn:org.opennms.karaf/opennms/$
{project.version}/xml/karaf-extensions</repository>
<!-- OPENNMS: Add the OpenNMS Minion feature repository -->
<repository>mvn:org.opennms.karaf/opennms/$
{project.version}/xml/minion</repository>
</bootRepositories>
<installedFeatures>
<feature>wrapper</feature>
</installedFeatures>
<startupFeatures>
<feature>eventadmin</feature>
</startupFeatures>
<bootFeatures>
<feature>wrap</feature>
<feature>aries-blueprint</feature>
<feature>shell</feature>
<feature>shell-compat</feature>
<feature>feature</feature>
<feature>jaas</feature>
<feature>ssh</feature>
<feature>management</feature>
<feature>bundle</feature>
<feature>config</feature>
<feature>deployer</feature>
<feature>diagnostic</feature>
<feature>feature</feature>
<feature>instance</feature>
<feature>kar</feature>
<feature>log</feature>
<feature>package</feature>
<feature>service</feature>
<feature>system</feature>

<!-- OPENNMS: Add http, http-whiteboard to the default list


of features -->
<feature>http</feature>
<feature>http-whiteboard</feature>
</bootFeatures>
<libraries>

<library>mvn:org.apache.servicemix.bundles/org.apache.servicemix.bundles.xerces/2.1
1.0_1;type:=endorsed;export:=true;delegate:=true</library>

<library>mvn:org.apache.servicemix.specs/org.apache.servicemix.specs.jaxp-api-1.4/$
{karaf.servicemix.specs.version};type:=endorsed;export:=true</library>

<library>mvn:org.apache.servicemix.specs/org.apache.servicemix.specs.jaxb-api-2.2/$
{karaf.servicemix.specs.version};type:=endorsed;export:=true</library>

<library>mvn:org.apache.servicemix.specs/org.apache.servicemix.specs.jaxb-api-
2.3/2.3_1;type:=endorsed;export:=true</library>

<library>mvn:org.apache.servicemix.specs/org.apache.servicemix.specs.jaxws-api-
2.2/${karaf.servicemix.specs.version};type:=endorsed;export:=true</library>

<library>mvn:org.apache.servicemix.specs/org.apache.servicemix.specs.saaj-api-1.3/$
{karaf.servicemix.specs.version};type:=endorsed;export:=true</library>

<library>mvn:org.apache.servicemix.specs/org.apache.servicemix.specs.activation-
api-1.1/${karaf.servicemix.specs.version};type:=endorsed;export:=true</library>

<library>mvn:org.apache.servicemix.specs/org.apache.servicemix.specs.stax-api-1.2/$
{karaf.servicemix.specs.version};type:=endorsed;export:=true</library>

<library>mvn:org.apache.servicemix.bundles/org.apache.servicemix.bundles.xalan/2.7.
2_3;type:=endorsed;export:=true</library>

<library>mvn:org.apache.servicemix.bundles/org.apache.servicemix.bundles.xalan-
serializer/2.7.2_1;type:=endorsed;export:=true</library>
<library>mvn:javax.annotation/javax.annotation-
api/1.2;type:=endorsed;export:=true</library>

<library>mvn:org.apache.servicemix.specs/org.apache.servicemix.specs.activator/$
{karaf.servicemix.specs.version};type:=default;export:=true</library>

<library>mvn:org.apache.servicemix.specs/org.apache.servicemix.specs.locator/$
{karaf.servicemix.specs.version};type:=default;export:=true</library>

<library>mvn:net.java.dev.jna/jna/$
{jnaVersion};type:=boot;export:=false</library>
<library>mvn:net.java.dev.jna/jna-platform/$
{jnaVersion};type:=boot;export:=false</library>

<!-- OPENNMS: Add MINA bundles to prevent mina-sshd-core


from refreshing (KARAF-5384) -->
<library>mvn:org.apache.mina/mina-core/$
{minaVersion};type:=boot;export:=false</library>

<!-- OPENNMS: Add our custom branding JAR -->

<library>mvn:org.opennms.container/org.opennms.container.branding/$
{project.version};type:=default;export:=true</library>
</libraries>
<javase>1.8</javase>
</configuration>
</plugin>
<plugin>
<groupId>net.nicoulaj.maven.plugins</groupId>
<artifactId>checksum-maven-plugin</artifactId>
<executions>
<execution>
<phase>prepare-package</phase>
<goals><goal>files</goal></goals>
</execution>
</executions>
<configuration>
<algorithms><algorithm>SHA-1</algorithm></algorithms>
<fileSets>
<fileSet>
<directory>$
{project.build.directory}/assembly/system</directory>
<includes>
<include>**/*.jar</include>
<include>**/*.pom</include>
<include>**/*.war</include>
<include>**/*.xml</include>
</includes>
</fileSet>
</fileSets>
</configuration>
</plugin>
<plugin>
<artifactId>maven-clean-plugin</artifactId>
<executions>
<execution>
<id>cleanup-after-integration-tests</id>
<phase>post-integration-test</phase>
<goals>
<goal>clean</goal>
</goals>
<configuration>

<excludeDefaultDirectories>true</excludeDefaultDirectories>
<filesets>
<fileset>
<directory>$
{project.build.directory}/assembly</directory>
</fileset>
</filesets>
<overrideUid>0</overrideUid>
<overrideGid>0</overrideGid>
<tarLongFileMode>posix</tarLongFileMode>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>

<dependencies>
<dependency>
<groupId>org.apache.karaf.features</groupId>
<artifactId>framework</artifactId>
<version>${karafVersion}</version>
<type>kar</type>
<exclusions>
<exclusion>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
</exclusion>
</exclusions>
</dependency>
<!--
This is the original version of
mvn:org.opennms.karaf/opennms//xml/standard so it
shouldn't be necessary but the karaf-maven-plugin doesn't resolve the
bootFeatures
without it. The plugin looks at the classifier and scope when it does
its magic so
something about mvn:org.opennms.karaf/opennms//xml/standard doesn't
line up like
the original one does.
-->
<dependency>
<groupId>org.apache.karaf.features</groupId>
<artifactId>standard</artifactId>
<version>${karafVersion}</version>
<classifier>features</classifier>
<type>xml</type>
<exclusions>
<exclusion>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.opennms.karaf</groupId>
<artifactId>opennms</artifactId>
<version>${project.version}</version>
<classifier>standard</classifier>
<type>xml</type>
</dependency>
<dependency>
<groupId>org.opennms.karaf</groupId>
<artifactId>opennms</artifactId>
<version>${project.version}</version>
<classifier>spring</classifier>
<type>xml</type>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.opennms.karaf</groupId>
<artifactId>opennms</artifactId>
<version>${project.version}</version>
<classifier>spring-legacy</classifier>
<type>xml</type>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.opennms.karaf</groupId>
<artifactId>opennms</artifactId>
<version>${project.version}</version>
<classifier>features</classifier>
<type>xml</type>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.opennms.karaf</groupId>
<artifactId>opennms</artifactId>
<version>${project.version}</version>
<classifier>minion</classifier>
<type>xml</type>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.apache.felix</groupId>
<artifactId>org.apache.felix.http.bridge</artifactId>
<version>${felixBridgeVersion}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.container</groupId>
<artifactId>org.opennms.container.branding</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
<!--
<dependency>
<groupId>org.apache.karaf</groupId>
<artifactId>org.apache.karaf.main</artifactId>
<version>${karafVersion}</version>
<exclusions>
<exclusion>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.karaf.jaas</groupId>
<artifactId>org.apache.karaf.jaas.boot</artifactId>
<version>${karafVersion}</version>
<exclusions>
<exclusion>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
</exclusion>
</exclusions>
</dependency>
-->
</dependencies>
<repositories>
<repository>
<snapshots><enabled>false</enabled></snapshots>
<releases><enabled>true</enabled></releases>
<id>central</id>
<name>Maven Central</name>
<url>http://maven.opennms.org/content/repositories/central/</url>
</repository>
</repositories>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>opennms</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>org.opennms.container</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: OSGi Container</name>
<modules>
<module>branding</module>
<module>features</module>
<module>karaf</module>
<module>servlet</module>
<module>bridge</module>
<module>jaas-login-module</module>
<module>extender</module>
<module>spring-extender</module>
<module>shared</module>
</modules>
</project>
<?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">

<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>org.opennms</groupId>
<artifactId>org.opennms.container</artifactId>
<version>27.0.5</version>
</parent>

<groupId>org.opennms.container</groupId>
<artifactId>org.opennms.container.servlet</artifactId>
<packaging>war</packaging>
<name>OpenNMS :: OSGi Container :: Web Servlet</name>

<properties>
<jetty.port>8080</jetty.port>
<maven-jetty-plugin.version>6.1.26</maven-jetty-plugin.version>
</properties>

<dependencies>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.compendium</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.soa</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.karaf</groupId>
<artifactId>org.apache.karaf.main</artifactId>
<version>${karafVersion}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.container.bridge</groupId>
<artifactId>org.opennms.container.bridge.proxy</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<scope>provided</scope>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.mortbay.jetty</groupId>
<artifactId>maven-jetty-plugin</artifactId>
<version>${maven-jetty-plugin.version}</version>
<configuration>
<connectors>
<connector
implementation="org.mortbay.jetty.nio.SelectChannelConnector">
<port>${jetty.port}</port>
<maxIdleTime>60000</maxIdleTime>
</connector>
</connectors>
<systemProperties>
<!-- enable easy connection to JConsole -->
<systemProperty>
<name>com.sun.management.jmxremote</name>
<value />
</systemProperty>
</systemProperties>
<scanIntervalSeconds>10</scanIntervalSeconds>
<webAppSourceDirectory>${project.build.directory}/$
{project.build.finalName}</webAppSourceDirectory>
</configuration>
</plugin>
</plugins>
</build>

</project>
<?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</groupId>
<artifactId>org.opennms.container</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.container</groupId>
<artifactId>org.opennms.container.shared</artifactId>
<packaging>karaf-assembly</packaging>
<name>OpenNMS :: Container :: Karaf (Shared)</name>

<build>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>false</filtering>
</resource>
<resource>
<directory>src/main/filtered-resources</directory>
<filtering>true</filtering>
</resource>
</resources>

<plugins>
<!--
This configuration mimics the default Karaf assembly from:

https://github.com/apache/karaf/blob/karaf-X.X.X/assemblies/apache-
karaf/pom.xml
-->
<plugin>
<groupId>org.apache.karaf.tooling</groupId>
<artifactId>karaf-maven-plugin</artifactId>
<version>${karafVersion}</version>
<extensions>true</extensions>
<configuration>
<bootRepositories>
<!-- OPENNMS: Add the OpenNMS Karaf extensions feature
repository -->
<repository>mvn:org.opennms.karaf/opennms/$
{project.version}/xml/karaf-extensions</repository>
<descriptor>mvn:io.hawt/hawtio-karaf/$
{hawtio.version}/xml/features</descriptor>
</bootRepositories>
<!-- use this instead of bootRepositories when we move to
karaf-maven-plugin 4.2.x or higher -->
<!-- <descriptors>
<!-/- OPENNMS: Add the OpenNMS Karaf extensions feature
repository -/->
<descriptor>mvn:org.opennms.karaf/opennms/$
{project.version}/xml/karaf-extensions</descriptor>
<!-/- OPENNMS: Additional tools -/->
<descriptor>mvn:io.hawt/hawtio-karaf/$
{hawtio.version}/xml/features</descriptor>
</descriptors> -->
<installedFeatures>
<feature>wrapper</feature>

<!-- OPENNMS: Add Spring features that we need in the base


container -->
<!-- These versions match the versions shipped with Apache
Karaf 4.1.5 -->
<feature>spring/3.1.4.RELEASE</feature>
<feature>spring/3.2.18.RELEASE_1</feature>
<feature>spring/4.0.9.RELEASE_1</feature>
<feature>spring/4.1.9.RELEASE_1</feature>
<feature>spring/4.2.9.RELEASE_1</feature>
<feature>spring/4.3.14.RELEASE_1</feature>

<feature>spring-jms/4.1.9.RELEASE_1</feature>
<feature>spring/${springVersion}</feature>
<feature>spring-jms/${springVersion}</feature>
</installedFeatures>
<startupFeatures>
<feature>eventadmin</feature>
</startupFeatures>
<bootFeatures>
<feature>wrap</feature>
<feature>aries-blueprint</feature>
<feature>shell</feature>
<feature>shell-compat</feature>
<feature>feature</feature>
<feature>jaas</feature>
<feature>ssh</feature>
<feature>management</feature>
<feature>bundle</feature>
<feature>config</feature>
<feature>deployer</feature>
<feature>diagnostic</feature>
<feature>feature</feature>
<feature>instance</feature>
<feature>kar</feature>
<feature>log</feature>
<feature>package</feature>
<feature>service</feature>
<feature>system</feature>

<!-- OPENNMS: Add our enhancements to the container -->


<feature>karaf-extender</feature>
<feature>scv-api</feature>
<feature>scv-jceks-impl</feature>
<feature>scv-shell</feature>

<!-- OPENNMS: Additional tools -->


<feature>hawtio-offline</feature>
<feature>jolokia</feature>
</bootFeatures>
<libraries>
<!-- OPENNMS: Add JNA bundles to prevent jline from
refreshing (KARAF-5251) -->
<library>mvn:net.java.dev.jna/jna/$
{jnaVersion};type:=boot;export:=false</library>
<library>mvn:net.java.dev.jna/jna-platform/$
{jnaVersion};type:=boot;export:=false</library>

<!-- OPENNMS: Add MINA bundles to prevent mina-sshd-core


from refreshing (KARAF-5384) -->
<library>mvn:org.apache.mina/mina-core/$
{minaVersion};type:=boot;export:=false</library>
</libraries>
<javase>1.8</javase>
</configuration>
</plugin>
<plugin>
<artifactId>maven-clean-plugin</artifactId>
<executions>
<execution>
<id>cleanup-after-integration-tests</id>
<phase>post-integration-test</phase>
<goals>
<goal>clean</goal>
</goals>
<configuration>

<excludeDefaultDirectories>true</excludeDefaultDirectories>
<filesets>
<fileset>
<directory>$
{project.build.directory}/assembly</directory>
</fileset>
</filesets>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>

<dependencies>
<dependency>
<!-- scope is compile so all features (there is only one) are
installed into startup.properties and the feature repo itself is
not added
in etc/org.apache.karaf.features.cfg file -->
<groupId>org.apache.karaf.features</groupId>
<artifactId>framework</artifactId>
<version>${karafVersion}</version>
<type>kar</type>
<exclusions>
<exclusion>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.karaf.features</groupId>
<artifactId>standard</artifactId>
<version>${karafVersion}</version>
<classifier>features</classifier>
<type>xml</type>
<exclusions>
<exclusion>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<!-- scope is runtime so the feature repo is listed in
etc/org.apache.karaf.features.cfg
file, and features will installed into the system directory if
specified in
the plugin configuration -->
<groupId>org.apache.karaf.features</groupId>
<artifactId>spring</artifactId>
<version>${karafVersion}</version>
<classifier>features</classifier>
<type>xml</type>
<scope>runtime</scope>
<exclusions>
<exclusion>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<!-- scope is runtime so the feature repo is listed in
etc/org.apache.karaf.features.cfg
file, and features will installed into the system directory if
specified in
the plugin configuration -->
<groupId>org.apache.karaf.features</groupId>
<artifactId>spring-legacy</artifactId>
<version>${karafVersion}</version>
<classifier>features</classifier>
<type>xml</type>
<scope>runtime</scope>
<exclusions>
<exclusion>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.opennms.karaf</groupId>
<artifactId>opennms</artifactId>
<version>${project.version}</version>
<classifier>karaf-extensions</classifier>
<type>xml</type>
<scope>runtime</scope>
</dependency>
</dependencies>
</project>
<?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</groupId>
<artifactId>org.opennms.container</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.container</groupId>
<artifactId>spring-extender</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Container :: Spring - Extender</name>
<description>Bundle with capability to load spring application contexts within
osgi.</description>
<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>
<Bundle-
Activator>org.opennms.netmgt.shared.bootstrap.Activator</Bundle-Activator>
<Embed-
Dependency>groupId=org.eclipse.gemini.blueprint</Embed-Dependency>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</dependency>
<dependency>
<groupId>org.eclipse.gemini.blueprint</groupId>
<artifactId>gemini-blueprint-core</artifactId>
<version>${eclipseGeminiVersion}</version>
</dependency>
<dependency>
<groupId>org.eclipse.gemini.blueprint</groupId>
<artifactId>gemini-blueprint-extender</artifactId>
<version>${eclipseGeminiVersion}</version>
</dependency>
<dependency>
<groupId>org.eclipse.gemini.blueprint</groupId>
<artifactId>gemini-blueprint-io</artifactId>
<version>${eclipseGeminiVersion}</version>
</dependency>
</dependencies>
<!--
By default Eclipse Gemini uses Spring 4.2.5.RELEASE_1, but we use
4.2.9.RELEASE_1.
In order to enforce this, we manually overwrite the spring dependencies
here.
-->
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.apache.servicemix.bundles</groupId>
<artifactId>org.apache.servicemix.bundles.spring-aop</artifactId>
<version>${springVersion}</version>
</dependency>
<dependency>
<groupId>org.apache.servicemix.bundles</groupId>
<artifactId>org.apache.servicemix.bundles.spring-beans</artifactId>
<version>${springVersion}</version>
</dependency>
<dependency>
<groupId>org.apache.servicemix.bundles</groupId>
<artifactId>org.apache.servicemix.bundles.spring-
context</artifactId>
<version>${springVersion}</version>
</dependency>
<dependency>
<groupId>org.apache.servicemix.bundles</groupId>
<artifactId>org.apache.servicemix.bundles.spring-core</artifactId>
<version>${springVersion}</version>
</dependency>
<dependency>
<groupId>org.apache.servicemix.bundles</groupId>
<artifactId>org.apache.servicemix.bundles.spring-
expression</artifactId>
<version>${springVersion}</version>
</dependency>
</dependencies>
</dependencyManagement>

</project>
<?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">

<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>org.opennms</groupId>
<artifactId>org.opennms.container</artifactId>
<version>27.0.5</version>
</parent>

<groupId>org.opennms.container</groupId>
<artifactId>web</artifactId>
<packaging>war</packaging>
<name>OpenNMS :: OSGi Container :: Web</name>

<properties>
<jetty.port>8080</jetty.port>
<maven-jetty-plugin.version>6.1.26</maven-jetty-plugin.version>
</properties>

<dependencies>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.soa</artifactId>
</dependency>
<dependency>
<groupId>org.apache.karaf</groupId>
<artifactId>org.apache.karaf.main</artifactId>
<version>${karafVersion}</version>
</dependency>
<dependency>
<groupId>org.apache.karaf.jaas</groupId>
<artifactId>org.apache.karaf.jaas.boot</artifactId>
<version>${karafVersion}</version>
</dependency>
<dependency>
<groupId>org.apache.felix</groupId>
<artifactId>org.apache.felix.main</artifactId>
<version>4.4.1</version>
</dependency>
<dependency>
<groupId>org.apache.felix</groupId>
<artifactId>org.apache.felix.http.proxy</artifactId>
<version>${felixProxyVersion}</version>
</dependency>
<dependency>
<groupId>org.opennms.container</groupId>
<artifactId>org.opennms.container.karaf</artifactId>
<version>${project.version}</version>
<type>tar.gz</type>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.container</groupId>
<artifactId>servlet</artifactId>
<version>${project.version}</version>
<type>war</type>
<scope>provided</scope>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<id>karaf</id>
<phase>process-resources</phase>
<goals>
<goal>single</goal>
</goals>
<configuration>
<appendAssemblyId>false</appendAssemblyId>
<descriptors>
<descriptor>src/assembly/web.xml</descriptor>
</descriptors>
<overrideUid>0</overrideUid>
<overrideGid>0</overrideGid>
<tarLongFileMode>posix</tarLongFileMode>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.mortbay.jetty</groupId>
<artifactId>maven-jetty-plugin</artifactId>
<version>${maven-jetty-plugin.version}</version>
<configuration>
<connectors>
<connector
implementation="org.mortbay.jetty.nio.SelectChannelConnector">
<port>${jetty.port}</port>
<maxIdleTime>60000</maxIdleTime>
</connector>
</connectors>
<systemProperties>
<!-- enable easy connection to JConsole -->
<systemProperty>
<name>com.sun.management.jmxremote</name>
<value />
</systemProperty>
<!-- override karaf home -->
<systemProperty>
<name>opennms.home</name>
<value>${project.build.directory}/$
{project.build.finalName}/WEB-INF/karaf</value>
</systemProperty>
</systemProperties>
<scanIntervalSeconds>10</scanIntervalSeconds>
<webAppSourceDirectory>${project.build.directory}/$
{project.build.finalName}</webAppSourceDirectory>

</configuration>
</plugin>
</plugins>
<pluginManagement>
<plugins>
<!--This plugin's configuration is used to store Eclipse m2e
settings only. It has no influence on the Maven build itself.-->
<plugin>
<groupId>org.eclipse.m2e</groupId>
<artifactId>lifecycle-mapping</artifactId>
<version>1.0.0</version>
<configuration>
<lifecycleMappingMetadata>
<pluginExecutions>
<pluginExecution>
<pluginExecutionFilter>

<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-
plugin</artifactId>

<versionRange>[2.2.1,)</versionRange>
<goals>
<goal>single</goal>
</goals>
</pluginExecutionFilter>
<action><execute/></action>
</pluginExecution>
</pluginExecutions>
</lifecycleMappingMetadata>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>

</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>org.opennms.core</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.api</artifactId>
<name>OpenNMS :: Core :: API</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>
<Export-Package>
org.opennms.core.config.api.*;version="${project.version}",
org.opennms.core.network;version="${project.version}"
</Export-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.soa</artifactId>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
<scope>provided</scope>
</dependency>

<!-- Test -->


<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>com.jayway.awaitility</groupId>
<artifactId>awaitility</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</dependency>
</dependencies>
</project>
<?xml version="1.0"?>
<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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.build</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.core.build</groupId>
<artifactId>org.opennms.core.build.keystore</artifactId>
<packaging>jar</packaging>
<name>OpenNMS :: Core :: Build Tools :: Keystore</name>
<build>
<resources>
<resource>
<directory>${project.build.directory}</directory>
<includes><include>*.ks</include></includes>
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>keytool-maven-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<id>generateKeyPair</id>
<goals>
<goal>generateKeyPair</goal>
</goals>
<phase>generate-resources</phase>
<configuration>
<!-- Don't generate a key if the keystore already exists -->
<skipIfExist>true</skipIfExist>
<keystore>${webstart.keystore}</keystore>
<storepass>${webstart.storepass}</storepass>
<alias>${webstart.keyalias}</alias>
<keypass>${webstart.keypass}</keypass>
<dname>cn=${webstart.dnameCn}</dname>

<!-- I'm not sure if we need these extension attributes -->


<!-- Add X.509 V3 "KeyUsage" attribute -->
<!-- <ext>KU=digitalSignature</ext> -->
<!-- Add X.509 V3 "ExtendedKeyUsage" attribute -->
<!-- <ext>EKU=codeSigning</ext> -->
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>org.opennms.core</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.build</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Core :: Build Tools</name>
<modules>
<module>keystore</module>
</modules>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>org.opennms.core</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.cache</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Cache :: Cache</name>
<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.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.compendium</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>${guavaVersion}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>io.dropwizard.metrics</groupId>
<artifactId>metrics-core</artifactId>
<version>${dropwizardMetricsVersion}</version>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>org.opennms.core</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.camel</artifactId>
<name>OpenNMS :: Core :: Camel</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>
<!--
Import all packages that can possibly be classloaded by
JaxbUtilsMarshalProcessor or JaxbUtilsUnmarshalProcessor
-->
<Import-Package>
org.eclipse.persistence.internal.jaxb;resolution:=optional,
org.eclipse.persistence.internal.jaxb.many;resolution:=optional,
org.opennms.netmgt.config.trapd;resolution:=optional,
org.opennms.netmgt.snmp;resolution:=optional,
org.opennms.netmgt.syslogd;resolution:=optional,
org.opennms.netmgt.trapd;resolution:=optional,
org.opennms.distributed.core.api;resolution:=optional,
*
</Import-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.xml</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>camel-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>org.opennms.core</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.cli</artifactId>
<packaging>jar</packaging>
<name>OpenNMS :: Core :: CLI Tools</name>
<build>
<resources>
<resource>
<directory>src/main/resources</directory>
</resource>
</resources>
<plugins>
<!-- disable source generation -->
<plugin>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution><phase/></execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-resources-plugin</artifactId>
<executions>
<execution>
<phase>process-resources</phase>
<goals>
<goal>resources</goal>
</goals>
</execution>
</executions>
<configuration>
<encoding>UTF-8</encoding>
<escapeString>\</escapeString>
</configuration>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
<configuration>
<descriptors>
<descriptor>src/assembly/shunit.xml</descriptor>
</descriptors>
<overrideUid>0</overrideUid>
<overrideGid>0</overrideGid>
<tarLongFileMode>posix</tarLongFileMode>
</configuration>
</plugin>
</plugins>
</build>

<profiles>
<profile>
<activation>
<os><family>!windows</family></os>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.6.0</version>
<executions>
<execution>
<id>shell script tests</id>
<phase>test</phase>
<goals><goal>exec</goal></goals>
<configuration>
<executable>${project.basedir}/src/test/shell/run-
tests.sh</executable>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>

</project>
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/maven-v4_0_0.xsd">

<parent>
<groupId>org.opennms</groupId>
<artifactId>org.opennms.core</artifactId>
<version>27.0.5</version>
</parent>

<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.commands</artifactId>

<name>OpenNMS :: Core :: Shell Commands</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.core</groupId>
<artifactId>org.opennms.core.lib</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.karaf.shell</groupId>
<artifactId>org.apache.karaf.shell.core</artifactId>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>org.opennms.core</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.config</artifactId>
<name>OpenNMS :: Core :: Configuration</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>
<Export-
Package>org.opennms.core.config.impl.*;version="${project.version}"</Export-
Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.xml</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-config-jaxb</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-config-model</artifactId>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?xml version="1.0"?>
<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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>org.opennms.core</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.criteria</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Core :: Criteria Tools</name>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-model</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<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>
<Export-
Package>org.opennms.core.criteria,org.opennms.core.criteria.restrictions;version="$
{project.version}"</Export-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
</project>
<?xml version="1.0"?>
<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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>org.opennms.core</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.daemon</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Core :: Daemon</name>
<description>
The OpenNMS Daemon launches and acts as a container for OpenNMS Services such as
the poller or collector.
</description>
<profiles>
<profile>
<activation>
<jdk>(,1.9)</jdk>
</activation>
<dependencies>
<dependency>
<groupId>com.sun</groupId>
<artifactId>tools-jar</artifactId>
<version>1</version>
<scope>system</scope>
<systemPath>${java.home}/../lib/tools.jar</systemPath>
</dependency>
</dependencies>
</profile>
</profiles>
<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>
<Import-Package>
<!-- Declare the Attach API as an optional dependency -->
com.sun.tools.attach;resolution:=optional,
<!-- ActiveMQ broker is also optional -->
org.apache.activemq.broker;resolution:=optional,
org.apache.activemq.command;resolution:=optional,
org.apache.activemq.jaas;resolution:=optional,
org.apache.activemq.security;resolution:=optional,
org.opennms.features.activemq.broker.api;resolution:=optional,
org.opennms.features.activemq.broker.impl;resolution:=optional,
*
</Import-Package>
<Export-
Package>org.opennms.netmgt.daemon.*;org.opennms.netmgt.vmmgr.*;version="$
{project.version}"</Export-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.logging</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-icmp-api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-config</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-model</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>activemq-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.features.activemq</groupId>
<artifactId>org.opennms.features.activemq.component</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.activemq</groupId>
<artifactId>org.opennms.features.activemq.broker-api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.db</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.soa</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.activemq</groupId>
<artifactId>activemq-camel</artifactId>
<version>${activemqVersion}</version>
<exclusions>
<exclusion>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
</exclusion>
<exclusion>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
</exclusion>
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-beans</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-jms</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-beans</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-expression</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-jms</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-aop</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-tx</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>mx4j</groupId>
<artifactId>mx4j-tools</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>org.opennms.core</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.db.install</artifactId>
<name>OpenNMS :: Core :: Database Installer</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.dependencies</groupId>
<artifactId>spring-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
</dependency>
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.db</artifactId>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>org.opennms.core</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.db</artifactId>
<name>OpenNMS :: Core :: Database Access API</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>
<Export-
Package>org.opennms.netmgt.config.opennmsDataSources.*;org.opennms.core.db.*;versio
n="${project.version}"</Export-Package>
</instructions>
</configuration>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<descriptors>
<descriptor>src/assembly/xsds.xml</descriptor>
</descriptors>
<overrideUid>0</overrideUid>
<overrideGid>0</overrideGid>
<tarLongFileMode>posix</tarLongFileMode>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>com.mchange</groupId>
<artifactId>c3p0</artifactId>
</dependency>
<dependency>
<groupId>com.zaxxer</groupId>
<artifactId>HikariCP</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>atomikos-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.xml</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.lib</artifactId>
</dependency>
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.xml</artifactId>
<scope>test</scope>
</dependency>
</dependencies>

<pluginRepositories>
<pluginRepository>
<snapshots><enabled>false</enabled></snapshots>
<releases><enabled>true</enabled></releases>
<id>opennms-repo</id>
<name>OpenNMS Repository</name>
<url>http://maven.opennms.org/content/groups/opennms.org-release</url>
</pluginRepository>
</pluginRepositories>

</project>
<?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>
<artifactId>org.opennms.core.grpc</artifactId>
<groupId>org.opennms.core</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>

<groupId>org.opennms.core.grpc</groupId>
<artifactId>org.opennms.core.grpc.common</artifactId>
<name>OpenNMS :: Core :: GRPC :: Common</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.core</groupId>
<artifactId>org.opennms.core.lib</artifactId>
</dependency>
<dependency>
<groupId>com.google.protobuf</groupId>
<artifactId>protobuf-java</artifactId>
<version>${protobufVersion}</version>
</dependency>
<dependency>
<groupId>io.grpc</groupId>
<artifactId>grpc-protobuf</artifactId>
<version>${grpcVersion}</version>
</dependency>
<dependency>
<groupId>io.grpc</groupId>
<artifactId>grpc-stub</artifactId>
<version>${grpcVersion}</version>
</dependency>
<dependency>
<groupId>io.grpc</groupId>
<artifactId>grpc-netty-shaded</artifactId>
<version>${grpcVersion}</version>
</dependency>
</dependencies>
</project>
<?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>
<artifactId>org.opennms.core.grpc</artifactId>
<groupId>org.opennms.core</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>

<groupId>org.opennms.core.grpc</groupId>
<artifactId>org.opennms.core.grpc.osgi</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: GRPC :: OSGI :: Shaded </name>
<build>
<defaultGoal>install</defaultGoal>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>${maven.shade.plugin.version}</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<artifactSet>
</artifactSet>
<filters>
<filter>
<artifact>*:*</artifact>
</filter>
</filters>
<createDependencyReducedPom>true</createDependencyReducedPom>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<instructions>
<Import-Package>
javax.net.ssl,
javax.security.cert,
javax.security.auth.x500,
</Import-Package>
<Export-Package>
com.google.protobuf,
io.grpc,
io.grpc.stub,
io.grpc.protobuf,
io.grpc.internal,
io.grpc.netty.shaded.io.netty.util.collection,
io.grpc.netty.shaded.io.grpc.netty,
io.grpc.netty.shaded.io.netty.handler.ssl,
io.grpc.netty.shaded.io.netty.util.collection
</Export-Package>
</instructions>
<unpackBundle>true</unpackBundle>
</configuration>
</plugin>
</plugins>
</build>

<dependencies>
<dependency>
<groupId>io.grpc</groupId>
<artifactId>grpc-netty-shaded</artifactId>
<version>${grpcVersion}</version>
</dependency>
<dependency>
<groupId>io.grpc</groupId>
<artifactId>grpc-api</artifactId>
<version>${grpcVersion}</version>
</dependency>
<dependency>
<groupId>io.grpc</groupId>
<artifactId>grpc-protobuf</artifactId>
<version>${grpcVersion}</version>
</dependency>
<dependency>
<groupId>io.grpc</groupId>
<artifactId>grpc-stub</artifactId>
<version>${grpcVersion}</version>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>${guavagRPCVersion}</version>
</dependency>
<dependency>
<groupId>com.google.protobuf</groupId>
<artifactId>protobuf-java</artifactId>
<version>${protobufVersion}</version>
</dependency>
</dependencies>

</project>
<?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>
<artifactId>org.opennms.core</artifactId>
<groupId>org.opennms</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>

<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.grpc</artifactId>
<packaging>pom</packaging>
<modules>
<module>common</module>
<module>osgi</module>
</modules>

</project>
<?xml version="1.0"?>
<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.core</groupId>
<artifactId>org.opennms.core.health</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.core.health</groupId>
<artifactId>org.opennms.core.health.api</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Core :: Health :: API</name>
</project>
<?xml version="1.0"?>
<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.core</groupId>
<artifactId>org.opennms.core.health</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.core.health</groupId>
<artifactId>org.opennms.core.health.impl</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Core :: Health :: Impl</name>
<build>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<configuration>
<instructions>
<Export-Package>org.opennms.core.health.impl</Export-
Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.karaf.shell</groupId>
<artifactId>org.apache.karaf.shell.core</artifactId>
<version>${karafVersion}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.karaf.bundle</groupId>
<artifactId>org.apache.karaf.bundle.core</artifactId>
<version>${karafVersion}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.health</groupId>
<artifactId>org.opennms.core.health.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.lib</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?xml version="1.0"?>
<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</groupId>
<artifactId>org.opennms.core</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.health</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Core :: Health (Parent)</name>
<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>
<Private-Package></Private-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<modules>
<module>api</module>
<module>impl</module>
<module>rest</module>
<module>shell</module>
</modules>
</project>
<?xml version="1.0"?>
<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.core</groupId>
<artifactId>org.opennms.core.health</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.core.health</groupId>
<artifactId>org.opennms.core.health.rest</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Core :: Health :: ReST</name>
<build>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<configuration>
<instructions>
<Export-Package>org.opennms.core.health.rest</Export-
Package>
<Private-
Package>org.opennms.core.health.rest.internal</Private-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.health</groupId>
<artifactId>org.opennms.core.health.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-web-api</artifactId>
</dependency>
</dependencies>
</project>
<?xml version="1.0"?>
<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.core</groupId>
<artifactId>org.opennms.core.health</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.core.health</groupId>
<artifactId>org.opennms.core.health.shell</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Core :: Health :: Shell</name>
<build>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<configuration>
<instructions>
<Bundle-RequiredExecutionEnvironment>JavaSE-1.8</Bundle-
RequiredExecutionEnvironment>
<Bundle-SymbolicName>${project.groupId}.$
{project.artifactId}</Bundle-SymbolicName>
<Bundle-Version>${project.version}</Bundle-Version>
<Private-Package></Private-Package>
<Karaf-Commands>org.opennms.core.health.*</Karaf-Commands>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms.core.health</groupId>
<artifactId>org.opennms.core.health.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.dropwizard.metrics</groupId>
<artifactId>metrics-core</artifactId>
<version>${dropwizardMetricsVersion}</version>
</dependency>
<dependency>
<groupId>org.apache.karaf.shell</groupId>
<artifactId>org.apache.karaf.shell.core</artifactId>
<version>${karafVersion}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
<scope>provided</scope>
</dependency>
</dependencies>
</project>
<?xml version="1.0"?>
<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</groupId>
<artifactId>org.opennms.core</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.icmp-jna</artifactId>
<name>OpenNMS :: Core :: ICMP JNA</name>
<packaging>bundle</packaging>
<build>
<plugins>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<index>true</index>
<manifest>
<addClasspath>true</addClasspath>
<mainClass>org.opennms.jicmp.standalone.Main</mainClass>
</manifest>
</archive>
</configuration>
</plugin>
<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>
<Export-
Package>org.opennms.jicmp.ip.*;org.opennms.jicmp.ipv6.*;org.opennms.jicmp.jna.*;org
.opennms.jicmp.standalone.*;version="${project.version}"</Export-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jna-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>

<repositories>
<repository>
<snapshots><enabled>false</enabled></snapshots>
<releases><enabled>true</enabled></releases>
<id>opennms-repo</id>
<name>OpenNMS Repository</name>
<url>http://maven.opennms.org/content/groups/opennms.org-release</url>
</repository>
</repositories>

</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.core.ipc</groupId>
<artifactId>org.opennms.core.ipc.common</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.core.ipc.common</groupId>
<artifactId>org.opennms.core.ipc.common.aws-sqs</artifactId>
<name>OpenNMS :: Core :: IPC :: Common :: Amazon SQS</name>
<packaging>bundle</packaging>
<properties>
<skipITs>true</skipITs>
</properties>
<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>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>test-jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.logging</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>aws-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.lib</artifactId>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.compendium</artifactId>
<scope>provided</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>
</dependencies>
</project>
<?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>
<artifactId>org.opennms.core.ipc.common</artifactId>
<groupId>org.opennms.core.ipc</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>

<groupId>org.opennms.core.ipc.common</groupId>
<artifactId>org.opennms.core.ipc.common.kafka-shell</artifactId>
<name>OpenNMS :: Core :: IPC :: Common :: Kafka :: 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.core.ipc.common</groupId>
<artifactId>org.opennms.core.ipc.common.kafka</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.apache.karaf.shell</groupId>
<artifactId>org.apache.karaf.shell.core</artifactId>
<version>${karafVersion}</version>
</dependency>

</dependencies>

</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.core.ipc</groupId>
<artifactId>org.opennms.core.ipc.common</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.core.ipc.common</groupId>
<artifactId>org.opennms.core.ipc.common.kafka</artifactId>
<name>OpenNMS :: Core :: IPC :: Common :: Kafka</name>
<packaging>bundle</packaging>
<properties>
<skipITs>true</skipITs>
</properties>
<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>com.google.guava</groupId>
<artifactId>guava</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.logging</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.distributed</groupId>
<artifactId>core-api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.compendium</artifactId>
</dependency>
<dependency>
<!-- This is required for the JmsQueueNameFactory -->
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.camel</artifactId>
</dependency>
<dependency>
<groupId>org.apache.servicemix.bundles</groupId>
<artifactId>org.apache.servicemix.bundles.kafka-clients</artifactId>
<version>${kafkaBundleVersion}</version>
<exclusions>
<exclusion>
<artifactId>log4j</artifactId>
<groupId>log4j</groupId>
</exclusion>
<exclusion>
<artifactId>slf4j-log4j12</artifactId>
<groupId>org.slf4j</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.servicemix.bundles</groupId>
<artifactId>org.apache.servicemix.bundles.kafka_$
{scalaVersion}</artifactId>
<version>${kafkaBundleVersion}</version>
<exclusions>
<exclusion>
<artifactId>log4j</artifactId>
<groupId>log4j</groupId>
</exclusion>
<exclusion>
<artifactId>slf4j-log4j12</artifactId>
<groupId>org.slf4j</groupId>
</exclusion>
<exclusion>
<artifactId>kafka-clients</artifactId>
<groupId>org.apache.kafka</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.scala-lang</groupId>
<artifactId>scala-library</artifactId>
<version>${scalaLibraryVersion}</version>
</dependency>
<dependency>
<groupId>org.opennms.core.health</groupId>
<artifactId>org.opennms.core.health.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.yammer.metrics</groupId>
<artifactId>metrics-core</artifactId>
<version>2.2.0</version>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.ipc</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.core.ipc</groupId>
<artifactId>org.opennms.core.ipc.common</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Core :: IPC :: Common</name>
<modules>
<module>aws-sqs</module>
<module>kafka</module>
<module>kafka-shell</module>
</modules>
</project>
<?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>
<artifactId>org.opennms.core.ipc.grpc</artifactId>
<groupId>org.opennms.core.ipc</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>

<groupId>org.opennms.core.ipc.grpc</groupId>
<artifactId>org.opennms.core.ipc.grpc.client</artifactId>
<name>OpenNMS :: Core :: IPC :: GRPC :: Client</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.core.ipc.grpc</groupId>
<artifactId>org.opennms.core.ipc.grpc.common</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.sink</groupId>
<artifactId>org.opennms.core.ipc.sink.common</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.rpc</groupId>
<artifactId>org.opennms.core.ipc.rpc.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core.health</groupId>
<artifactId>org.opennms.core.health.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.grpc</groupId>
<artifactId>grpc-netty-shaded</artifactId>
<version>${grpcVersion}</version>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.compendium</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
</dependencies>

</project>
<?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>
<artifactId>org.opennms.core.ipc.grpc</artifactId>
<groupId>org.opennms.core.ipc</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.core.ipc.grpc</groupId>
<artifactId>org.opennms.core.ipc.grpc.common</artifactId>
<name>OpenNMS :: Core :: IPC :: GRPC :: Parent</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.osgi</groupId>
<artifactId>org.osgi.compendium</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>io.grpc</groupId>
<artifactId>grpc-protobuf</artifactId>
<version>${grpcVersion}</version>
</dependency>
<dependency>
<groupId>io.grpc</groupId>
<artifactId>grpc-stub</artifactId>
<version>${grpcVersion}</version>
</dependency>
<dependency>
<groupId>com.google.protobuf</groupId>
<artifactId>protobuf-java</artifactId>
<version>${protobufVersion}</version>
</dependency>
</dependencies>
</project>
<?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>
<artifactId>org.opennms.core.ipc.grpc</artifactId>
<groupId>org.opennms.core.ipc</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>

<groupId>org.opennms.core.ipc.grpc</groupId>
<artifactId>org.opennms.core.ipc.grpc.itests</artifactId>

<dependencies>
<dependency>
<groupId>org.opennms.core.ipc.grpc</groupId>
<artifactId>org.opennms.core.ipc.grpc.client</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.grpc</groupId>
<artifactId>org.opennms.core.ipc.grpc.server</artifactId>
<version>${project.version}</version>
<exclusions>
<exclusion>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</exclusion>
<exclusion>
<groupId>com.google.protobuf</groupId>
<artifactId>protobuf-java</artifactId>
</exclusion>
</exclusions>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>${guavagRPCVersion}</version>
</dependency>
<dependency>
<groupId>com.google.protobuf</groupId>
<artifactId>protobuf-java</artifactId>
<version>${protobufVersion}</version>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.compendium</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.sink</groupId>
<artifactId>org.opennms.core.ipc.sink.xml</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.jayway.awaitility</groupId>
<artifactId>awaitility</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-slf4j-impl</artifactId>
<version>2.11.2</version>
</dependency>
</dependencies>
</project>
<?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>
<artifactId>org.opennms.core.ipc</artifactId>
<groupId>org.opennms.core</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<name>OpenNMS :: Core :: IPC :: GRPC :: Parent</name>
<groupId>org.opennms.core.ipc</groupId>
<artifactId>org.opennms.core.ipc.grpc</artifactId>
<packaging>pom</packaging>
<modules>
<module>server</module>
<module>client</module>
<module>common</module>
<module>itests</module>
</modules>

</project>
<?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>
<artifactId>org.opennms.core.ipc.grpc</artifactId>
<groupId>org.opennms.core.ipc</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.core.ipc.grpc</groupId>
<artifactId>org.opennms.core.ipc.grpc.server</artifactId>
<name>OpenNMS :: Core :: IPC :: GRPC :: Server</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.osgi</groupId>
<artifactId>org.osgi.compendium</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>io.grpc</groupId>
<artifactId>grpc-netty-shaded</artifactId>
<version>${grpcVersion}</version>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.grpc</groupId>
<artifactId>org.opennms.core.ipc.grpc.common</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.sink</groupId>
<artifactId>org.opennms.core.ipc.sink.common</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.rpc</groupId>
<artifactId>org.opennms.core.ipc.rpc.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.rpc</groupId>
<artifactId>org.opennms.core.ipc.rpc.common</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
</dependencies>

</project>
<?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>
<artifactId>org.opennms.core.ipc</artifactId>
<groupId>org.opennms.core</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>

<groupId>org.opennms.core.ipc</groupId>
<artifactId>org.opennms.core.ipc.osgi</artifactId>
<name>OpenNMS :: Core :: IPC :: OSGI</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.core.ipc.rpc</groupId>
<artifactId>org.opennms.core.ipc.rpc.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.sink</groupId>
<artifactId>org.opennms.core.ipc.sink.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.sink</groupId>
<artifactId>org.opennms.core.ipc.sink.common</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
<scope>provided</scope>
</dependency>
</dependencies>

</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>org.opennms.core</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.ipc</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Core :: IPC</name>
<modules>
<module>common</module>
<module>rpc</module>
<module>sink</module>
<module>grpc</module>
<module>osgi</module>
</modules>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.core.ipc</groupId>
<artifactId>org.opennms.core.ipc.rpc</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.core.ipc.rpc</groupId>
<artifactId>org.opennms.core.ipc.rpc.api</artifactId>
<name>OpenNMS :: Core :: IPC :: RPC :: API</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.core.tracing</groupId>
<artifactId>org.opennms.core.tracing.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.dropwizard.metrics</groupId>
<artifactId>metrics-core</artifactId>
<version>${dropwizardMetricsVersion}</version>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.core.ipc</groupId>
<artifactId>org.opennms.core.ipc.rpc</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.core.ipc.rpc</groupId>
<artifactId>org.opennms.core.ipc.rpc.aws-sqs-impl</artifactId>
<name>OpenNMS :: Core :: IPC :: RPC :: Amazon SQS Impl.</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.core.ipc.rpc</groupId>
<artifactId>org.opennms.core.ipc.rpc.common</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.rpc</groupId>
<artifactId>org.opennms.core.ipc.rpc.camel</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.common</groupId>
<artifactId>org.opennms.core.ipc.common.aws-sqs</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.distributed</groupId>
<artifactId>core-api</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.daemon</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.activemq</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.snmp</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.services</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.tracing</groupId>
<artifactId>org.opennms.core.tracing.registry</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.camel</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.rpc</groupId>
<artifactId>org.opennms.core.ipc.rpc.camel</artifactId>
<version>${project.version}</version>
<type>test-jar</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-library</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-mock</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.core.ipc</groupId>
<artifactId>org.opennms.core.ipc.rpc</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.core.ipc.rpc</groupId>
<artifactId>org.opennms.core.ipc.rpc.camel</artifactId>
<name>OpenNMS :: Core :: IPC :: RPC :: Camel</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>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>test-jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms.core.ipc.rpc</groupId>
<artifactId>org.opennms.core.ipc.rpc.api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.logging</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.distributed</groupId>
<artifactId>core-api</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.camel</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>camel-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.apache.camel</groupId>
<artifactId>camel-spring</artifactId>
<exclusions>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-beans</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-expression</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-jms</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-aop</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-tx</artifactId>
</exclusion>
<exclusion>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.camel</groupId>
<artifactId>camel-jms</artifactId>
<exclusions>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-beans</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-expression</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-jms</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-aop</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-tx</artifactId>
</exclusion>
<exclusion>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.daemon</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.activemq</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.snmp</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.services</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.camel</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.tracing</groupId>
<artifactId>org.opennms.core.tracing.registry</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-library</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-mock</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.rpc</groupId>
<artifactId>org.opennms.core.ipc.rpc.common</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.core.ipc</groupId>
<artifactId>org.opennms.core.ipc.rpc</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.core.ipc.rpc</groupId>
<artifactId>org.opennms.core.ipc.rpc.common</artifactId>
<name>OpenNMS :: Core :: IPC :: RPC :: Common</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.core.ipc.rpc</groupId>
<artifactId>org.opennms.core.ipc.rpc.xml</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.core.ipc</groupId>
<artifactId>org.opennms.core.ipc.rpc</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.core.ipc.rpc</groupId>
<artifactId>org.opennms.core.ipc.rpc.jms-impl</artifactId>
<name>OpenNMS :: Core :: IPC :: RPC :: JMS Impl.</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.core.ipc.rpc</groupId>
<artifactId>org.opennms.core.ipc.rpc.common</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.rpc</groupId>
<artifactId>org.opennms.core.ipc.rpc.camel</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.distributed</groupId>
<artifactId>core-api</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.tracing</groupId>
<artifactId>org.opennms.core.tracing.registry</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.daemon</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.activemq</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.snmp</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.services</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.camel</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.rpc</groupId>
<artifactId>org.opennms.core.ipc.rpc.camel</artifactId>
<version>${project.version}</version>
<type>test-jar</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-library</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-mock</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.core.ipc</groupId>
<artifactId>org.opennms.core.ipc.rpc</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.core.ipc.rpc</groupId>
<artifactId>org.opennms.core.ipc.rpc.kafka</artifactId>
<name>OpenNMS :: Core :: IPC :: RPC :: Kafka</name>
<packaging>bundle</packaging>
<build>
<!-- Enable below extension and plugin when you need to generate java source
files from proto -->

<!-- <extensions>
<extension>
<groupId>kr.motd.maven</groupId>
<artifactId>os-maven-plugin</artifactId>
<version>1.6.2</version>
</extension>
</extensions>-->
<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>
<!-- <plugin>
<groupId>org.xolstice.maven.plugins</groupId>
<artifactId>protobuf-maven-plugin</artifactId>
<version>0.6.1</version>
<configuration>
<protocArtifact>com.google.protobuf:protoc:3.6.1:exe:$
{os.detected.classifier}</protocArtifact>
<pluginId>grpc-java</pluginId>
<pluginArtifact>io.grpc:protoc-gen-grpc-java:1.24.0:exe:$
{os.detected.classifier}</pluginArtifact>
</configuration>
<executions>
<execution>
<goals>
<goal>compile</goal>
<goal>compile-custom</goal>
</goals>
</execution>
</executions>
</plugin>-->
</plugins>
</build>

<dependencies>
<dependency>
<groupId>org.opennms.core.ipc.rpc</groupId>
<artifactId>org.opennms.core.ipc.rpc.api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.common</groupId>
<artifactId>org.opennms.core.ipc.common.kafka</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.distributed</groupId>
<artifactId>core-api</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.sysprops</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.logging</artifactId>
</dependency>
<dependency>
<groupId> com.google.protobuf</groupId>
<artifactId>protobuf-java</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.rpc</groupId>
<artifactId>org.opennms.core.ipc.rpc.common</artifactId>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.compendium</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.swrve</groupId>
<artifactId>rate-limited-logger</artifactId>
<version>${rateLimitedLoggerVersion}</version>
</dependency>
<dependency>
<groupId>org.opennms.core.tracing</groupId>
<artifactId>org.opennms.core.tracing.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.github.resilience4j</groupId>
<artifactId>resilience4j-bulkhead</artifactId>
<version>${resilience4jVersion}</version>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.lib</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.kafka</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-model</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.snmp</groupId>
<artifactId>org.opennms.core.snmp.proxy.rpc-impl</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-mock</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.tests</groupId>
<artifactId>org.opennms.tests.mock-elements</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.jayway.awaitility</groupId>
<artifactId>awaitility</artifactId>
<scope>test</scope>
</dependency>
</dependencies>

</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.core.ipc</groupId>
<artifactId>org.opennms.core.ipc.rpc</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.core.ipc.rpc</groupId>
<artifactId>org.opennms.core.ipc.rpc.mock-impl</artifactId>
<name>OpenNMS :: Core :: IPC :: RPC :: Mock Impl.</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.core.ipc.rpc</groupId>
<artifactId>org.opennms.core.ipc.rpc.api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.rpc</groupId>
<artifactId>org.opennms.core.ipc.rpc.utils</artifactId>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.ipc</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.core.ipc</groupId>
<artifactId>org.opennms.core.ipc.rpc</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Core :: IPC :: RPC</name>
<modules>
<module>api</module>
<module>aws-sqs-impl</module>
<module>camel</module>
<module>common</module>
<module>jms-impl</module>
<module>kafka</module>
<module>mock-impl</module>
<module>shell-commands</module>
<module>utils</module>
<module>xml</module>
</modules>
</project>
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.core.ipc</groupId>
<artifactId>org.opennms.core.ipc.rpc</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.core.ipc.rpc</groupId>
<artifactId>org.opennms.core.ipc.rpc.commands</artifactId>
<name>OpenNMS :: Core :: IPC :: RPC :: Shell Commands</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.core.ipc.rpc</groupId>
<artifactId>org.opennms.core.ipc.rpc.common</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.rpc</groupId>
<artifactId>org.opennms.core.ipc.rpc.utils</artifactId>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</dependency>
<dependency>
<groupId>io.dropwizard.metrics</groupId>
<artifactId>metrics-core</artifactId>
<version>${dropwizardMetricsVersion}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.karaf.shell</groupId>
<artifactId>org.apache.karaf.shell.core</artifactId>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.enterprise</artifactId>
<scope>provided</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.core.ipc</groupId>
<artifactId>org.opennms.core.ipc.rpc</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.core.ipc.rpc</groupId>
<artifactId>org.opennms.core.ipc.rpc.utils</artifactId>
<name>OpenNMS :: Core :: IPC :: RPC :: Utils</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.core.ipc.rpc</groupId>
<artifactId>org.opennms.core.ipc.rpc.api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-api</artifactId>
</dependency>
<dependency>
<groupId>ch.hsr</groupId>
<artifactId>geohash</artifactId>
<version>${geohashVersion}</version>
</dependency>
<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.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.db</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-mock</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.core.ipc</groupId>
<artifactId>org.opennms.core.ipc.rpc</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.core.ipc.rpc</groupId>
<artifactId>org.opennms.core.ipc.rpc.xml</artifactId>
<name>OpenNMS :: Core :: IPC :: RPC :: XML</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.core.ipc.rpc</groupId>
<artifactId>org.opennms.core.ipc.rpc.api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.xml</artifactId>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.core.ipc</groupId>
<artifactId>org.opennms.core.ipc.sink</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.core.ipc.sink</groupId>
<artifactId>org.opennms.core.ipc.sink.api</artifactId>
<name>OpenNMS :: Core :: IPC :: Sink :: API</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.core.tracing</groupId>
<artifactId>org.opennms.core.tracing.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.distributed</groupId>
<artifactId>core-api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.dropwizard.metrics</groupId>
<artifactId>metrics-core</artifactId>
<version>${dropwizardMetricsVersion}</version>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.core.ipc.sink</groupId>
<artifactId>org.opennms.core.ipc.sink.aws.sqs</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.core.ipc.sink.aws.sqs</groupId>
<artifactId>org.opennms.core.ipc.sink.aws.sqs.client</artifactId>
<name>OpenNMS :: Core :: IPC :: Sink :: AWS :: SQS :: Client</name>
<packaging>bundle</packaging>
<properties>
<skipITs>true</skipITs>
</properties>
<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>
<!--
org.opennms.core.ipc.sink.aws.sqs.server is only used by
AmazonSQSLocalMessageDispatcherFactory, which
requires a LocalDispatcherFactory, which is available via the server
module but only used when running
inside OpenNMS (via Spring) and never when running in an OSGI
container, thus we exclude it here.
-->
<Import-Package>
!org.opennms.core.ipc.sink.aws.sqs.server,
*
</Import-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.sink.aws.sqs</groupId>
<artifactId>org.opennms.core.ipc.sink.aws.sqs.common</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.sink.aws.sqs</groupId>
<artifactId>org.opennms.core.ipc.sink.aws.sqs.server</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.core.ipc.sink</groupId>
<artifactId>org.opennms.core.ipc.sink.aws.sqs</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.core.ipc.sink.aws.sqs</groupId>
<artifactId>org.opennms.core.ipc.sink.aws.sqs.common</artifactId>
<name>OpenNMS :: Core :: IPC :: Sink :: AWS :: SQS :: Common</name>
<packaging>bundle</packaging>
<properties>
<skipITs>true</skipITs>
</properties>
<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>com.google.guava</groupId>
<artifactId>guava</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.logging</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.sink</groupId>
<artifactId>org.opennms.core.ipc.sink.api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.sink</groupId>
<artifactId>org.opennms.core.ipc.sink.common</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.compendium</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.common</groupId>
<artifactId>org.opennms.core.ipc.common.aws-sqs</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.core.ipc.sink</groupId>
<artifactId>org.opennms.core.ipc.sink.aws.sqs</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.core.ipc.sink.aws.sqs</groupId>
<artifactId>org.opennms.core.ipc.sink.aws.sqs.itests</artifactId>
<name>OpenNMS :: Core :: IPC :: Sink :: AWS :: SQS :: Integration Tests</name>
<packaging>bundle</packaging>
<properties>
<skipITs>true</skipITs>
</properties>
<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.core.ipc.sink.aws.sqs</groupId>
<artifactId>org.opennms.core.ipc.sink.aws.sqs.client</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.sink.aws.sqs</groupId>
<artifactId>org.opennms.core.ipc.sink.aws.sqs.server</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.daemon</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.snmp</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.services</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.camel</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.sink</groupId>
<artifactId>org.opennms.core.ipc.sink.xml</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-library</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.jayway.awaitility</groupId>
<artifactId>awaitility</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-mock</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.sink</groupId>
<artifactId>org.opennms.core.ipc.sink.mock-impl</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.sink</groupId>
<artifactId>org.opennms.core.ipc.sink.common</artifactId>
<version>${project.version}</version>
<type>test-jar</type>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.core.ipc</groupId>
<artifactId>org.opennms.core.ipc.sink</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.core.ipc.sink</groupId>
<artifactId>org.opennms.core.ipc.sink.aws.sqs</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Core :: IPC :: Sink :: AWS :: SQS</name>
<modules>
<module>common</module>
<module>client</module>
<module>server</module>
<module>itests</module>
</modules>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.core.ipc.sink</groupId>
<artifactId>org.opennms.core.ipc.sink.aws.sqs</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.core.ipc.sink.aws.sqs</groupId>
<artifactId>org.opennms.core.ipc.sink.aws.sqs.server</artifactId>
<name>OpenNMS :: Core :: IPC :: Sink :: AWS :: SQS :: Server</name>
<packaging>bundle</packaging>
<properties>
<skipITs>true</skipITs>
</properties>
<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.core.ipc.sink.aws.sqs</groupId>
<artifactId>org.opennms.core.ipc.sink.aws.sqs.common</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.core.ipc.sink</groupId>
<artifactId>org.opennms.core.ipc.sink.camel</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>

<groupId>org.opennms.core.ipc.sink.camel</groupId>
<artifactId>org.opennms.core.ipc.sink.camel.client</artifactId>
<name>OpenNMS :: Core :: IPC :: Sink :: Camel :: Client</name>
<packaging>bundle</packaging>
<properties>
<skipITs>true</skipITs>
</properties>
<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>
<Import-Package>
<!--
org.opennms.core.ipc.sink.camel.server is only used by
CamelLocalMessageDispatcherFactory, which
requires a LocalDispatcherFactory, which is available via the server
module but only used when running
inside OpenNMS (via Spring) and never when running in an OSGI
container, thus we exclude it here.
-->
!org.opennms.core.ipc.sink.camel.server,
*
</Import-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.sink.camel</groupId>
<artifactId>org.opennms.core.ipc.sink.camel.common</artifactId>
<version>${project.version}</version>
</dependency>
<!-- We require the server for the case that the client is dispatches
directly to the server -->
<dependency>
<groupId>org.opennms.core.ipc.sink.camel</groupId>
<artifactId>org.opennms.core.ipc.sink.camel.server</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.core.ipc.sink</groupId>
<artifactId>org.opennms.core.ipc.sink.camel</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>

<groupId>org.opennms.core.ipc.sink.camel</groupId>
<artifactId>org.opennms.core.ipc.sink.camel.common</artifactId>
<name>OpenNMS :: Core :: IPC :: Sink :: Camel :: Common</name>
<packaging>bundle</packaging>
<properties>
<skipITs>true</skipITs>
</properties>
<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.core</groupId>
<artifactId>org.opennms.core.logging</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.sink</groupId>
<artifactId>org.opennms.core.ipc.sink.api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.sink</groupId>
<artifactId>org.opennms.core.ipc.sink.common</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.camel</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>camel-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.apache.camel</groupId>
<artifactId>camel-spring</artifactId>
<version>${camelVersion}</version>
<exclusions>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-beans</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-expression</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-jms</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-aop</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-tx</artifactId>
</exclusion>
<exclusion>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>io.dropwizard.metrics</groupId>
<artifactId>metrics-core</artifactId>
<version>${dropwizardMetricsVersion}</version>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.core.ipc.sink</groupId>
<artifactId>org.opennms.core.ipc.sink.camel</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>

<groupId>org.opennms.core.ipc.sink.camel</groupId>
<artifactId>org.opennms.core.ipc.sink.camel.itests</artifactId>
<name>OpenNMS :: Core :: IPC :: Sink :: Camel :: Integration Tests</name>
<packaging>bundle</packaging>
<properties>
<skipITs>true</skipITs>
</properties>
<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.core.ipc.sink.camel</groupId>
<artifactId>org.opennms.core.ipc.sink.camel.client</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.sink.camel</groupId>
<artifactId>org.opennms.core.ipc.sink.camel.server</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.distributed</groupId>
<artifactId>core-api</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.minion</groupId>
<artifactId>core-impl</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.daemon</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-test-dependencies</artifactId>
<type>pom</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.activemq</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.snmp</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.services</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.camel</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.sink</groupId>
<artifactId>org.opennms.core.ipc.sink.xml</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-library</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.jayway.awaitility</groupId>
<artifactId>awaitility</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-mock</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.sink</groupId>
<artifactId>org.opennms.core.ipc.sink.mock-impl</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.tracing</groupId>
<artifactId>org.opennms.core.tracing.registry</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.distributed</groupId>
<artifactId>org.opennms.features.distributed.opennms-identity</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.sink</groupId>
<artifactId>org.opennms.core.ipc.sink.common</artifactId>
<version>${project.version}</version>
<type>test-jar</type>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.core.ipc</groupId>
<artifactId>org.opennms.core.ipc.sink</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.core.ipc.sink</groupId>
<artifactId>org.opennms.core.ipc.sink.camel</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Core :: IPC :: Sink :: Camel</name>
<modules>
<module>common</module>
<module>client</module>
<module>server</module>
<module>itests</module>
</modules>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.core.ipc.sink</groupId>
<artifactId>org.opennms.core.ipc.sink.camel</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>

<groupId>org.opennms.core.ipc.sink.camel</groupId>
<artifactId>org.opennms.core.ipc.sink.camel.server</artifactId>
<name>OpenNMS :: Core :: IPC :: Sink :: Camel :: Server</name>
<packaging>bundle</packaging>
<properties>
<skipITs>true</skipITs>
</properties>
<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.core.ipc.sink.camel</groupId>
<artifactId>org.opennms.core.ipc.sink.camel.common</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.core.ipc</groupId>
<artifactId>org.opennms.core.ipc.sink</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.core.ipc.sink</groupId>
<artifactId>org.opennms.core.ipc.sink.common</artifactId>
<name>OpenNMS :: Core :: IPC :: Sink :: Common</name>
<packaging>bundle</packaging>
<build>

<!-- Enable below extension and plugin to generate java source files from proto
-->

<extensions>
<!-- <extension>
<groupId>kr.motd.maven</groupId>
<artifactId>os-maven-plugin</artifactId>
<version>1.6.2</version>
</extension>-->
</extensions>
<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>
<Bundle-Activator>org.opennms.core.ipc.sink.offheap.Activator</Bundle-
Activator>
</instructions>
</configuration>
</plugin>
<!-- <plugin>
<groupId>org.xolstice.maven.plugins</groupId>
<artifactId>protobuf-maven-plugin</artifactId>
<version>0.6.1</version>
<configuration>
<protocArtifact>com.google.protobuf:protoc:3.6.1:exe:$
{os.detected.classifier}</protocArtifact>
<pluginId>grpc-java</pluginId>
<pluginArtifact>io.grpc:protoc-gen-grpc-java:1.24.0:exe:$
{os.detected.classifier}</pluginArtifact>
</configuration>
<executions>
<execution>
<goals>
<goal>compile</goal>
<goal>compile-custom</goal>
</goals>
</execution>
</executions>
</plugin>-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>test-jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.logging</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.sink</groupId>
<artifactId>org.opennms.core.ipc.sink.api</artifactId>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-util</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.sysprops</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.soa</artifactId>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.compendium</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId> com.google.protobuf</groupId>
<artifactId>protobuf-java</artifactId>
</dependency>
<dependency>
<groupId>com.swrve</groupId>
<artifactId>rate-limited-logger</artifactId>
</dependency>
<dependency>
<groupId>io.dropwizard.metrics</groupId>
<artifactId>metrics-core</artifactId>
<version>${dropwizardMetricsVersion}</version>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.lib</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-library</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.jayway.awaitility</groupId>
<artifactId>awaitility</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.sink</groupId>
<artifactId>org.opennms.core.ipc.sink.offheap</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.core.ipc.sink</groupId>
<artifactId>org.opennms.core.ipc.sink.kafka</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.core.ipc.sink.kafka</groupId>
<artifactId>org.opennms.core.ipc.sink.kafka.client</artifactId>
<name>OpenNMS :: Core :: IPC :: Sink :: Kafka :: Client</name>
<packaging>bundle</packaging>
<properties>
<skipITs>true</skipITs>
</properties>
<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>
<!--
org.opennms.core.ipc.sink.kafka.server is required by
KafkaLocalMessageDispatcherFactory but that is only
required when running in OpenNMS, thus never when running inside
karaf
-->
<Import-Package>
!org.opennms.core.ipc.sink.kafka.server,
*
</Import-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.common</groupId>
<artifactId>org.opennms.core.ipc.common.kafka</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.sink.kafka</groupId>
<artifactId>org.opennms.core.ipc.sink.kafka.server</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.core.ipc.sink</groupId>
<artifactId>org.opennms.core.ipc.sink.kafka</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.core.ipc.sink.kafka</groupId>
<artifactId>org.opennms.core.ipc.sink.kafka.itests</artifactId>
<name>OpenNMS :: Core :: IPC :: Sink :: Kafka :: Integration Tests</name>
<packaging>jar</packaging>
<properties>
<skipITs>true</skipITs>
</properties>
<dependencies>
<dependency>
<groupId>org.opennms.core.ipc.sink.kafka</groupId>
<artifactId>org.opennms.core.ipc.sink.kafka.client</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.sink.kafka</groupId>
<artifactId>org.opennms.core.ipc.sink.kafka.server</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>camel-dependencies</artifactId>
<type>pom</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.camel</groupId>
<artifactId>camel-spring</artifactId>
<version>${camelVersion}</version>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-beans</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-expression</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-jms</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-aop</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-tx</artifactId>
</exclusion>
<exclusion>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.daemon</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.activemq</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.snmp</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.services</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.camel</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.sink</groupId>
<artifactId>org.opennms.core.ipc.sink.xml</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-library</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.jayway.awaitility</groupId>
<artifactId>awaitility</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-mock</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-test-dependencies</artifactId>
<type>pom</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.sink</groupId>
<artifactId>org.opennms.core.ipc.sink.mock-impl</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.minion</groupId>
<artifactId>core-impl</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.tracing</groupId>
<artifactId>org.opennms.core.tracing.registry</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.distributed</groupId>
<artifactId>org.opennms.features.distributed.opennms-identity</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.sink</groupId>
<artifactId>org.opennms.core.ipc.sink.common</artifactId>
<version>${project.version}</version>
<type>test-jar</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.kafka</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.core.ipc</groupId>
<artifactId>org.opennms.core.ipc.sink</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.core.ipc.sink</groupId>
<artifactId>org.opennms.core.ipc.sink.kafka</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Core :: IPC :: Sink :: Kafka</name>
<modules>
<module>client</module>
<module>server</module>
<module>itests</module>
</modules>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.core.ipc.sink</groupId>
<artifactId>org.opennms.core.ipc.sink.kafka</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.core.ipc.sink.kafka</groupId>
<artifactId>org.opennms.core.ipc.sink.kafka.server</artifactId>
<name>OpenNMS :: Core :: IPC :: Sink :: Kafka :: Server</name>
<packaging>bundle</packaging>
<properties>
<skipITs>true</skipITs>
</properties>
<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>
<Import-Package>*</Import-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms.core.ipc.common</groupId>
<artifactId>org.opennms.core.ipc.common.kafka</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.sink</groupId>
<artifactId>org.opennms.core.ipc.sink.api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.sink</groupId>
<artifactId>org.opennms.core.ipc.sink.common</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.core.ipc</groupId>
<artifactId>org.opennms.core.ipc.sink</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.core.ipc.sink</groupId>
<artifactId>org.opennms.core.ipc.sink.mock-impl</artifactId>
<name>OpenNMS :: Core :: IPC :: Sink :: Mock Impl.</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.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.sink</groupId>
<artifactId>org.opennms.core.ipc.sink.common</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.lib</artifactId>
<scope>compile</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.core.ipc</groupId>
<artifactId>org.opennms.core.ipc.sink</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.core.ipc.sink</groupId>
<artifactId>org.opennms.core.ipc.sink.offheap</artifactId>
<name>OpenNMS :: Core :: IPC :: Sink :: OffHeap</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.core.ipc.sink</groupId>
<artifactId>org.opennms.core.ipc.sink.api</artifactId>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
<dependency>
<groupId>com.squareup.tape2</groupId>
<artifactId>tape</artifactId>
<version>${tape2Version}</version>
</dependency>
<dependency>
<groupId>io.dropwizard.metrics</groupId>
<artifactId>metrics-core</artifactId>
<version>${dropwizardMetricsVersion}</version>
</dependency>
<dependency>
<groupId>com.swrve</groupId>
<artifactId>rate-limited-logger</artifactId>
</dependency>

<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-library</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.jayway.awaitility</groupId>
<artifactId>awaitility</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.ipc</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.core.ipc</groupId>
<artifactId>org.opennms.core.ipc.sink</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Core :: IPC :: Sink</name>
<modules>
<module>api</module>
<module>common</module>
<module>camel</module>
<module>kafka</module>
<module>aws-sqs</module>
<module>mock-impl</module>
<module>xml</module>
<module>off-heap</module>
</modules>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.core.ipc</groupId>
<artifactId>org.opennms.core.ipc.sink</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.core.ipc.sink</groupId>
<artifactId>org.opennms.core.ipc.sink.xml</artifactId>
<name>OpenNMS :: Core :: IPC :: Sink :: XML</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.core.ipc.sink</groupId>
<artifactId>org.opennms.core.ipc.sink.api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.xml</artifactId>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.jmx</artifactId>
<version>27.0.5</version>
<relativePath>..</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.core.jmx</groupId>
<artifactId>org.opennms.core.jmx.api</artifactId>
<name>OpenNMS :: Core :: JMX :: API</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</groupId>
<artifactId>opennms-config-jaxb</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.xml</artifactId>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.jmx</artifactId>
<version>27.0.5</version>
<relativePath>..</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.core.jmx</groupId>
<artifactId>org.opennms.core.jmx.impl</artifactId>
<name>OpenNMS :: Core :: JMX :: Impl</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>
<Export-Package>org.opennms.netmgt.jmx.impl.*;version="$
{project.version}"</Export-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms.core.jmx</groupId>
<artifactId>org.opennms.core.jmx.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>${mockitoVersion}</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>org.opennms.core</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.jmx</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Core :: JMX</name>
<modules>
<module>api</module>
<module>impl</module>
</modules>
</project>
<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</groupId>
<artifactId>org.opennms.core</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.jstl-support</artifactId>
<name>JSTL Support</name>

<dependencies>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>apache-jsp</artifactId>
</dependency>
<dependency>
<groupId>javax.el</groupId>
<artifactId>javax.el-api</artifactId>
<version>3.0.0</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<resources>
<resource>
<directory>src/main/java</directory>
<includes>
<include>**/*.properties</include>
</includes>
</resource>
</resources>
</build>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>org.opennms.core</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.lib</artifactId>
<name>OpenNMS :: Core :: Library</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.core</groupId>
<artifactId>org.opennms.core.api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.sysprops</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>owasp-dependencies</artifactId>
<scope>compile</scope>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.jayway.awaitility</groupId>
<artifactId>awaitility</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?xml version="1.0"?>
<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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>org.opennms.core</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.logging</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Core :: Logging API</name>
<description>OpenNMS uses the SLF4J api for all logging. This api is intended to
abstract logging configuration, startup and shutdown.</description>
<dependencies>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
</dependencies>
<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>
<Export-Package>org.opennms.core.logging.*;version="$
{project.version}"</Export-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>opennms</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>org.opennms.core</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Core</name>
<build>
<plugins>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<descriptors>
<descriptor>src/assembly/bin.xml</descriptor>
</descriptors>
<overrideUid>0</overrideUid>
<overrideGid>0</overrideGid>
<tarLongFileMode>posix</tarLongFileMode>
</configuration>
</plugin>
</plugins>
</build>
<modules>
<module>api</module>
<module>build</module>
<module>cache</module>
<module>camel</module>
<module>cli</module>
<module>config</module>
<module>criteria</module>
<module>daemon</module>
<module>db</module>
<module>db-install</module>
<module>health</module>
<module>icmp-jna</module>
<module>ipc</module>
<module>jmx</module>
<module>jstl-support</module>
<module>lib</module>
<module>logging-api</module>
<module>profiler</module>
<module>runtime</module>
<module>schema</module>
<module>snmp</module>
<module>soa</module>
<module>spring</module>
<module>spring-web</module>
<module>sysprops</module>
<module>tasks</module>
<module>test-api</module>
<module>upgrade</module>
<module>web</module>
<module>web-assets</module>
<module>xml</module>
<module>tracing</module>
<module>grpc</module>
</modules>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>org.opennms.core</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.profiler</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Core :: Profiler</name>
<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>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>${guavaVersion}</version>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.logging</artifactId>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${slf4jVersion}</version>
<scope>provided</scope>
</dependency>
<!-- Spring AOP + AspectJ -->
<dependency>
<groupId>org.apache.servicemix.bundles</groupId>
<artifactId>org.apache.servicemix.bundles.spring-aop</artifactId>
<version>${springVersion}</version>
</dependency>
<dependency>
<groupId>org.apache.servicemix.bundles</groupId>
<artifactId>org.apache.servicemix.bundles.aspectj</artifactId>
<version>${aspectjVersion}_1</version>
</dependency>
<!-- Test dependencies -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>org.opennms.core</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.runtime</artifactId>
<name>OpenNMS :: Core :: Runtime</name>
<packaging>bundle</packaging>
<build>
<resources>
<resource>
<directory>src/main/resources</directory>
</resource>
<resource>
<filtering>true</filtering>
<directory>src/main/filtered</directory>
</resource>
</resources>
<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>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>buildnumber-maven-plugin</artifactId>
<inherited>false</inherited>
<executions>
<execution>
<phase>validate</phase>
<goals>
<goal>create</goal>
</goals>
</execution>
</executions>
<configuration>
<scmDirectory>../..</scmDirectory>
<doCheck>false</doCheck>
<doUpdate>false</doUpdate>
<revisionOnScmFailure>UNKNOWN</revisionOnScmFailure>
<!-- <useLastCommittedRevision>true</useLastCommittedRevision> -->
</configuration>
</plugin>
</plugins>
</build>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>org.opennms.core</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.schema</artifactId>
<name>OpenNMS :: Core :: Schema</name>
<packaging>bundle</packaging>
<build>
<testResources>
<testResource>
<directory>src/main/liquibase</directory>
</testResource>
<testResource>
<directory>src/test/resources</directory>
</testResource>
</testResources>
<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>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>test-jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<descriptors>
<descriptor>src/assembly/liquibase.xml</descriptor>
</descriptors>
<overrideUid>0</overrideUid>
<overrideGid>0</overrideGid>
<tarLongFileMode>posix</tarLongFileMode>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>liquibase-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-dependencies</artifactId>
<type>pom</type>
</dependency>
<!-- test dependencies -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
</dependency>
<dependency>
<groupId>org.liquibase</groupId>
<artifactId>liquibase-core</artifactId>
<version>${liquibaseVersion}</version>
<classifier>tests</classifier>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy-all</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.spockframework</groupId>
<artifactId>spock-core</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<repositories>
<repository>
<snapshots><enabled>false</enabled><updatePolicy>$
{updatePolicy}</updatePolicy></snapshots>
<releases><enabled>true</enabled><updatePolicy>$
{updatePolicy}</updatePolicy></releases>
<id>opennms-repo</id>
<name>OpenNMS Maven Repository</name>
<url>http://maven.opennms.org/content/groups/opennms.org-release/</url>
</repository>
</repositories>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.snmp</artifactId>
<version>27.0.5</version>
<relativePath>..</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.core.snmp</groupId>
<artifactId>org.opennms.core.snmp.api</artifactId>
<name>OpenNMS :: Core :: SNMP :: API</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>
<Export-Package>org.opennms.netmgt.snmp.*;version="$
{project.version}"</Export-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
</dependency>
<dependency>
<groupId>org.json</groupId>
<artifactId>json</artifactId>
<version>${jsonVersion}</version>
</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>com.google.guava</groupId>
<artifactId>guava</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/maven-v4_0_0.xsd">

<parent>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.snmp</artifactId>
<version>27.0.5</version>
</parent>

<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.core.snmp</groupId>
<artifactId>org.opennms.core.snmp.commands</artifactId>

<name>OpenNMS :: Core :: SNMP :: Shell Commands</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.core.snmp</groupId>
<artifactId>org.opennms.core.snmp.api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-config-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.karaf.shell</groupId>
<artifactId>org.apache.karaf.shell.core</artifactId>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.snmp</artifactId>
<version>27.0.5</version>
<relativePath>..</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.core.snmp</groupId>
<artifactId>org.opennms.core.snmp.implementations.joesnmp</artifactId>
<name>OpenNMS :: Core :: SNMP :: JoeSNMP Implementation</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>
<Export-Package>org.opennms.netmgt.snmp.joesnmp.*;version="$
{project.version}"</Export-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms.core.snmp</groupId>
<artifactId>org.opennms.core.snmp.api</artifactId>
<version>${project.version}</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.snmp</groupId>
<artifactId>org.opennms.core.snmp.joesnmp</artifactId>
<version>${project.version}</version>
<scope>compile</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.snmp</artifactId>
<version>27.0.5</version>
<relativePath>..</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.core.snmp</groupId>
<artifactId>org.opennms.core.snmp.implementations.mock</artifactId>
<name>OpenNMS :: Core :: SNMP :: Mock Implementation</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>
<Export-Package>org.opennms.netmgt.snmp.mock.*;version="$
{project.version}"</Export-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms.core.snmp</groupId>
<artifactId>org.opennms.core.snmp.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-util</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-dependencies</artifactId>
<type>pom</type>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.snmp</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.core.snmp</groupId>
<artifactId>org.opennms.core.snmp.implementations.snmp4j</artifactId>
<name>OpenNMS :: Core :: SNMP :: SNMP4J Implementation</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>
<Export-Package>
org.opennms.netmgt.snmp.snmp4j,
<!-- TODO: Remove this export after removing direct dependencies on
SNMP4J -->
org.snmp4j.*
</Export-Package>
<Import-Package>
org.apache.commons.lang;resolution:=optional,
org.apache.log4j;resolution:=optional,
*
</Import-Package>
<Embed-Dependency>snmp4j*</Embed-Dependency>
<Embed-Transitive>true</Embed-Transitive>
<Bundle-
Activator>org.opennms.netmgt.snmp.snmp4j.Snmp4JActivator</Bundle-Activator>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms.core.snmp</groupId>
<artifactId>org.opennms.core.snmp.api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.lib</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.sysprops</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.logging</artifactId>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>snmp4j-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>snmp4j-agent-dependencies</artifactId>
<scope>test</scope>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-dependencies</artifactId>
<scope>test</scope>
<type>pom</type>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.jayway.awaitility</groupId>
<artifactId>awaitility</artifactId>
<scope>test</scope>
</dependency>
</dependencies>

<repositories>
<repository>
<snapshots><enabled>false</enabled></snapshots>
<releases><enabled>true</enabled></releases>
<id>opennms-repo</id>
<name>OpenNMS Repository</name>
<url>http://maven.opennms.org/content/groups/opennms.org-release</url>
</repository>
</repositories>

</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.snmp</artifactId>
<version>27.0.5</version>
<relativePath>..</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.core.snmp</groupId>
<artifactId>org.opennms.core.snmp.integration-tests</artifactId>
<name>OpenNMS :: Core :: SNMP :: Integration Tests</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.core.snmp</groupId>
<artifactId>org.opennms.core.snmp.api</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.snmp</groupId>
<artifactId>org.opennms.core.snmp.implementations.snmp4j</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.snmp</groupId>
<artifactId>org.opennms.core.snmp.implementations.joesnmp</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.snmp</groupId>
<artifactId>org.opennms.core.snmp.implementations.mock</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.snmp</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.jayway.awaitility</groupId>
<artifactId>awaitility</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.xml</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-mock</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.snmp</artifactId>
<version>27.0.5</version>
<relativePath>..</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.core.snmp</groupId>
<artifactId>org.opennms.core.snmp.joesnmp</artifactId>
<name>OpenNMS :: Core :: SNMP :: JoeSNMP</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>
<Export-Package>
org.opennms.protocols.snmp.asn1.*;version="${project.version}",
org.opennms.protocols.snmp.*;version="${project.version}"
</Export-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>org.opennms.core</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.snmp</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Core :: SNMP</name>
<modules>
<module>joesnmp</module>
<module>api</module>
<module>impl-joesnmp</module>
<module>impl-snmp4j</module>
<module>impl-mock</module>
<module>integration-tests</module>
<module>commands</module>

<module>proxy-rpc-impl</module>
<module>proxy-rpc-tests</module>
<module>profile-mapper</module>
</modules>
</project>
<?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>
<artifactId>org.opennms.core.snmp</artifactId>
<groupId>org.opennms.core</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>

<groupId>org.opennms.core.snmp</groupId>
<artifactId>org.opennms.core.snmp.profile-mapper</artifactId>
<name>OpenNMS :: Core :: SNMP :: Profile Mapper</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.core.snmp</groupId>
<artifactId>org.opennms.core.snmp.api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-config-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-config</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.snmp</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.lib</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-mock</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-library</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.snmp</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.core.snmp</groupId>
<artifactId>org.opennms.core.snmp.proxy.rpc-impl</artifactId>
<name>OpenNMS :: Core :: SNMP :: Proxy :: RPC Impl.</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>
<!-- don't export anything this is implementation only -->
<Export-Package></Export-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms.core.ipc.rpc</groupId>
<artifactId>org.opennms.core.ipc.rpc.xml</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core.snmp</groupId>
<artifactId>org.opennms.core.snmp.api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.camel</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-model</artifactId>
<scope>compile</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.snmp</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.core.snmp</groupId>
<artifactId>org.opennms.core.snmp.proxy.rpc-tests</artifactId>
<name>OpenNMS :: Core :: SNMP :: Proxy :: RPC Tests</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.features.distributed</groupId>
<artifactId>core-api</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.snmp</groupId>
<artifactId>org.opennms.core.snmp.proxy.rpc-impl</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.rpc</groupId>
<artifactId>org.opennms.core.ipc.rpc.jms-impl</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-library</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.daemon</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.activemq</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.snmp</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.xml</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.services</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.camel</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.tracing</groupId>
<artifactId>org.opennms.core.tracing.registry</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-mock</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-provisiond</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?xml version="1.0"?>
<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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>org.opennms.core</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.soa</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Core :: Service Registry</name>
<dependencies>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.sysprops</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-dependencies</artifactId>
<scope>provided</scope>
<optional>true</optional>
<type>pom</type>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-test-dependencies</artifactId>
<type>pom</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-library</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>test-jar</goal>
</goals>
</execution>
</executions>
</plugin>
<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>
<!--
We need to use DynamicImport-Package because we will be exposing
service interfaces
that we have no compile-time knowledge of.

@see http://wiki.osgi.org/wiki/DynamicImport-Package
-->
<DynamicImport-Package>*</DynamicImport-Package>
<Export-Package>org.opennms.core.soa.*;version="$
{project.version}"</Export-Package>
<!-- Launch a BundleActivator that will synchronize services between
OSGi and the OnmSGi registry -->
<Bundle-
Activator>org.opennms.core.soa.support.OnmsOSGiBridgeActivator</Bundle-Activator>
</instructions>
</configuration>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<descriptors>
<descriptor>src/assembly/xsds.xml</descriptor>
</descriptors>
<overrideUid>0</overrideUid>
<overrideGid>0</overrideGid>
<tarLongFileMode>posix</tarLongFileMode>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>org.opennms.core</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.spring-web</artifactId>
<name>OpenNMS :: Core :: Spring Web Library</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>
<Export-Package>org.opennms.core.spring.web.*;version="$
{project.version}"</Export-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>servlet-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-web-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.soa</artifactId>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>org.opennms.core</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.spring</artifactId>
<name>OpenNMS :: Core :: Spring</name>
<packaging>bundle</packaging>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<!-- To load the jar file into jaspersoft studio it is required to be
Java 7 compatible -->
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<instructions>
<Bundle-RequiredExecutionEnvironment>JavaSE-1.7</Bundle-
RequiredExecutionEnvironment>
<Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
<Bundle-Version>${project.version}</Bundle-Version>
<Export-Package>org.opennms.core.spring.*;version="$
{project.version}"</Export-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
<dependency>
<groupId>javax.inject</groupId>
<artifactId>javax.inject</artifactId>
<version>1</version>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>org.opennms.core</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.sysprops</artifactId>
<name>OpenNMS :: Core :: Systemproperties</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.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?xml version="1.0"?>
<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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>org.opennms.core</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.tasks</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Core :: Tasks</name>
<dependencies>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-dependencies</artifactId>
<scope>provided</scope>
<optional>true</optional>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-util</artifactId>
<scope>provided</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-test-dependencies</artifactId>
<type>pom</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.lib</artifactId>
</dependency>
</dependencies>
<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>
<Export-Package>org.opennms.core.tasks.*;version="$
{project.version}"</Export-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.test-api</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.activemq</artifactId>
<name>OpenNMS :: Core :: Test API :: ActiveMQ</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>junit</groupId>
<artifactId>junit</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.apache.activemq</groupId>
<artifactId>activemq-camel</artifactId>
<version>${activemqVersion}</version>
<scope>compile</scope>
<exclusions>
<exclusion>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
</exclusion>
<exclusion>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
</exclusion>
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-beans</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-expression</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-jms</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-aop</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-tx</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.activemq</groupId>
<artifactId>activemq-kahadb-store</artifactId>
<version>${activemqVersion}</version>
<scope>runtime</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.test-api</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.alarm</artifactId>
<name>OpenNMS :: Core :: Test API :: Alarms</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>junit</groupId>
<artifactId>junit</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-library</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.db</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.services</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-test-dependencies</artifactId>
<type>pom</type>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-alarmd</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-mock</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrd-jrobin</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.persistence.rrd</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.jayway.awaitility</groupId>
<artifactId>awaitility</artifactId>
<scope>compile</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.test-api</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.camel</artifactId>
<name>OpenNMS :: Core :: Test API :: Camel</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>junit</groupId>
<artifactId>junit</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>camel-test-dependencies</artifactId>
<type>pom</type>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-icmp-api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.activemq</groupId>
<artifactId>org.opennms.features.activemq.component</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.test-api</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.collection</artifactId>
<name>OpenNMS Core Test API (Collection)</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>
<Export-Package>org.opennms.core.test.*;version="$
{project.version}"</Export-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.api</artifactId>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.lib</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-config</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-test-dependencies</artifactId>
<scope>compile</scope>
<type>pom</type>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.test-api</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.db</artifactId>
<name>OpenNMS :: Core :: Test API :: Database</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>
<Export-Package>
org.opennms.core.test.db.annotations.*;version="${project.version}",
org.opennms.core.test.db.*;version="${project.version}"
</Export-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.db</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.db.install</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.schema</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.lib</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.opennms.tests</groupId>
<artifactId>org.opennms.tests.mock-elements</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>atomikos-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-test-dependencies</artifactId>
<type>pom</type>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-bootstrap</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
</dependency>
<!--
<dependency>
<groupId>org.hsqldb</groupId>
<artifactId>hsqldb</artifactId>
<version>2.3.1</version>
</dependency>
-->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>compile</scope>
</dependency>
<!-- test dependencies -->
<dependency>
<groupId>org.liquibase</groupId>
<artifactId>liquibase-core</artifactId>
<version>${liquibaseVersion}</version>
<classifier>tests</classifier>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy-all</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.spockframework</groupId>
<artifactId>spock-core</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.schema</artifactId>
<version>${project.version}</version>
<classifier>tests</classifier>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api.schema</groupId>
<artifactId>org.opennms.core.test-api.schema.a</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api.schema</groupId>
<artifactId>org.opennms.core.test-api.schema.b</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
</dependency>
</dependencies>
<repositories>
<repository>
<snapshots><enabled>false</enabled><updatePolicy>$
{updatePolicy}</updatePolicy></snapshots>
<releases><enabled>true</enabled><updatePolicy>$
{updatePolicy}</updatePolicy></releases>
<id>opennms-repo</id>
<name>OpenNMS Maven Repository</name>
<url>http://maven.opennms.org/content/groups/opennms.org-release/</url>
</repository>
</repositories>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.test-api</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.dns</artifactId>
<name>OpenNMS :: Core :: Test API :: DNS</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>
<Export-Package>
org.opennms.core.test.dns.annotations.*;version="${project.version}",
org.opennms.core.test.dns.*;version="${project.version}"
</Export-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.lib</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>dnsjava-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-test-dependencies</artifactId>
<type>pom</type>
<scope>compile</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.test-api</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.elasticsearch</artifactId>
<name>OpenNMS :: Core :: Test API :: Elasticsearch</name>
<packaging>jar</packaging>

<properties>
<elasticsearchVersion>7.6.2</elasticsearchVersion>
</properties>

<dependencies>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
<dependency>
<groupId>org.elasticsearch</groupId>
<artifactId>elasticsearch</artifactId>
<version>${elasticsearchVersion}</version>
</dependency>
<dependency>
<groupId>org.elasticsearch.client</groupId>
<artifactId>transport</artifactId>
<version>${elasticsearchVersion}</version>
<exclusions>
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.elasticsearch.plugin</groupId>
<artifactId>transport-netty4-client</artifactId>
<version>${elasticsearchVersion}</version>
</dependency>
<dependency>
<groupId>org.codelibs.elasticsearch.module</groupId>
<artifactId>lang-painless</artifactId>
<version>${elasticsearchVersion}</version>
</dependency>
<dependency>
<groupId>org.elasticsearch.plugin</groupId>
<artifactId>aggs-matrix-stats-client</artifactId>
<version>${elasticsearchVersion}</version>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-all</artifactId>
<version>${elasticsearchNettyVersion}</version>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-codec</artifactId>
<version>${elasticsearchNettyVersion}</version>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-codec-http</artifactId>
<version>${elasticsearchNettyVersion}</version>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-transport</artifactId>
<version>${elasticsearchNettyVersion}</version>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-resolver</artifactId>
<version>${elasticsearchNettyVersion}</version>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-handler</artifactId>
<version>${elasticsearchNettyVersion}</version>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-buffer</artifactId>
<version>${elasticsearchNettyVersion}</version>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-common</artifactId>
<version>${elasticsearchNettyVersion}</version>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-api</artifactId>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-library</artifactId>
<scope>compile</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.test-api</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.http</artifactId>
<name>OpenNMS :: Core :: Test API :: HTTP</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>
<Export-Package>
org.opennms.core.test.http.annotations.*;version="$
{project.version}",
org.opennms.core.test.http.*;version="${project.version}"
</Export-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-test-dependencies</artifactId>
<type>pom</type>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.lib</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.web</artifactId>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-server</artifactId>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-webapp</artifactId>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.test-api</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.kafka</artifactId>
<name>OpenNMS :: Core :: Test API :: Kafka</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>junit</groupId>
<artifactId>junit</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-library</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.jayway.awaitility</groupId>
<artifactId>awaitility</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
</dependency>
<dependency>
<groupId>org.apache.servicemix.bundles</groupId>
<artifactId>org.apache.servicemix.bundles.kafka-clients</artifactId>
<version>${kafkaBundleVersion}</version>
<exclusions>
<exclusion>
<artifactId>log4j</artifactId>
<groupId>log4j</groupId>
</exclusion>
<exclusion>
<artifactId>slf4j-log4j12</artifactId>
<groupId>org.slf4j</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.servicemix.bundles</groupId>
<artifactId>org.apache.servicemix.bundles.kafka_${scalaVersion}</artifactId>
<version>${kafkaBundleVersion}</version>
<exclusions>
<exclusion>
<artifactId>log4j</artifactId>
<groupId>log4j</groupId>
</exclusion>
<exclusion>
<artifactId>slf4j-log4j12</artifactId>
<groupId>org.slf4j</groupId>
</exclusion>
<exclusion>
<artifactId>kafka-clients</artifactId>
<groupId>org.apache.kafka</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.zookeeper</groupId>
<artifactId>zookeeper</artifactId>
<version>${zookeeperVersion}</version>
<exclusions>
<exclusion>
<artifactId>log4j</artifactId>
<groupId>log4j</groupId>
</exclusion>
<exclusion>
<artifactId>slf4j-log4j12</artifactId>
<groupId>org.slf4j</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.scala-lang</groupId>
<artifactId>scala-library</artifactId>
<version>${scalaLibraryVersion}</version>
</dependency>
<dependency>
<groupId>com.yammer.metrics</groupId>
<artifactId>metrics-annotation</artifactId>
<version>2.2.0</version>
</dependency>
<dependency>
<groupId>com.yammer.metrics</groupId>
<artifactId>metrics-core</artifactId>
<version>2.2.0</version>
</dependency>
<dependency>
<groupId>org.apache.curator</groupId>
<artifactId>curator-test</artifactId>
<version>2.11.1</version>
<exclusions>
<exclusion>
<artifactId>log4j</artifactId>
<groupId>log4j</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.typesafe.scala-logging</groupId>
<artifactId>scala-logging_${scalaVersion}</artifactId>
<version>${scalaLoggingVersion}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>${jackson2Version}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-annotations</artifactId>
<version>${jackson2Version}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
<version>${jackson2Version}</version>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.test-api</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.karaf</artifactId>
<name>OpenNMS :: Core :: Test API :: Karaf</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>
<plugin>
<groupId>org.apache.servicemix.tooling</groupId>
<artifactId>depends-maven-plugin</artifactId>
<executions>
<execution>
<id>generate-depends-file</id>
<goals>
<goal>generate-depends-file</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<!-- Copy all Pax Exam artifacts into the Karaf repository -->
<execution>
<id>copy</id>
<phase>process-test-classes</phase>
<goals>
<goal>copy-dependencies</goal>
</goals>
<configuration>
<useRepositoryLayout>true</useRepositoryLayout>
<excludeTypes>tar.gz</excludeTypes>
<excludeGroupIds>org.opennms</excludeGroupIds>
<outputDirectory>${project.build.directory}/paxexam/test-
repo</outputDirectory>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.karaf.tooling</groupId>
<artifactId>karaf-maven-plugin</artifactId>
<version>${karafVersion}</version>
<executions>
<execution>
<id>features-add-to-repository</id>
<phase>generate-resources</phase>
<goals>
<goal>features-add-to-repository</goal>
</goals>
<configuration>
<karafVersion>${karafVersion}</karafVersion>
<descriptors>
<!-- Karaf framework features -->
<descriptor>mvn:org.apache.karaf.features/framework/$
{karafVersion}/xml/features</descriptor>
<!-- Karaf standard features -->
<descriptor>mvn:org.apache.karaf.features/standard/$
{karafVersion}/xml/features</descriptor>
<!-- Karaf Spring features -->
<descriptor>mvn:org.apache.karaf.features/spring/$
{karafVersion}/xml/features</descriptor>
<!-- Karaf Spring legacy features -->
<descriptor>mvn:org.apache.karaf.features/spring-legacy/$
{karafVersion}/xml/features</descriptor>
<!-- Pax Exam features -->
<descriptor>mvn:org.ops4j.pax.exam/pax-exam-features/$
{paxExamVersion}/xml</descriptor>
<!-- Pax Web features -->
<descriptor>mvn:org.ops4j.pax.web/pax-web-features/$
{paxWebVersion}/xml/features</descriptor>
</descriptors>
<features>
<!--
Make sure that all features that we try to install inside the
integration tests and
their dependencies are installed into the test-repo repository.
-->

<!-- Pax Exam feature that is necessary to run the tests -->
<feature>exam</feature>

<!-- Karaf framework features -->


<feature>framework</feature>

<!-- Karaf standard features -->


<feature>aries-blueprint</feature>
<feature>aries-proxy</feature>
<feature>blueprint-web</feature>
<feature>bundle</feature>
<feature>config</feature>
<feature>deployer</feature>
<feature>diagnostic</feature>
<feature>eventadmin</feature>
<feature>feature</feature>
<feature>framework-security</feature>
<feature>felix-httplite</feature>
<feature>http</feature>
<feature>http-whiteboard</feature>
<feature>instance</feature>
<feature>jaas-boot</feature>
<feature>jaas</feature>
<feature>jasypt-encryption</feature>
<!-- TODO: Should we import both versions of Jetty? -->
<feature>jetty/8.1.14.v20131031</feature>
<feature>jetty/9.3.9.v20160517</feature>
<feature>jolokia</feature>
<feature>kar</feature>
<feature>log</feature>
<feature>management</feature>
<feature>minimal</feature>
<feature>obr</feature>
<feature>package</feature>
<!-- Replaced by opennms-bridge-http-service -->
<!-- <feature>pax-http-service</feature> -->
<feature>profile</feature>
<feature>scheduler</feature>
<feature>scr</feature>
<feature>service</feature>
<feature>service-security</feature>
<feature>service-wrapper</feature>
<feature>shell-compat</feature>
<feature>shell</feature>
<feature>ssh</feature>
<feature>standard</feature>
<feature>system</feature>
<feature>war</feature>
<feature>webconsole</feature>
<feature>wrap</feature>
<feature>wrapper</feature>

<!-- Karaf Spring features -->


<feature>spring/${springVersion}</feature>
<feature>spring-aspects/${springVersion}</feature>
<feature>spring-instrument/${springVersion}</feature>
<feature>spring-jdbc/${springVersion}</feature>
<feature>spring-jms/${springVersion}</feature>
<feature>spring-orm/${springVersion}</feature>
<feature>spring-oxm/${springVersion}</feature>
<feature>spring-test/${springVersion}</feature>
<feature>spring-tx/${springVersion}</feature>
<feature>spring-web/${springVersion}</feature>
<feature>spring-web-portlet/${springVersion}</feature>
<feature>spring-websocket/${springVersion}</feature>

</features>
<repository>${project.build.directory}/paxexam/test-repo</repository>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-clean-plugin</artifactId>
<executions>
<execution>
<id>cleanup-after-integration-tests</id>
<phase>post-integration-test</phase>
<goals>
<goal>clean</goal>
</goals>
<configuration>
<excludeDefaultDirectories>true</excludeDefaultDirectories>
<filesets>
<fileset>
<directory>${project.build.directory}/paxexam/test-
repo</directory>
</fileset>
</filesets>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
<pluginManagement>
<plugins>
<!--This plugin's configuration is used to store Eclipse m2e settings only.
It has no influence on the Maven build itself.-->
<plugin>
<groupId>org.eclipse.m2e</groupId>
<artifactId>lifecycle-mapping</artifactId>
<version>1.0.0</version>
<configuration>
<lifecycleMappingMetadata>
<pluginExecutions>
<pluginExecution>
<pluginExecutionFilter>
<groupId>org.apache.karaf.tooling</groupId>
<artifactId>karaf-maven-plugin</artifactId>
<versionRange>[4.0.0,)</versionRange>
<goals>
<goal>features-add-to-repository</goal>
</goals>
</pluginExecutionFilter>
<action>
<execute></execute>
</action>
</pluginExecution>
</pluginExecutions>
</lifecycleMappingMetadata>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>pax-exam-dependencies</artifactId>
<type>pom</type>
<scope>compile</scope>
</dependency>

<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
<scope>provided</scope>
</dependency>

<!-- Apache Karaf container tar.gz -->


<dependency>
<groupId>org.apache.karaf</groupId>
<artifactId>apache-karaf</artifactId>
<version>${karafVersion}</version>
<type>tar.gz</type>
<exclusions>
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
<exclusion>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-aop</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-asm</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-beans</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-expression</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-dependencies</artifactId>
<type>pom</type>
</dependency>

<!-- Karaf framework features artifact -->


<dependency>
<groupId>org.apache.karaf.features</groupId>
<artifactId>framework</artifactId>
<version>${karafVersion}</version>
<classifier>features</classifier>
<type>xml</type>
<scope>compile</scope>
<exclusions>
<exclusion>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
</exclusion>
</exclusions>
</dependency>
<!-- Karaf standard features artifact -->
<dependency>
<groupId>org.apache.karaf.features</groupId>
<artifactId>standard</artifactId>
<version>${karafVersion}</version>
<classifier>features</classifier>
<type>xml</type>
<scope>compile</scope>
<exclusions>
<exclusion>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
</exclusion>
</exclusions>
</dependency>

<!-- Karaf Spring features artifact -->


<dependency>
<groupId>org.apache.karaf.features</groupId>
<artifactId>spring</artifactId>
<version>${karafVersion}</version>
<classifier>features</classifier>
<type>xml</type>
<scope>compile</scope>
<exclusions>
<exclusion>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
</exclusion>
</exclusions>
</dependency>

<!-- Karaf Spring legacy features artifact -->


<dependency>
<groupId>org.apache.karaf.features</groupId>
<artifactId>spring-legacy</artifactId>
<version>${karafVersion}</version>
<classifier>features</classifier>
<type>xml</type>
<scope>compile</scope>
<exclusions>
<exclusion>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
</exclusion>
</exclusions>
</dependency>

<!-- Pax Exam features artifact -->


<dependency>
<groupId>org.ops4j.pax.exam</groupId>
<artifactId>pax-exam-features</artifactId>
<version>${paxExamVersion}</version>
<type>xml</type>
<scope>compile</scope>
<exclusions>
<exclusion>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
</exclusion>
</exclusions>
</dependency>

<!-- Pax Web features artifact -->


<dependency>
<groupId>org.ops4j.pax.web</groupId>
<artifactId>pax-web-features</artifactId>
<version>${paxWebVersion}</version>
<classifier>features</classifier>
<type>xml</type>
<scope>compile</scope>
<exclusions>
<exclusion>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
</exclusion>
</exclusions>
</dependency>

<!-- OpenNMS container features artifact -->


<!--
<dependency>
<groupId>org.opennms.container</groupId>
<artifactId>karaf</artifactId>
<version>${project.version}</version>
<classifier>features</classifier>
<type>xml</type>
<scope>test</scope>
</dependency>
-->

<!-- OpenNMS product features artifact -->


<!--
<dependency>
<groupId>org.opennms.karaf</groupId>
<artifactId>opennms</artifactId>
<version>${project.version}</version>
<classifier>features</classifier>
<type>xml</type>
<scope>test</scope>
</dependency>
-->

<!-- OpenNMS Minion features artifact -->


<!--
<dependency>
<groupId>org.opennms.karaf</groupId>
<artifactId>opennms</artifactId>
<version>${project.version}</version>
<classifier>minion</classifier>
<type>xml</type>
<scope>test</scope>
</dependency>
-->

<!-- Other projects necessary to make the karaf-maven-plugin happy -->


<!--
<dependency>
<groupId>org.opennms.features.amqp</groupId>
<artifactId>org.opennms.features.amqp.event-forwarder</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.amqp</groupId>
<artifactId>org.opennms.features.amqp.event-receiver</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.activemq</groupId>
<artifactId>org.opennms.features.activemq.broker</artifactId>
<version>${project.version}</version>
<type>xml</type>
<classifier>activemq-receiver</classifier>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.vaadin-dashlets</groupId>
<artifactId>dashlet-alarms</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.vaadin-dashlets</groupId>
<artifactId>dashlet-bsm</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.vaadin-dashlets</groupId>
<artifactId>dashlet-charts</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.vaadin-dashlets</groupId>
<artifactId>dashlet-image</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.vaadin-dashlets</groupId>
<artifactId>dashlet-ksc</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.vaadin-dashlets</groupId>
<artifactId>dashlet-map</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.vaadin-dashlets</groupId>
<artifactId>dashlet-rrd</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.vaadin-dashlets</groupId>
<artifactId>dashlet-rtc</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.vaadin-dashlets</groupId>
<artifactId>dashlet-summary</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.vaadin-dashlets</groupId>
<artifactId>dashlet-surveillance</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.vaadin-dashlets</groupId>
<artifactId>dashlet-topology</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.vaadin-dashlets</groupId>
<artifactId>dashlet-url</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.discovery</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
-->
<dependency>
<groupId>net.java.dev.jna</groupId>
<artifactId>jna</artifactId>
<version>${jnaVersion}</version>
</dependency>
<dependency>
<groupId>net.java.dev.jna</groupId>
<artifactId>jna-platform</artifactId>
<version>${jnaVersion}</version>
</dependency>
<dependency>
<groupId>org.apache.karaf.shell</groupId>
<artifactId>org.apache.karaf.shell.core</artifactId>
<version>${karafVersion}</version>
<exclusions>
<exclusion>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
</exclusion>
</exclusions>
</dependency>

</dependencies>
<repositories>
<repository>
<snapshots><enabled>false</enabled></snapshots>
<releases><enabled>true</enabled></releases>
<id>opennms-repo</id>
<name>OpenNMS Repository</name>
<url>http://maven.opennms.org/content/groups/opennms.org-release/</url>
</repository>
<repository>
<snapshots><enabled>true</enabled></snapshots>
<releases><enabled>false</enabled></releases>
<id>opennms-snapshots</id>
<name>OpenNMS Snapshot Maven Repository</name>
<url>http://maven.opennms.org/content/groups/opennms.org-snapshot/</url>
</repository>
<repository>
<id>vaadin-addons</id>
<url>http://maven.opennms.org/content/repositories/vaadin-addons/</url>
</repository>
</repositories>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.test-api</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.lib</artifactId>
<name>OpenNMS :: Core :: Test API :: Library</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>
<Export-Package>org.opennms.core.test.*;version="$
{project.version}"</Export-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.lib</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.spring</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-test-dependencies</artifactId>
<scope>compile</scope>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.easymock</groupId>
<artifactId>easymock</artifactId>
<scope>compile</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>org.opennms.core</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.test-api</artifactId>
<name>OpenNMS :: Core :: Test APIs</name>
<packaging>pom</packaging>
<modules>
<module>activemq</module>
<module>alarms</module>
<module>camel</module>
<module>collection</module>
<module>db</module>
<module>dns</module>
<module>elasticsearch</module>
<module>http</module>
<module>kafka</module>
<module>karaf</module>
<module>lib</module>
<module>rest</module>
<module>services</module>
<module>schema</module>
<module>snmp</module>
<module>xml</module>
</modules>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.lib</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.test-api</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.rest</artifactId>
<name>OpenNMS :: Core :: Test API :: REST</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>
<Export-Package>
org.opennms.core.test.rest.*;version="${project.version}"
</Export-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-util</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.db</artifactId>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.lib</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.db</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>cxf-dependencies</artifactId>
<version>${project.version}</version>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>servlet-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-web-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-test-dependencies</artifactId>
<type>pom</type>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.json</groupId>
<artifactId>json</artifactId>
<version>${jsonVersion}</version>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.web-assets</artifactId>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.schema</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.core.test-api.schema</groupId>
<artifactId>org.opennms.core.test-api.schema.a</artifactId>
<name>OpenNMS :: Core :: Test API :: Test Schema A</name>
<packaging>jar</packaging>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.schema</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.core.test-api.schema</groupId>
<artifactId>org.opennms.core.test-api.schema.b</artifactId>
<name>OpenNMS :: Core :: Test API :: Test Schema B</name>
<packaging>jar</packaging>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.test-api</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.schema</artifactId>
<name>OpenNMS :: Core :: Test API :: Schema</name>
<packaging>pom</packaging>
<modules>
<module>a</module>
<module>b</module>
</modules>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.test-api</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.services</artifactId>
<name>OpenNMS :: Core :: Test API :: Services</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</groupId>
<artifactId>opennms-config</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.lib</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.daemon</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.opennms.tests</groupId>
<artifactId>org.opennms.tests.mock-elements</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.notifications</groupId>
<artifactId>org.opennms.features.notifications.api</artifactId>
<scope>compile</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.test-api</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.snmp</artifactId>
<name>OpenNMS :: Core :: Test API :: SNMP</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>
<Export-Package>
org.opennms.core.test.snmp.annotations.*;version="$
{project.version}",
org.opennms.core.test.snmp.*;version="${project.version}"
</Export-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-config</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.tests</groupId>
<artifactId>org.opennms.tests.mock-snmp-agent</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.soa</artifactId>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>snmp-dependencies</artifactId>
<scope>compile</scope>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>snmp-test-dependencies</artifactId>
<scope>compile</scope>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-test-dependencies</artifactId>
<type>pom</type>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.snmp</groupId>
<artifactId>org.opennms.core.snmp.proxy.rpc-impl</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.rpc</groupId>
<artifactId>org.opennms.core.ipc.rpc.mock-impl</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.test-api</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.xml</artifactId>
<name>OpenNMS :: Core :: Test API :: XML</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>
<Export-Package>org.opennms.core.test.xml.*;version="$
{project.version}"</Export-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.skyscreamer</groupId>
<artifactId>jsonassert</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.xml</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.lib</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jaxb-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>xmlunit</groupId>
<artifactId>xmlunit</artifactId>
<scope>compile</scope>
</dependency>
</dependencies>
</project>
<?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.core</groupId>
<artifactId>org.opennms.core.tracing</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.core.tracing</groupId>
<artifactId>org.opennms.core.tracing.api</artifactId>
<name>OpenNMS :: Core :: Tracing :: API </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>
<Import-Package>
org.eclipse.persistence.internal.jaxb;resolution:=optional,
org.eclipse.persistence.internal.jaxb.many;resolution:=optional,
*
</Import-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>io.opentracing</groupId>
<artifactId>opentracing-api</artifactId>
<version>${opentracingVersion}</version>
</dependency>
<dependency>
<groupId>io.opentracing</groupId>
<artifactId>opentracing-util</artifactId>
<version>${opentracingVersion}</version>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.xml</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>

</project>
<?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>
<artifactId>org.opennms.core.tracing</artifactId>
<groupId>org.opennms.core</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.core.tracing</groupId>
<artifactId>org.opennms.core.tracing.jaeger-osgi</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Core :: Tracing :: Jaeger :: OSGi wrapper</name>
<description>OSGi wrapper for Jaeger Tracer.</description>

<properties>
<apacheThriftVersion>0.12.0</apacheThriftVersion>
</properties>
<build>
<defaultGoal>install</defaultGoal>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>${maven.shade.plugin.version}</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<artifactSet>
<excludes>
<exclude>io.opentracing:opentracing-api</exclude>
<exclude>io.opentracing:opentracing-util</exclude>
<exclude>io.opentracing:opentracing-noop</exclude>
<exclude>io.opentracing.contrib:opentracing-
tracerresolver</exclude>
<exclude>io.jaegertracing:jaeger-tracerresolver</exclude>
<exclude>org.apache.httpcomponents:httpclient</exclude>
<exclude>org.apache.httpcomponents:httpcore</exclude>
<exclude>commons-codec:commons-codec</exclude>
<exclude>com.squareup.okhttp3:okhttp</exclude>
<exclude>com.squareup.okio:okio</exclude>
</excludes>
</artifactSet>
<filters>
<filter>
<artifact>*:*</artifact>
</filter>
</filters>
<createDependencyReducedPom>true</createDependencyReducedPom>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<instructions>
<Import-Package>
io.opentracing.util,
io.opentracing,
io.opentracing.propagation,
io.opentracing.tag
</Import-Package>
<Export-Package>
io.jaegertracing,
io.jaegertracing.internal,
io.jaegertracing.internal.reporters
</Export-Package>
</instructions>
<unpackBundle>true</unpackBundle>
</configuration>
</plugin>
</plugins>
</build>

<dependencies>
<dependency>
<groupId>io.jaegertracing</groupId>
<artifactId>jaeger-client</artifactId>
<version>${jeagertracingVersion}</version>
</dependency>
<dependency>
<groupId>org.apache.thrift</groupId>
<artifactId>libthrift</artifactId>
<version>${apacheThriftVersion}</version>
</dependency>
<dependency>
<groupId>io.jaegertracing</groupId>
<artifactId>jaeger-core</artifactId>
<version>${jeagertracingVersion}</version>
</dependency>
<dependency>
<groupId>io.jaegertracing</groupId>
<artifactId>jaeger-thrift</artifactId>
<version>${jeagertracingVersion}</version>
</dependency>
</dependencies>
</project>
<?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.core</groupId>
<artifactId>org.opennms.core.tracing</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.core.tracing</groupId>
<artifactId>org.opennms.core.tracing.jaeger-tracer</artifactId>
<name>OpenNMS :: Core :: Tracing :: Jaeger Tracer</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.core.tracing</groupId>
<artifactId>org.opennms.core.tracing.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core.tracing</groupId>
<artifactId>org.opennms.core.tracing.jaeger-osgi</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.sysprops</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>

</project>
<?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</groupId>
<artifactId>org.opennms.core</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.tracing</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Core :: Tracing</name>
<modules>
<module>api</module>
<module>registry</module>
<module>jaeger-tracer</module>
<module>jaeger-osgi</module>
</modules>
</project>
<?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.core</groupId>
<artifactId>org.opennms.core.tracing</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.core.tracing</groupId>
<artifactId>org.opennms.core.tracing.registry</artifactId>
<name>OpenNMS :: Core :: Tracing :: Registry </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.core.tracing</groupId>
<artifactId>org.opennms.core.tracing.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-dependencies</artifactId>
<type>pom</type>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>org.opennms.core</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.upgrade</artifactId>
<name>OpenNMS :: Core :: Upgrade</name>
<packaging>jar</packaging>
<dependencies>
<!-- Upgrade API Dependencies -->
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.daemon</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.db.install</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.db</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrd-model</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-web-api</artifactId>
</dependency>
<!-- Implementation Dependencies -->
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-config</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-provision-persistence</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jrobin-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrd-jrobin</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jrrd2-dependencies</artifactId>
<scope>test</scope>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrdtool-api</artifactId>
</dependency>
<!-- Test dependencies -->
<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.opennms</groupId>
<artifactId>opennms-dao-mock</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.services</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.persistence.rrd</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?xml version="1.0"?>
<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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>org.opennms.core</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.web-assets</artifactId>
<name>OpenNMS Web UI Assets (JavaScript &amp; CSS)</name>
<packaging>bundle</packaging>

<properties>
<skipNodeJSBuild>false</skipNodeJSBuild>
</properties>

<build>
<pluginManagement>
<plugins>
<plugin>
<!-- https://github.com/eirslett/frontend-maven-plugin -->
<groupId>com.github.eirslett</groupId>
<artifactId>frontend-maven-plugin</artifactId>
<version>${frontendPluginVersion}</version>
<configuration>
<installDirectory>target</installDirectory>
<srcdir>${basedir}/src/main/assets</srcdir>
<triggerfiles>
<triggerfile>package.json</triggerfile>
</triggerfiles>
</configuration>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<artifactId>maven-clean-plugin</artifactId>
<configuration>
<filesets>
<fileset>
<directory>${project.build.directory}</directory>
</fileset>
<fileset>
<directory>${project.basedir}/node_modules</directory>
</fileset>
</filesets>
</configuration>
</plugin>
<plugin>
<!-- https://github.com/eirslett/frontend-maven-plugin -->
<groupId>com.github.eirslett</groupId>
<artifactId>frontend-maven-plugin</artifactId>
<executions>
<execution>
<id>install node</id>
<goals>
<goal>install-node-and-npm</goal>
</goals>
<phase>generate-resources</phase>
<configuration>
<skip>${skipNodeJSBuild}</skip>
<nodeVersion>${nodeVersion}</nodeVersion>
</configuration>
</execution>
<execution>
<id>install dependencies</id>
<goals>
<goal>npm</goal>
</goals>
<phase>generate-resources</phase>
<configuration>
<skip>${skipNodeJSBuild}</skip>
<arguments>--prefer-offline --no-progress install</arguments>
</configuration>
</execution>
<execution>
<id>build release</id>
<goals>
<goal>npm</goal>
</goals>
<phase>compile</phase>
<configuration>
<skip>${skipNodeJSBuild}</skip>
<arguments>--prefer-offline --no-progress run release</arguments>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<descriptors>
<descriptor>src/assembly/dist.xml</descriptor>
</descriptors>
<overrideUid>0</overrideUid>
<overrideGid>0</overrideGid>
<tarLongFileMode>posix</tarLongFileMode>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
<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>
<Export-Package>org.opennms.web.assets.api.*</Export-Package>
<Include-Resource>
{maven-resources},
assets=target/dist/assets
</Include-Resource>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>runJSTests</id>
<activation>
<property>
<name>skipITs</name>
<value>false</value>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>com.github.eirslett</groupId>
<artifactId>frontend-maven-plugin</artifactId>
<executions>
<execution>
<id>run tests</id>
<goals>
<goal>npm</goal>
</goals>
<phase>test</phase>
<configuration>
<arguments>--prefer-offline --no-progress run maven-
test</arguments>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
<profile>
<!-- When building the packages in assemble only mode don't install or run
Node.js -->
<id>skipCompile</id>
<properties>
<skipNodeJSBuild>true</skipNodeJSBuild>
</properties>
</profile>
<profile>
<id>forceCompile</id>
<activation>
<file><missing>target/dist/assets/opennms.js</missing></file>
</activation>
<properties>
<skipNodeJSBuild>false</skipNodeJSBuild>
</properties>
</profile>
</profiles>
<dependencies>
<dependency>
<groupId>org.json</groupId>
<artifactId>json</artifactId>
<version>${jsonVersion}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.lib</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.sysprops</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.logging</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>servlet-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-web-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.lib</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>org.opennms.core</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.web</artifactId>
<name>OpenNMS :: Core :: Web</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>
<Export-Package>org.opennms.core.web.*;version="$
{project.version}"</Export-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpcore-osgi</artifactId>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient-osgi</artifactId>
<exclusions>
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.lib</artifactId>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>org.opennms.core</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.xml</artifactId>
<name>OpenNMS :: Core :: XML</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>
<Export-Package>org.opennms.core.xml.*;version="$
{project.version}"</Export-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.lib</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.spring</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jaxb-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
</dependency>
<!-- breaks generation :(
<dependency>
<groupId>org.wicketstuff</groupId>
<artifactId>jsr303</artifactId>
<version>1.4.9.2</version>
</dependency>
-->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?xml version="1.0"?>
<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/maven-v4_0_0.xsd">
<parent>
<artifactId>dependencies</artifactId>
<groupId>org.opennms</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.dependencies</groupId>
<artifactId>activemq-web-dependencies</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Dependencies :: ActiveMQ Web</name>
<dependencies>
<dependency>
<groupId>org.apache.activemq</groupId>
<artifactId>activemq-web</artifactId>
<version>${activemqVersion}</version>
<scope>compile</scope>
<exclusions>
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-aop</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-asm</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-beans</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-expression</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-tx</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-web</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
</exclusion>
<exclusion>
<groupId>jdom</groupId>
<artifactId>jdom</artifactId>
</exclusion>
<exclusion>
<groupId>org.mortbay.jetty</groupId>
<artifactId>jetty</artifactId>
</exclusion>
<exclusion>
<groupId>org.mortbay.jetty</groupId>
<artifactId>servlet-api</artifactId>
</exclusion>
<exclusion>
<groupId>org.mortbay.jetty</groupId>
<artifactId>jetty-util</artifactId>
</exclusion>
<exclusion>
<groupId>org.mortbay.jetty</groupId>
<artifactId>jsp-api-2.1</artifactId>
</exclusion>
<exclusion>
<groupId>org.mortbay.jetty</groupId>
<artifactId>servlet-api-2.5</artifactId>
</exclusion>
<exclusion>
<groupId>org.mortbay.jetty</groupId>
<artifactId>jsp-2.1</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>activemq-dependencies</artifactId>
<version>${project.version}</version>
<type>pom</type>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-web-dependencies</artifactId>
<type>pom</type>
<scope>compile</scope>
</dependency>
<!-- Use an OSGi-compatible jdom bundle -->
<dependency>
<groupId>org.apache.servicemix.bundles</groupId>
<artifactId>org.apache.servicemix.bundles.jdom</artifactId>
<version>1.1_4</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>jcl-over-slf4j</artifactId>
</dependency>
</dependencies>
</project>
<?xml version="1.0"?>
<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/maven-v4_0_0.xsd">
<parent>
<artifactId>dependencies</artifactId>
<groupId>org.opennms</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.dependencies</groupId>
<artifactId>activemq-dependencies</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Dependencies :: ActiveMQ</name>
<dependencies>
<dependency>
<groupId>org.apache.activemq</groupId>
<artifactId>activemq-karaf</artifactId>
<version>${activemqVersion}</version>
<scope>compile</scope>
<exclusions>
<!-- Exclude all Felix, Karaf, Jetty, and Pax dependencies since they are
part of the OSGi container -->
<exclusion>
<groupId>org.apache.aries.blueprint</groupId>
<artifactId>org.apache.aries.blueprint.core</artifactId>
</exclusion>
<exclusion>
<groupId>org.apache.felix</groupId>
<artifactId>org.apache.felix.framework</artifactId>
</exclusion>
<exclusion>
<groupId>org.apache.felix</groupId>
<artifactId>org.apache.felix.bundlerepository</artifactId>
</exclusion>
<exclusion>
<groupId>org.apache.karaf.shell</groupId>
<artifactId>org.apache.karaf.shell.console</artifactId>
</exclusion>
<exclusion>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-websocket</artifactId>
</exclusion>
<exclusion>
<groupId>org.eclipse.jetty.aggregate</groupId>
<artifactId>jetty-all</artifactId>
</exclusion>
<exclusion>
<groupId>org.eclipse.jetty.aggregate</groupId>
<artifactId>jetty-all-server</artifactId>
</exclusion>
<exclusion>
<groupId>org.ops4j.pax.logging</groupId>
<artifactId>pax-logging-api</artifactId>
</exclusion>
<exclusion>
<groupId>org.ops4j.pax.logging</groupId>
<artifactId>pax-logging-service</artifactId>
</exclusion>
<!-- Exclude all logging APIs since they are provided by the container -->
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
<exclusion>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
</exclusion>
<!-- Exclude legacy Spring artifacts -->
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-asm</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-beans</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-expression</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-jms</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>org.springframework.asm</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>org.springframework.context</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>org.springframework.expression</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>org.springframework.jms</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.activemq</groupId>
<artifactId>activemq-jaas</artifactId>
<version>${activemqVersion}</version>
<exclusions>
<!-- Exclude legacy Spring artifacts -->
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-asm</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-beans</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-expression</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>org.springframework.asm</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>org.springframework.context</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>org.springframework.expression</artifactId>
</exclusion>
</exclusions>
</dependency>
<!--
This is causing problems when building the Remote Poller JNLP since it is a
compile dependency on an XML artifact. Exclude it for now since we cannot
load ActiveMQ inside Karaf right now because of Spring version conflicts
anyway.

<dependency>
<groupId>org.apache.activemq</groupId>
<artifactId>activemq-karaf</artifactId>
<version>${activemqVersion}</version>
<type>xml</type>
<classifier>features</classifier>
<exclusions>
<!- - Exclude all Felix, Karaf, Jetty, and Pax dependencies since they are
part of the OSGi container - ->
<exclusion>
<groupId>org.apache.felix</groupId>
<artifactId>org.apache.felix.framework</artifactId>
</exclusion>
<exclusion>
<groupId>org.apache.felix</groupId>
<artifactId>org.apache.felix.bundlerepository</artifactId>
</exclusion>
<exclusion>
<groupId>org.apache.karaf.shell</groupId>
<artifactId>org.apache.karaf.shell.console</artifactId>
</exclusion>
<exclusion>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-websocket</artifactId>
</exclusion>
<exclusion>
<groupId>org.eclipse.jetty.aggregate</groupId>
<artifactId>jetty-all</artifactId>
</exclusion>
<exclusion>
<groupId>org.eclipse.jetty.aggregate</groupId>
<artifactId>jetty-all-server</artifactId>
</exclusion>
<exclusion>
<groupId>org.ops4j.pax.logging</groupId>
<artifactId>pax-logging-api</artifactId>
</exclusion>
<exclusion>
<groupId>org.ops4j.pax.logging</groupId>
<artifactId>pax-logging-service</artifactId>
</exclusion>
<!- - Exclude all logging APIs since they are provided by the container -
->
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
<exclusion>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
</exclusion>
<!- - Exclude legacy Spring artifacts - ->
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-asm</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-beans</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-expression</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>org.springframework.asm</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>org.springframework.context</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>org.springframework.expression</artifactId>
</exclusion>
</exclusions>
</dependency>
-->
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-dependencies</artifactId>
<type>pom</type>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>jcl-over-slf4j</artifactId>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>log4j-over-slf4j</artifactId>
</dependency>
</dependencies>
</project>
<?xml version="1.0"?>
<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/maven-v4_0_0.xsd">
<parent>
<artifactId>dependencies</artifactId>
<groupId>org.opennms</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.dependencies</groupId>
<artifactId>asterisk-dependencies</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Dependencies :: Asterisk</name>
<dependencies>
<dependency>
<groupId>org.asteriskjava</groupId>
<artifactId>asterisk-java</artifactId>
<version>1.0.0-final</version>
<scope>compile</scope>
<exclusions>
<exclusion>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>dependencies</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.dependencies</groupId>
<artifactId>atomikos-dependencies</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Dependencies :: Atomikos</name>
<description>
This module is used to provide a single artifact that the opennms project
can depend on to use Atomikos.
</description>
<dependencies>
<dependency>
<groupId>com.atomikos</groupId>
<artifactId>transactions-jta</artifactId>
<version>${atomikosVersion}</version>
</dependency>
<dependency>
<groupId>com.atomikos</groupId>
<artifactId>transactions-jdbc</artifactId>
<version>${atomikosVersion}</version>
</dependency>
<dependency>
<groupId>javax.transaction</groupId>
<artifactId>jta</artifactId>
<version>1.1</version>
</dependency>
<!--
<dependency>
<groupId>org.ow2.jotm</groupId>
<artifactId>jotm-core</artifactId>
<version>2.2.3</version>
<exclusions>
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
</exclusions>
</dependency>
<!- - Not sure if we need this - ->
<dependency>
<groupId>org.ow2.jotm</groupId>
<artifactId>jotm-datasource</artifactId>
<version>2.2.3</version>
<exclusions>
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
</exclusions>
</dependency>
<!- - This has some javax.* API that JOTM relies on - ->
<dependency>
<groupId>org.ow2.spec.ee</groupId>
<artifactId>ow2-connector-1.6-spec</artifactId>
<version>1.0.13</version>
<exclusions>
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
</exclusions>
</dependency>
-->
</dependencies>
</project>
<?xml version="1.0"?>
<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/maven-v4_0_0.xsd">
<parent>
<artifactId>dependencies</artifactId>
<groupId>org.opennms</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.dependencies</groupId>
<artifactId>aws-dependencies</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Dependencies :: AWS</name>
<dependencies>
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-core</artifactId>
<version>${awsSdkVersion}</version>
<exclusions>
<exclusion>
<artifactId>log4j</artifactId>
<groupId>log4j</groupId>
</exclusion>
<exclusion>
<artifactId>slf4j-log4j12</artifactId>
<groupId>org.slf4j</groupId>
</exclusion>
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-sqs</artifactId>
<version>${awsSdkVersion}</version>
<exclusions>
<exclusion>
<artifactId>log4j</artifactId>
<groupId>log4j</groupId>
</exclusion>
<exclusion>
<artifactId>slf4j-log4j12</artifactId>
<groupId>org.slf4j</groupId>
</exclusion>
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>amazon-sqs-java-messaging-lib</artifactId>
<version>${awsSqsMessagingVersion}</version>
<exclusions>
<exclusion>
<artifactId>log4j</artifactId>
<groupId>log4j</groupId>
</exclusion>
<exclusion>
<artifactId>slf4j-log4j12</artifactId>
<groupId>org.slf4j</groupId>
</exclusion>
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
</project>
<?xml version="1.0"?>
<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/maven-v4_0_0.xsd">
<parent>
<artifactId>dependencies</artifactId>
<groupId>org.opennms</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.dependencies</groupId>
<artifactId>camel-test-dependencies</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Dependencies :: Camel Test</name>
<dependencies>
<dependency>
<groupId>org.apache.camel</groupId>
<artifactId>camel-test</artifactId>
<version>${camelVersion}</version>
<exclusions>
<exclusion>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
</exclusion>
<exclusion>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
</exclusion>
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.camel</groupId>
<artifactId>camel-test-blueprint</artifactId>
<version>${camelVersion}</version>
<exclusions>
<exclusion>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
</exclusion>
<exclusion>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
</exclusion>
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
</exclusions>
</dependency>
<!-- Provide OpenNMS versions of the JAXB and commons-logging dependencies -->
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jaxb-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>jcl-over-slf4j</artifactId>
</dependency>
</dependencies>
</project>
<?xml version="1.0"?>
<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/maven-v4_0_0.xsd">
<parent>
<artifactId>dependencies</artifactId>
<groupId>org.opennms</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.dependencies</groupId>
<artifactId>camel-dependencies</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Dependencies :: Camel</name>
<dependencies>
<dependency>
<groupId>org.apache.camel</groupId>
<artifactId>camel-core</artifactId>
<version>${camelVersion}</version>
<exclusions>
<exclusion>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
</exclusion>
<exclusion>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.camel</groupId>
<artifactId>camel-http</artifactId>
<version>${camelVersion}</version>
<exclusions>
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
<exclusion>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
</exclusion>
<exclusion>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.camel</groupId>
<artifactId>camel-netty4</artifactId>
<version>${camelVersion}</version>
<exclusions>
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
<exclusion>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
</exclusion>
<exclusion>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.camel</groupId>
<artifactId>camel-blueprint</artifactId>
<version>${camelVersion}</version>
<exclusions>
<exclusion>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
</exclusion>
<exclusion>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>jcl-over-slf4j</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jaxb-dependencies</artifactId>
<type>pom</type>
</dependency>
</dependencies>
</project>
<?xml version="1.0"?>
<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/maven-v4_0_0.xsd">
<parent>
<artifactId>dependencies</artifactId>
<groupId>org.opennms</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.dependencies</groupId>
<artifactId>cxf-dependencies</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Dependencies :: CXF</name>
<dependencies>
<!-- JAX-RS front end -->
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxrs</artifactId>
<version>${cxfVersion}</version>
<exclusions>
<exclusion>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
</exclusion>
</exclusions>
</dependency>

<!-- Jettison JSON (unused) and Abdera Atom providers -->


<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-rs-extension-providers</artifactId>
<version>${cxfVersion}</version>
<exclusions>
<exclusion>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
</exclusion>
</exclusions>
</dependency>

<!-- FIQL search -->


<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-rs-extension-search</artifactId>
<version>${cxfVersion}</version>
</dependency>

<!-- Jackson JSON -->


<dependency>
<groupId>org.codehaus.jackson</groupId>
<artifactId>jackson-jaxrs</artifactId>
</dependency>
<dependency>
<groupId>org.codehaus.jackson</groupId>
<artifactId>jackson-mapper-asl</artifactId>
</dependency>

<!-- Abdera Atom -->


<dependency>
<groupId>org.apache.abdera</groupId>
<artifactId>abdera-core</artifactId>
<version>1.1.3</version>
<exclusions>
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.abdera</groupId>
<artifactId>abdera-parser</artifactId>
<version>1.1.3</version>
<exclusions>
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
</exclusions>
</dependency>

<!-- JAXB -->


<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jaxb-dependencies</artifactId>
<type>pom</type>
</dependency>

<!-- JAX-RS Client -->


<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-rs-client</artifactId>
<version>${cxfVersion}</version>
<exclusions>
<exclusion>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
</exclusion>
</exclusions>
</dependency>

<!-- Start of WS-Man related dependencies -->


<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
<version>${cxfVersion}</version>
<exclusions>
<exclusion>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-core</artifactId>
</exclusion>
<exclusion>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
</exclusion>
</exclusions>
</dependency>

<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
<version>${cxfVersion}</version>
<exclusions>
<exclusion>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
</exclusion>
</exclusions>
</dependency>

<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-ws-mex</artifactId>
<version>${cxfVersion}</version>
<exclusions>
<exclusion>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
</exclusion>
</exclusions>
</dependency>

<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-local</artifactId>
<version>${cxfVersion}</version>
<exclusions>
<exclusion>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
</exclusion>
</exclusions>
</dependency>

<!-- End of WS-Man related dependencies -->

<!-- NOT SURE IF WE NEED THIS STUFF -->

<!-- Servlet context initializer (not sure if we need this) -->


<!--
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-rs-http-sci</artifactId>
<version>${cxfVersion}</version>
</dependency>
-->

<!-- Not sure if we need this -->


<!--
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-bindings-xml</artifactId>
<version>${cxfVersion}</version>
<exclusions>
<exclusion>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
</exclusion>
</exclusions>
</dependency>
-->

<!-- Jettison JSON -->


<!--
<dependency>
<groupId>org.codehaus.jettison</groupId>
<artifactId>jettison</artifactId>
<version>1.3.7</version>
</dependency>
-->

<!-- Not sure if we need this -->


<!--
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-databinding-jaxb</artifactId>
<version>${cxfVersion}</version>
<exclusions>
<exclusion>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
</exclusion>
</exclusions>
</dependency>
-->

</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>dependencies</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.dependencies</groupId>
<artifactId>dnsjava-dependencies</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Dependencies :: DNS Java</name>
<description>
This module is used to provide a single artifact that the opennms project
can depend on to use the dnsjava library
</description>
<dependencies>
<dependency>
<groupId>org.apache.servicemix.bundles</groupId>
<artifactId>org.apache.servicemix.bundles.dnsjava</artifactId>
<version>${dnsjavaVersion}</version>
</dependency>
</dependencies>
<pluginRepositories>
<pluginRepository>
<id>central</id>
<name>Maven Central</name>
<url>https://repo1.maven.org/maven2/</url>
</pluginRepository>
</pluginRepositories>
<repositories>
<repository>
<snapshots><enabled>false</enabled></snapshots>
<releases><enabled>true</enabled></releases>
<id>sonatype-public-repo</id>
<name>Sonatype Public Maven Repository</name>
<url>http://maven.opennms.org/content/repositories/sonatype-public-
repo/</url>
</repository>
</repositories>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<artifactId>dependencies</artifactId>
<groupId>org.opennms</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.dependencies</groupId>
<artifactId>drools-dependencies</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Dependencies :: Drools</name>
<description>
This module is used to provide a single artifact that the opennms project
can depend on to use the drools library.
</description>
<properties>
<droolsVersion>7.31.0.Final</droolsVersion>
</properties>
<dependencies>
<dependency>
<groupId>org.drools</groupId>
<artifactId>drools-core</artifactId>
<version>${droolsVersion}</version>
</dependency>
<dependency>
<groupId>org.drools</groupId>
<artifactId>drools-compiler</artifactId>
<version>${droolsVersion}</version>
</dependency>
<dependency>
<groupId>org.kie</groupId>
<artifactId>kie-api</artifactId>
<version>${droolsVersion}</version>
</dependency>
<dependency>
<groupId>org.kie.soup</groupId>
<artifactId>kie-soup-commons</artifactId>
<version>${droolsVersion}</version>
</dependency>
<dependency>
<groupId>org.kie.soup</groupId>
<artifactId>kie-soup-maven-support</artifactId>
<version>${droolsVersion}</version>
</dependency>
<dependency>
<groupId>org.kie.soup</groupId>
<artifactId>kie-soup-project-datamodel-commons</artifactId>
<version>${droolsVersion}</version>
</dependency>
</dependencies>
</project>
<?xml version="1.0"?>
<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/maven-v4_0_0.xsd">
<parent>
<artifactId>dependencies</artifactId>
<groupId>org.opennms</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.dependencies</groupId>
<artifactId>felix-dependencies</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Dependencies :: Apache Felix</name>
<dependencies>
<dependency>
<groupId>org.apache.felix</groupId>
<artifactId>org.apache.felix.http.bridge</artifactId>
<version>${felixBridgeVersion}</version>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<artifactId>dependencies</artifactId>
<groupId>org.opennms</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.dependencies</groupId>
<artifactId>hibernate-dependencies</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Dependencies :: Hibernate</name>
<description>
This module is used to provide a single artifact that the opennms project
can depend on to use the hibernate library.
</description>
<properties>
<!-- <annotationsVersion>3.5.6-Final</annotationsVersion>
<commonsAnnotationsVersion>3.2.0.Final</commonsAnnotationsVersion> -->
<!-- <entityManagerVersion>3.6.10.Final</entityManagerVersion> -->
<!-- <ejbVersion>3.3.2.Beta1</ejbVersion> -->
<hibernateVersion>3.6.10.Final</hibernateVersion>
</properties>
<dependencies>
<!-- <dependency>
<groupId>org.hibernate</groupId>
<artifactId>ejb3-persistence</artifactId>
<version>${ejbVersion}</version>
</dependency>
-->
<!-- <dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-annotations</artifactId>
<version>${annotationsVersion}</version>
<exclusions>
<exclusion>
<groupId>org.hibernate</groupId>
<artifactId>ejb3-persistence</artifactId>
</exclusion>
<exclusion>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-commons-annotations</artifactId>
</exclusion>
<exclusion>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-core</artifactId>
</exclusion>
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</exclusion>
</exclusions>
</dependency>
-->
<!-- <dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-commons-annotations</artifactId>
<version>${commonsAnnotationsVersion}</version>
<exclusions>
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</exclusion>
</exclusions>
</dependency>
-->
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-core</artifactId>
<version>${hibernateVersion}</version>
<exclusions>
<exclusion>
<groupId>asm</groupId>
<artifactId>asm</artifactId>
</exclusion>
<exclusion>
<groupId>asm-attrs</groupId>
<artifactId>asm-attrs</artifactId>
</exclusion>
<exclusion>
<groupId>cglib</groupId>
<artifactId>cglib</artifactId>
</exclusion>
</exclusions>
</dependency>
<!--
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-entitymanager</artifactId>
<version>${entityManagerVersion}</version>
<exclusions>
<exclusion>
<groupId>org.hibernate</groupId>
<artifactId>ejb3-persistence</artifactId>
</exclusion>
<exclusion>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-commons-annotations</artifactId>
</exclusion>
<exclusion>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-annotations</artifactId>
</exclusion>
<exclusion>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-core</artifactId>
</exclusion>
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</exclusion>
</exclusions>
</dependency>
-->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
<dependency>
<groupId>xml-apis</groupId>
<artifactId>xml-apis</artifactId>
</dependency>
</dependencies>
</project>
<?xml version="1.0"?>
<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/maven-v4_0_0.xsd">
<parent>
<artifactId>dependencies</artifactId>
<groupId>org.opennms</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jasper-dependencies</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Dependencies :: Jasper Report</name>
<dependencies>
<dependency>
<groupId>net.sf.jasperreports</groupId>
<artifactId>jasperreports</artifactId>
<version>${jasperreportsVersion}</version>
<exclusions>
<exclusion>
<groupId>org.codehaus.castor</groupId>
<artifactId>castor-xml</artifactId>
</exclusion>
<exclusion>
<groupId>eclipse</groupId>
<artifactId>jdtcore</artifactId>
</exclusion>
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
<exclusion>
<groupId>com.lowagie</groupId>
<artifactId>itext</artifactId>
</exclusion>
</exclusions>
</dependency>
<!-- if we can't get rid of castor completely, at least we can update it to the
latest version -->
<dependency>
<groupId>org.codehaus.castor</groupId>
<artifactId>castor-xml</artifactId>
<version>1.4.1</version>
<exclusions>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-beans</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
</exclusion>
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.lowagie</groupId>
<artifactId>itext</artifactId>
<version>2.1.7.js4</version>
<exclusions>
<exclusion>
<groupId>eclipse</groupId>
<artifactId>jdtcore</artifactId>
</exclusion>
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
<exclusion>
<groupId>org.bouncycastle</groupId>
<artifactId>bctsp-jdk14</artifactId>
</exclusion>
<exclusion>
<groupId>bouncycastle</groupId>
<artifactId>bcmail-jdk14</artifactId>
</exclusion>
<exclusion>
<groupId>bouncycastle</groupId>
<artifactId>bcprov-jdk14</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>jcl-over-slf4j</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jfreechart-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>commons-digester</groupId>
<artifactId>commons-digester</artifactId>
</dependency>
<dependency>
<groupId>org.eclipse.jdt.core.compiler</groupId>
<artifactId>ecj</artifactId>
</dependency>
</dependencies>
<repositories>
<repository>
<snapshots><enabled>false</enabled></snapshots>
<releases><enabled>true</enabled></releases>
<id>jasperreports</id>
<name>Jasper Reports Maven Repository</name>
<url>http://maven.opennms.org/content/repositories/jasperreports</url>
</repository>
<repository>
<snapshots><enabled>false</enabled></snapshots>
<releases><enabled>true</enabled></releases>
<id>jaspersoft-third-party</id>
<name>JasperSoft Third Party Maven Repository</name>
<url>http://maven.opennms.org/content/repositories/jaspersoft-third-
party</url>
</repository>
<repository>
<snapshots><enabled>false</enabled></snapshots>
<releases><enabled>true</enabled></releases>
<id>opennms-repo</id>
<name>OpenNMS Maven Repository</name>
<url>http://maven.opennms.org/content/groups/opennms.org-release</url>
</repository>
</repositories>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>dependencies</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jasypt-dependencies</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Dependencies :: Jasypt</name>
<description>
This module is used to provide a single artifact that the opennms project
can depend on to use the Jasypt encryption library.
</description>
<dependencies>
<dependency>
<groupId>org.jasypt</groupId>
<artifactId>jasypt</artifactId>
<version>1.9.0</version>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>dependencies</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.dependencies</groupId>
<artifactId>javamail-dependencies</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Dependencies :: JavaMail</name>
<description>
This module is used to provide a single artifact that the opennms project
can depend on to use JavaMail.
</description>
<dependencies>
<dependency>
<groupId>alt.dev.jmta</groupId>
<artifactId>jmta</artifactId>
<version>1.0</version>
</dependency>
</dependencies>
<repositories>
<repository>
<snapshots><enabled>false</enabled></snapshots>
<releases><enabled>true</enabled></releases>
<id>opennms-repo</id>
<name>OpenNMS Maven Repository</name>
<url>http://maven.opennms.org/content/groups/opennms.org-release</url>
</repository>
</repositories>
</project>
<?xml version="1.0"?>
<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/maven-v4_0_0.xsd">
<parent>
<artifactId>dependencies</artifactId>
<groupId>org.opennms</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jaxb-dependencies</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Dependencies :: JAXB</name>
<dependencies>
<dependency>
<groupId>org.eclipse.persistence</groupId>
<artifactId>org.eclipse.persistence.moxy</artifactId>
<version>${eclipselinkVersion}</version>
</dependency>
<!-- MOXy relies on javax.mail classes for Base64 decoding -->
<dependency>
<groupId>javax.mail</groupId>
<artifactId>mail</artifactId>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>dependencies</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jcifs-dependencies</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Dependencies :: JCIFS</name>
<description>
This module is used to provide a single artifact that the opennms project
can depend on to use JCIFS.
</description>
<dependencies>
<dependency>
<groupId>eu.agno3.jcifs</groupId>
<artifactId>jcifs-ng</artifactId>
<version>${jcifsVersion}</version>
</dependency>
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcprov-jdk15on</artifactId>
<version>${bouncyCastleVersion}</version>
</dependency>
</dependencies>
<repositories>
<repository>
<snapshots><enabled>false</enabled></snapshots>
<releases><enabled>true</enabled></releases>
<id>opennms-repo</id>
<name>OpenNMS Maven Repository</name>
<url>http://maven.opennms.org/content/groups/opennms.org-release</url>
</repository>
</repositories>
</project>
<?xml version="1.0"?>
<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/maven-v4_0_0.xsd">
<parent>
<artifactId>dependencies</artifactId>
<groupId>org.opennms</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jfreechart-dependencies</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Dependencies :: JFreeChart</name>
<dependencies>
<dependency>
<groupId>org.jfree</groupId>
<artifactId>jfreechart</artifactId>
<version>${jfreechartVersion}</version>
</dependency>
<dependency>
<groupId>org.jfree</groupId>
<artifactId>jcommon</artifactId>
<version>${jcommonVersion}</version>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>dependencies</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jinterop-dependencies</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Dependencies :: J-Interop</name>
<description>
This module is used to provide a single artifact that the opennms project
can depend on to use J-Interop
</description>
<dependencies>
<dependency>
<groupId>com.github.skyghis</groupId>
<artifactId>j-interop-ng</artifactId>
<version>${jinteropVersion}</version>
</dependency>
<dependency>
<groupId>com.github.skyghis</groupId>
<artifactId>j-interop-ng-deps</artifactId>
<version>${jinteropVersion}</version>
</dependency>
</dependencies>
<repositories>
<repository>
<snapshots><enabled>false</enabled></snapshots>
<releases><enabled>true</enabled></releases>
<id>opennms-repo</id>
<name>OpenNMS Maven Repository</name>
<url>http://maven.opennms.org/content/groups/opennms.org-release</url>
</repository>
</repositories>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>dependencies</artifactId>
<version>27.0.5</version>
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jmx-dependencies</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Dependencies :: JMX</name>
<description>
This module is used to provide a single artifact that the OpenNMS project
can depend on to use JMX.
</description>
<dependencies>
<dependency>
<groupId>org.opennms.core.jmx</groupId>
<artifactId>org.opennms.core.jmx.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core.jmx</groupId>
<artifactId>org.opennms.core.jmx.impl</artifactId>
<version>${project.version}</version>
</dependency>
<!-- Allow jmxmp jmx protocols -->
<dependency>
<groupId>org.jvnet.opendmk</groupId>
<artifactId>jmxremote_optional</artifactId>
<version>${jmxremote.optional.version}</version>
</dependency>
</dependencies>
<repositories>
<repository>
<snapshots><enabled>false</enabled><updatePolicy>$
{updatePolicy}</updatePolicy></snapshots>
<releases><enabled>true</enabled><updatePolicy>$
{updatePolicy}</updatePolicy></releases>
<id>opennms-repo</id>
<name>OpenNMS Maven Repository</name>
<url>http://maven.opennms.org/content/groups/opennms.org-release</url>
</repository>
</repositories>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>dependencies</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jna-dependencies</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Dependencies :: JNA</name>
<description>
This module is used to provide a single artifact that the opennms project
can depend on to use JNA
</description>
<dependencies>
<dependency>
<groupId>net.java.dev.jna</groupId>
<artifactId>jna</artifactId>
<version>${jnaVersion}</version>
</dependency>
<dependency>
<groupId>net.java.dev.jna</groupId>
<artifactId>jna-platform</artifactId>
<version>${jnaVersion}</version>
</dependency>
</dependencies>
<repositories>
<repository>
<snapshots><enabled>false</enabled></snapshots>
<releases><enabled>true</enabled></releases>
<id>opennms-repo</id>
<name>OpenNMS Maven Repository</name>
<url>http://maven.opennms.org/content/groups/opennms.org-release</url>
</repository>
</repositories>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>dependencies</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jnlp-dependencies</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Dependencies :: JNLP</name>
<description>
This module is used to provide a single artifact that the opennms project
can depend on to use JNLP.
</description>
<dependencies>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
</dependency>
<dependency>
<groupId>javax.samples.jnlp</groupId>
<artifactId>jnlp-servlet</artifactId>
<scope>runtime</scope>
<exclusions>
<exclusion>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
<repositories>
<repository>
<snapshots><enabled>false</enabled></snapshots>
<releases><enabled>true</enabled></releases>
<id>opennms-repo</id>
<name>OpenNMS Maven Repository</name>
<url>http://maven.opennms.org/content/groups/opennms.org-release</url>
</repository>
</repositories>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>dependencies</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.dependencies</groupId>
<artifactId>org.opennms.dependencies.jradius-extended</artifactId>
<name>OpenNMS :: Dependencies :: JRadius :: Extended</name>
<description>
This module is used to provide a single artifact that the OpenNMS project
can depend on to use the jradius-extended library.
</description>
<licenses>
<license>
<name>GNU Lesser/Library Public License, Version 3.0</name>
<url>http://www.gnu.org/licenses/lgpl-3.0.txt</url>
</license>
<license>
<name>GNU Public License, Version 3.0</name>
<url>http://www.gnu.org/licenses/gpl-3.0.txt</url>
</license>
</licenses>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>${maven.shade.plugin.version}</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<!--
Shade and relocate the bouncycastle classes so that we don't run into
problems like:

https://issues.opennms.org/browse/NMS-7959
-->
<configuration>
<artifactSet>
<includes>
<include>net.jradius:jradius-extended</include>
<include>org.bouncycastle:*</include>
</includes>
</artifactSet>
<!-- Unsign the content -->
<filters>
<filter>
<artifact>*:*</artifact>
<excludes>
<exclude>META-INF/BCKEY.DSA</exclude>
<exclude>META-INF/BCKEY.SF</exclude>
</excludes>
</filter>
</filters>
<relocations>
<relocation>
<pattern>org.bouncycastle</pattern>

<shadedPattern>org.opennms.shaded.org.bouncycastle</shadedPattern>
</relocation>
</relocations>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>commons-beanutils</groupId>
<artifactId>commons-beanutils</artifactId>
</dependency>
<dependency>
<groupId>net.jradius</groupId>
<artifactId>jradius-extended</artifactId>
<version>1.1.5</version>
<exclusions>
<exclusion>
<groupId>commons-beanutils</groupId>
<artifactId>commons-beanutils-core</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
</exclusion>
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
</exclusion>
<exclusion>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
<repositories>
<repository>
<snapshots><enabled>false</enabled></snapshots>
<releases><enabled>true</enabled></releases>
<id>coova</id>
<name>Coova Repository</name>
<url>http://maven.opennms.org/content/repositories/coova/</url>
</repository>
</repositories>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>dependencies</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jradius-dependencies</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Dependencies :: JRadius</name>
<description>
This module is used to provide a single artifact that the OpenNMS project
can depend on to use the JRadius library.
</description>
<dependencies>
<!-- add this commons stuff to keep JNLP app from getting confused by versions
-->
<dependency>
<groupId>commons-collections</groupId>
<artifactId>commons-collections</artifactId>
</dependency>
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
</dependency>
<dependency>
<groupId>commons-digester</groupId>
<artifactId>commons-digester</artifactId>
<exclusions>
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>commons-beanutils</groupId>
<artifactId>commons-beanutils</artifactId>
</dependency>
<dependency>
<groupId>commons-chain</groupId>
<artifactId>commons-chain</artifactId>
</dependency>
<dependency>
<groupId>commons-pool</groupId>
<artifactId>commons-pool</artifactId>
</dependency>
<dependency>
<groupId>net.jradius</groupId>
<artifactId>jradius-core</artifactId>
<version>1.1.5</version>
<exclusions>
<exclusion>
<groupId>commons-beanutils</groupId>
<artifactId>commons-beanutils-core</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
</exclusion>
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
</exclusion>
<exclusion>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>net.jradius</groupId>
<artifactId>jradius-dictionary</artifactId>
<version>1.1.5</version>
<exclusions>
<exclusion>
<groupId>commons-beanutils</groupId>
<artifactId>commons-beanutils-core</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
</exclusion>
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
</exclusion>
<exclusion>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
</exclusion>
</exclusions>
</dependency>
<!-- Use our shaded package for jradius-extended instead of the original
artifact-->
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>org.opennms.dependencies.jradius-extended</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>jcl-over-slf4j</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-dependencies</artifactId>
<type>pom</type>
</dependency>
</dependencies>
<repositories>
<repository>
<snapshots><enabled>false</enabled></snapshots>
<releases><enabled>true</enabled></releases>
<id>coova</id>
<name>Coova Repository</name>
<url>http://maven.opennms.org/content/repositories/coova/</url>
</repository>
</repositories>
</project>
<?xml version="1.0"?>
<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/maven-v4_0_0.xsd">
<parent>
<artifactId>dependencies</artifactId>
<groupId>org.opennms</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jrobin-dependencies</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Dependencies :: JRobin</name>
<dependencies>
<dependency>
<groupId>org.jrobin</groupId>
<artifactId>jrobin</artifactId>
<version>1.6.0</version>
</dependency>
</dependencies>
<repositories>
<repository>
<snapshots><enabled>true</enabled><updatePolicy>$
{updatePolicy}</updatePolicy></snapshots>
<releases><enabled>false</enabled><updatePolicy>$
{updatePolicy}</updatePolicy></releases>
<id>opennms-snapshots</id>
<name>OpenNMS Maven Snapshot Repository</name>
<url>http://maven.opennms.org/content/groups/opennms.org-snapshot</url>
</repository>
<repository>
<snapshots><enabled>false</enabled><updatePolicy>$
{updatePolicy}</updatePolicy></snapshots>
<releases><enabled>true</enabled><updatePolicy>$
{updatePolicy}</updatePolicy></releases>
<id>opennms-repo</id>
<name>OpenNMS Maven Repository</name>
<url>http://maven.opennms.org/content/groups/opennms.org-release</url>
</repository>
</repositories>
</project>
<?xml version="1.0"?>
<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/maven-v4_0_0.xsd">
<parent>
<artifactId>dependencies</artifactId>
<groupId>org.opennms</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jrrd-dependencies</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Dependencies :: JRRD</name>
<dependencies>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>jrrd-api</artifactId>
<version>1.1.0</version>
</dependency>
</dependencies>
<repositories>
<repository>
<snapshots><enabled>false</enabled></snapshots>
<releases><enabled>true</enabled></releases>
<id>opennms-repo</id>
<name>OpenNMS Maven Repository</name>
<url>http://maven.opennms.org/content/groups/opennms.org-release</url>
</repository>
</repositories>
</project>
<?xml version="1.0"?>
<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/maven-v4_0_0.xsd">
<parent>
<artifactId>dependencies</artifactId>
<groupId>org.opennms</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jrrd2-dependencies</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Dependencies :: JRrd2</name>
<dependencies>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>jrrd2-api</artifactId>
<version>2.0.3</version>
</dependency>
</dependencies>
<repositories>
<repository>
<snapshots><enabled>false</enabled></snapshots>
<releases><enabled>true</enabled></releases>
<id>opennms-repo</id>
<name>OpenNMS Maven Repository</name>
<url>http://maven.opennms.org/content/groups/opennms.org-release</url>
</repository>
</repositories>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>dependencies</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jstl-dependencies</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Dependencies :: JNA</name>
<description>
This module is used to provide a single artifact that the opennms project
can depend on to use JSTL servlet templates.
</description>
<dependencies>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>apache-jstl</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.jstl-support</artifactId>
</dependency>
</dependencies>
</project>
<?xml version="1.0"?>
<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/maven-v4_0_0.xsd">
<parent>
<artifactId>dependencies</artifactId>
<groupId>org.opennms</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.dependencies</groupId>
<artifactId>liquibase-dependencies</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Dependencies :: LiquiBase</name>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.liquibase</groupId>
<artifactId>liquibase-core</artifactId>
<version>${liquibaseVersion}</version>
<classifier>tests</classifier>
<scope>test</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>org.liquibase</groupId>
<artifactId>liquibase-core</artifactId>
<version>${liquibaseVersion}</version>
<exclusions>
<exclusion>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
<repositories>
<repository>
<snapshots><enabled>false</enabled></snapshots>
<releases><enabled>true</enabled></releases>
<id>opennms-repo</id>
<name>OpenNMS Maven Repository</name>
<url>http://maven.opennms.org/content/groups/opennms.org-release</url>
</repository>
</repositories>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>dependencies</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.dependencies</groupId>
<artifactId>mina-dependencies</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Dependencies :: Mina</name>
<description>
This module is used to provide a single artifact that the opennms project
can depend on to use the apache mina library
</description>
<dependencies>
<!-- Mina -->
<dependency>
<groupId>org.apache.mina</groupId>
<artifactId>mina-core</artifactId>
</dependency>
<!-- Mina Dependencies -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>dependencies</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.dependencies</groupId>
<artifactId>netty-dependencies</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Dependencies :: Netty</name>
<description>
This module is used to provide a single artifact that the opennms project
can depend on to use the Netty library.
</description>
<dependencies>
<!-- Netty -->
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty</artifactId>
<version>3.9.4.Final</version>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>dependencies</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.dependencies</groupId>
<artifactId>newts-dependencies</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Dependencies :: Newts</name>
<description>
This module is used to provide a single artifact that the opennms project
can depend on to use Newts
</description>
<dependencies>
<dependency>
<groupId>org.opennms.newts</groupId>
<artifactId>newts-cassandra</artifactId>
<version>${newtsVersion}</version>
<exclusions>
<exclusion>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.opennms.newts</groupId>
<artifactId>newts-cassandra-search</artifactId>
<version>${newtsVersion}</version>
<exclusions>
<exclusion>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>dependencies</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.dependencies</groupId>
<artifactId>owasp-dependencies</artifactId>
<packaging>pom</packaging>
<name>OpenNMS Dependencies OWASP</name>
<description>
This module is used to provide a single artifact that the opennms project
can depend on to use the OWASP Java Encoder and the OWASP HTML Sanitizer
</description>
<dependencies>
<dependency>
<groupId>org.owasp.encoder</groupId>
<artifactId>encoder</artifactId>
<version>${owaspEncoderVersion}</version>
<exclusions>
<exclusion>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.googlecode.owasp-java-html-sanitizer</groupId>
<artifactId>owasp-java-html-sanitizer</artifactId>
<version>${owaspHtmlSanitizerVersion}</version>
</dependency>
</dependencies>
</project>
<?xml version="1.0"?>
<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/maven-v4_0_0.xsd">
<parent>
<artifactId>dependencies</artifactId>
<groupId>org.opennms</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.dependencies</groupId>
<artifactId>pax-exam-dependencies</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Dependencies :: Apache Pax Exam</name>

<properties>
<org.ops4j.base.version>1.5.0</org.ops4j.base.version>
</properties>

<dependencies>

<!-- OSGi API -->


<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
<scope>provided</scope>
</dependency>

<!--
Basic PAX Exam Karaf Container dependencies
@see https://ops4j1.jira.com/wiki/display/PAXEXAM4/Karaf+Container
-->
<dependency>
<groupId>org.ops4j.pax.exam</groupId>
<artifactId>pax-exam-container-karaf</artifactId>
<version>${paxExamVersion}</version>
</dependency>
<dependency>
<groupId>org.ops4j.pax.exam</groupId>
<artifactId>pax-exam-junit4</artifactId>
<version>${paxExamVersion}</version>
</dependency>
<dependency>
<groupId>org.ops4j.pax.exam</groupId>
<artifactId>pax-exam</artifactId>
<version>${paxExamVersion}</version>
</dependency>
<dependency>
<groupId>org.ops4j.pax.url</groupId>
<artifactId>pax-url-aether</artifactId>
<!-- Make sure this matches the version in Karaf -->
<version>2.6.1</version>
<exclusions>
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>javax.inject</groupId>
<artifactId>javax.inject</artifactId>
<version>1</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
</dependency>

<!-- Pax Exam features.xml -->


<dependency>
<groupId>org.ops4j.pax.exam</groupId>
<artifactId>pax-exam-features</artifactId>
<version>${paxExamVersion}</version>
<type>xml</type>
</dependency>

<!--
These dependencies are required to populate the test-repo
with all of the bundles from the Pax Exam features.xml
to get Pax Exam stuff working inside the Karaf container.
-->
<dependency>
<groupId>org.ops4j.base</groupId>
<artifactId>ops4j-base-monitors</artifactId>
<version>${org.ops4j.base.version}</version>
</dependency>
<dependency>
<groupId>org.ops4j.base</groupId>
<artifactId>ops4j-base-io</artifactId>
<version>${org.ops4j.base.version}</version>
</dependency>
<dependency>
<groupId>org.ops4j.base</groupId>
<artifactId>ops4j-base-net</artifactId>
<version>${org.ops4j.base.version}</version>
</dependency>
<dependency>
<groupId>org.ops4j.pax.swissbox</groupId>
<artifactId>pax-swissbox-core</artifactId>
<version>${paxSwissboxVersion}</version>
</dependency>
<dependency>
<groupId>org.ops4j.pax.swissbox</groupId>
<artifactId>pax-swissbox-framework</artifactId>
<version>${paxSwissboxVersion}</version>
</dependency>
<dependency>
<groupId>org.ops4j.pax.swissbox</groupId>
<artifactId>pax-swissbox-extender</artifactId>
<version>${paxSwissboxVersion}</version>
</dependency>
<dependency>
<groupId>org.ops4j.pax.tipi</groupId>
<artifactId>org.ops4j.pax.tipi.hamcrest.core</artifactId>
<version>1.3.0.1</version>
</dependency>
<dependency>
<groupId>org.ops4j.pax.tipi</groupId>
<artifactId>org.ops4j.pax.tipi.junit</artifactId>
<version>4.12.0.1</version>
</dependency>
<dependency>
<groupId>org.ops4j.pax.exam</groupId>
<artifactId>pax-exam-extender-service</artifactId>
<version>${paxExamVersion}</version>
</dependency>
<dependency>
<groupId>org.ops4j.pax.exam</groupId>
<artifactId>pax-exam-invoker-junit</artifactId>
<version>${paxExamVersion}</version>
</dependency>
<dependency>
<groupId>org.ops4j.pax.exam</groupId>
<artifactId>pax-exam-inject</artifactId>
<version>${paxExamVersion}</version>
</dependency>
<dependency>
<groupId>org.apache.geronimo.specs</groupId>
<artifactId>geronimo-atinject_1.0_spec</artifactId>
<version>1.0</version>
</dependency>

</dependencies>

</project>
<?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/maven-v4_0_0.xsd">
<parent>
<artifactId>opennms</artifactId>
<groupId>org.opennms</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>dependencies</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Dependencies</name>
<modules>
<module>activemq</module>
<module>activemq-web</module>
<module>asterisk</module>
<module>atomikos</module>
<module>aws</module>
<module>camel</module>
<module>camel-test</module>
<module>cxf</module>
<module>dnsjava</module>
<module>drools</module>
<module>felix</module>
<module>hibernate</module>
<module>jasper</module>
<module>jasypt</module>
<module>javamail</module>
<module>jaxb</module>
<module>jcifs</module>
<module>jfreechart</module>
<module>jinterop</module>
<module>jmx</module>
<module>jna</module>
<module>jnlp</module>
<module>jradius</module>
<module>jradius-extended</module>
<module>jrobin</module>
<module>jrrd</module>
<module>jrrd2</module>
<module>jstl</module>
<module>liquibase</module>
<module>mina</module>
<module>netty</module>
<module>newts</module>
<module>owasp</module>
<module>pax-exam</module>
<module>quartz</module>
<module>rancid</module>
<module>servlet</module>
<module>smack</module>
<module>smslib</module>
<module>snmp4j</module>
<module>snmp4j-agent</module>
<module>snmp</module>
<module>snmp-test</module>
<module>spring</module>
<module>spring-security-core</module>
<module>spring-security</module>
<module>spring-test</module>
<module>spring-web</module>
<module>tracker</module>
<module>twitter4j</module>
</modules>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>dependencies</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.dependencies</groupId>
<artifactId>quartz-dependencies</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Dependencies :: Quartz</name>
<description>
This module is used to provide a single artifact that the opennms project
can depend on to use Quartz.
</description>
<dependencies>
<dependency>
<groupId>org.quartz-scheduler</groupId>
<artifactId>quartz</artifactId>
<version>${quartzVersion}</version>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>dependencies</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.dependencies</groupId>
<artifactId>rancid-dependencies</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Dependencies :: RANCID</name>
<description>
This module is used to provide a single artifact that the opennms project
can depend on to use the RANCID library
</description>
<dependencies>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>rancid-api</artifactId>
<version>${rancidApiVersion}</version>
<exclusions>
<exclusion>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
<repositories>
<repository>
<snapshots><enabled>false</enabled></snapshots>
<releases><enabled>true</enabled></releases>
<id>opennms-repo</id>
<name>OpenNMS Maven Repository</name>
<url>http://maven.opennms.org/content/groups/opennms.org-release</url>
</repository>
</repositories>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>dependencies</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.dependencies</groupId>
<artifactId>servlet-dependencies</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Dependencies :: Servlet</name>
<description>
This module is used to provide a single artifact that the opennms project
can depend on to use servlets
</description>
<dependencies>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>apache-jsp</artifactId>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>dependencies</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.dependencies</groupId>
<artifactId>smack-dependencies</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Dependencies :: Smack</name>
<description>
This module is used to provide a single artifact that the opennms project
can depend on to use Smack
</description>
<dependencies>
<dependency>
<groupId>org.igniterealtime.smack</groupId>
<artifactId>smack-core</artifactId>
<version>${smackVersion}</version>
</dependency>
<dependency>
<groupId>org.igniterealtime.smack</groupId>
<artifactId>smack-resolver-javax</artifactId>
<version>${smackVersion}</version>
</dependency>
<dependency>
<groupId>org.igniterealtime.smack</groupId>
<artifactId>smack-tcp</artifactId>
<version>${smackVersion}</version>
</dependency>
<dependency>
<groupId>org.igniterealtime.smack</groupId>
<artifactId>smack-extensions</artifactId>
<version>${smackVersion}</version>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>dependencies</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.dependencies</groupId>
<artifactId>smslib-dependencies</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Dependencies :: SMSLib</name>
<description>
This module is used to provide a single artifact that the opennms project
can depend on to use the SMSLib library.
</description>
<dependencies>
<!-- Netty -->
<dependency>
<groupId>org.smslib</groupId>
<artifactId>smslib</artifactId>
<version>3.5.3</version>
</dependency>
</dependencies>
<repositories>
<repository>
<id>smslib-repo</id>
<name>SMSLib Maven Repository</name>
<url>http://maven.opennms.org/content/repositories/smslib-repo/</url>
</repository>
</repositories>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>dependencies</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.dependencies</groupId>
<artifactId>snmp-test-dependencies</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Dependencies :: SNMP Test</name>
<description>
This module is used to provide a single artifact that the opennms project
can depend on to use SNMP
</description>
<dependencies>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>snmp-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.core.snmp</groupId>
<artifactId>org.opennms.core.snmp.implementations.mock</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.lib</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-util</artifactId>
</dependency>
</dependencies>
<repositories>
<repository>
<snapshots><enabled>false</enabled></snapshots>
<releases><enabled>true</enabled></releases>
<id>opennms-repo</id>
<name>OpenNMS Maven Repository</name>
<url>http://maven.opennms.org/content/groups/opennms.org-release</url>
</repository>
</repositories>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>dependencies</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.dependencies</groupId>
<artifactId>snmp-dependencies</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Dependencies :: SNMP</name>
<description>
This module is used to provide a single artifact that the opennms project
can depend on to use SNMP
</description>
<dependencies>
<dependency>
<groupId>org.opennms.core.snmp</groupId>
<artifactId>org.opennms.core.snmp.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core.snmp</groupId>
<artifactId>org.opennms.core.snmp.implementations.joesnmp</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core.snmp</groupId>
<artifactId>org.opennms.core.snmp.implementations.snmp4j</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
<repositories>
<repository>
<snapshots><enabled>false</enabled><updatePolicy>$
{updatePolicy}</updatePolicy></snapshots>
<releases><enabled>true</enabled><updatePolicy>$
{updatePolicy}</updatePolicy></releases>
<id>opennms-repo</id>
<name>OpenNMS Maven Repository</name>
<url>http://maven.opennms.org/content/groups/opennms.org-release</url>
</repository>
</repositories>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>dependencies</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.dependencies</groupId>
<artifactId>snmp4j-agent-dependencies</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Dependencies :: SNMP4J Agent</name>
<description>
This module is used to provide a single artifact that the opennms project
can depend on to use SNMP4J's Agent
</description>
<dependencies>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>snmp4j-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.snmp4j</groupId>
<artifactId>snmp4j-agent</artifactId>
<version>${snmp4jagentVersion}</version>
<exclusions>
<exclusion>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>log4j-over-slf4j</artifactId>
<scope>runtime</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>dependencies</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.dependencies</groupId>
<artifactId>snmp4j-dependencies</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Dependencies :: SNMP4J</name>
<description>
This module is used to provide a single artifact that the opennms project
can depend on to use SNMP
</description>
<dependencies>
<dependency>
<groupId>org.snmp4j</groupId>
<artifactId>snmp4j</artifactId>
<version>${snmp4jVersion}</version>
<exclusions>
<exclusion>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>log4j-over-slf4j</artifactId>
<scope>runtime</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>dependencies</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-security-core-dependencies</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Dependencies :: Spring Security (Core)</name>
<description>
This module is used to provide a single artifact that the opennms project
can depend on to use the Spring Security library.
</description>
<dependencies>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-core</artifactId>
<version>${springSecurityVersion}</version>
<exclusions>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-aop</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-beans</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-dao</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-expression</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-jdbc</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-mock</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-remoting</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-support</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-tx</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-web</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-remoting</artifactId>
<version>${springSecurityVersion}</version>
<exclusions>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-aop</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-beans</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-dao</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-expression</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-jdbc</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-mock</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-remoting</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-support</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-tx</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-web</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>dependencies</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-security-dependencies</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Dependencies :: Spring Security</name>
<description>
This module is used to provide a single artifact that the opennms project
can depend on to use the Spring Security library.
</description>
<dependencies>
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-ldap</artifactId>
<version>${springLdapVersion}</version>
<exclusions>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-aop</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-beans</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-dao</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-expression</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-jdbc</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-mock</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-remoting</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-support</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-tx</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-web</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-config</artifactId>
<version>${springSecurityVersion}</version>
<exclusions>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-aop</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-beans</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-dao</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-expression</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-jdbc</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-mock</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-remoting</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-support</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-tx</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-web</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-acl</artifactId>
<version>${springSecurityVersion}</version>
<exclusions>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-aop</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-beans</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-dao</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-expression</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-jdbc</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-mock</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-remoting</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-support</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-tx</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-web</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-taglibs</artifactId>
<version>${springSecurityVersion}</version>
<exclusions>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-aop</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-beans</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-dao</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-expression</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-jdbc</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-mock</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-remoting</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-support</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-tx</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-web</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.springframework.security.kerberos</groupId>
<artifactId>spring-security-kerberos-client</artifactId>
<version>${springSecurityKerberosVersion}</version>
<exclusions>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-aop</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-beans</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-dao</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-expression</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-jdbc</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-mock</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-remoting</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-support</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-tx</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-web</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.springframework.security.kerberos</groupId>
<artifactId>spring-security-kerberos-core</artifactId>
<version>${springSecurityKerberosVersion}</version>
<exclusions>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-aop</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-beans</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-dao</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-expression</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-jdbc</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-mock</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-remoting</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-support</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-tx</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-web</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.springframework.security.kerberos</groupId>
<artifactId>spring-security-kerberos-web</artifactId>
<version>${springSecurityKerberosVersion}</version>
<exclusions>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-aop</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-beans</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-dao</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-expression</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-jdbc</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-mock</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-remoting</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-support</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-tx</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-web</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-security-core-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>dependencies</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-test-dependencies</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Dependencies :: Spring Test</name>
<description>
This module is used to provide a single artifact that the opennms project
can depend on to use the spring library.
</description>
<dependencies>
<!-- Spring -->
<dependency>
<groupId>org.apache.servicemix.bundles</groupId>
<artifactId>org.apache.servicemix.bundles.spring-test</artifactId>
<version>${springVersion}</version>
<exclusions>
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-dependencies</artifactId>
<type>pom</type>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>dependencies</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-web-dependencies</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Dependencies :: Spring Web</name>
<description>
This module is used to provide a single artifact that the opennms project
can depend on to use the spring library.
</description>
<!-- springVersion defined in the dependencies pom since its shared in multiple
modules -->
<dependencies>
<!-- Spring -->
<dependency>
<groupId>org.apache.servicemix.bundles</groupId>
<artifactId>org.apache.servicemix.bundles.spring-web</artifactId>
<version>${springVersion}</version>
</dependency>
<dependency>
<groupId>org.apache.servicemix.bundles</groupId>
<artifactId>org.apache.servicemix.bundles.spring-webmvc</artifactId>
<version>${springVersion}</version>
</dependency>
<!-- Spring Dependencies -->
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-validator-annotation-processor</artifactId>
</dependency>
<!-- Other version overrides -->
<dependency>
<groupId>commons-beanutils</groupId>
<artifactId>commons-beanutils</artifactId>
</dependency>
<dependency>
<groupId>commons-validator</groupId>
<artifactId>commons-validator</artifactId>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>jcl-over-slf4j</artifactId>
</dependency>
<dependency>
<groupId>xalan</groupId>
<artifactId>xalan</artifactId>
</dependency>
<dependency>
<groupId>xml-apis</groupId>
<artifactId>xml-apis</artifactId>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>dependencies</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-dependencies</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Dependencies :: Spring</name>
<description>
This module is used to provide a single artifact that the opennms project
can depend on to use the spring library.
</description>
<dependencies>
<!-- Spring -->
<dependency>
<groupId>org.apache.servicemix.bundles</groupId>
<artifactId>org.apache.servicemix.bundles.spring-aop</artifactId>
<version>${springVersion}</version>
</dependency>
<dependency>
<groupId>org.apache.servicemix.bundles</groupId>
<artifactId>org.apache.servicemix.bundles.spring-aspects</artifactId>
<version>${springVersion}</version>
</dependency>
<dependency>
<groupId>org.apache.servicemix.bundles</groupId>
<artifactId>org.apache.servicemix.bundles.spring-beans</artifactId>
<version>${springVersion}</version>
</dependency>
<dependency>
<groupId>org.apache.servicemix.bundles</groupId>
<artifactId>org.apache.servicemix.bundles.spring-context</artifactId>
<version>${springVersion}</version>
</dependency>
<dependency>
<groupId>org.apache.servicemix.bundles</groupId>
<artifactId>org.apache.servicemix.bundles.spring-context-support</artifactId>
<version>${springVersion}</version>
</dependency>
<dependency>
<groupId>org.apache.servicemix.bundles</groupId>
<artifactId>org.apache.servicemix.bundles.spring-core</artifactId>
<version>${springVersion}</version>
</dependency>
<dependency>
<groupId>org.apache.servicemix.bundles</groupId>
<artifactId>org.apache.servicemix.bundles.spring-expression</artifactId>
<version>${springVersion}</version>
</dependency>
<dependency>
<groupId>org.apache.servicemix.bundles</groupId>
<artifactId>org.apache.servicemix.bundles.spring-instrument</artifactId>
<version>${springVersion}</version>
</dependency>
<dependency>
<groupId>org.apache.servicemix.bundles</groupId>
<artifactId>org.apache.servicemix.bundles.spring-oxm</artifactId>
<version>${springVersion}</version>
</dependency>
<dependency>
<groupId>org.apache.servicemix.bundles</groupId>
<artifactId>org.apache.servicemix.bundles.spring-jdbc</artifactId>
<version>${springVersion}</version>
</dependency>
<dependency>
<groupId>org.apache.servicemix.bundles</groupId>
<artifactId>org.apache.servicemix.bundles.spring-jms</artifactId>
<version>${springVersion}</version>
<exclusions>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-messaging</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.servicemix.bundles</groupId>
<artifactId>org.apache.servicemix.bundles.spring-messaging</artifactId>
<version>${springVersion}</version>
</dependency>
<dependency>
<groupId>org.apache.servicemix.bundles</groupId>
<artifactId>org.apache.servicemix.bundles.spring-orm</artifactId>
<version>${springVersion}</version>
</dependency>
<dependency>
<groupId>org.apache.servicemix.bundles</groupId>
<artifactId>org.apache.servicemix.bundles.spring-tx</artifactId>
<version>${springVersion}</version>
</dependency>
<dependency>
<groupId>org.apache.servicemix.bundles</groupId>
<artifactId>org.apache.servicemix.bundles.aopalliance</artifactId>
<version>1.0_6</version>
</dependency>
<dependency>
<groupId>org.apache.servicemix.bundles</groupId>
<artifactId>org.apache.servicemix.bundles.aspectj</artifactId>
<version>${aspectjVersion}_1</version>
</dependency>
<!-- Spring Dependencies -->
<dependency>
<groupId>javax.annotation</groupId>
<artifactId>jsr250-api</artifactId>
</dependency>
<dependency>
<!-- Needed for spring-context-support -->
<groupId>commons-collections</groupId>
<artifactId>commons-collections</artifactId>
<exclusions>
<exclusion>
<groupId>org.apache.commons</groupId>
<artifactId>com.springsource.org.apache.commons.logging</artifactId>
</exclusion>
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>jcl-over-slf4j</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>hibernate-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.codehaus.jackson</groupId>
<artifactId>jackson-core-asl</artifactId>
</dependency>
<dependency>
<groupId>org.codehaus.jackson</groupId>
<artifactId>jackson-mapper-asl</artifactId>
</dependency>
<dependency>
<groupId>org.codehaus.jackson</groupId>
<artifactId>jackson-jaxrs</artifactId>
</dependency>
<dependency>
<groupId>org.codehaus.jackson</groupId>
<artifactId>jackson-xc</artifactId>
</dependency>
<!-- Get the JMS spec (javax.jms.*) so that spring-jms can load in OSGi -->
<dependency>
<groupId>org.apache.geronimo.specs</groupId>
<artifactId>geronimo-jms_1.1_spec</artifactId>
<version>1.1.1</version>
</dependency>
<dependency>
<groupId>org.javassist</groupId>
<artifactId>javassist</artifactId>
<version>3.18.2-GA</version>
</dependency>
</dependencies>
</project>
<?xml version="1.0"?>
<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/maven-v4_0_0.xsd">
<parent>
<artifactId>dependencies</artifactId>
<groupId>org.opennms</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.dependencies</groupId>
<artifactId>tracker-dependencies</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Dependencies :: Tracker</name>
<dependencies>
<dependency>
<groupId>org.opennms.lib</groupId>
<artifactId>org.opennms.lib.tracker</artifactId>
<version>${trackerVersion}</version>
<exclusions>
<exclusion>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
<repositories>
<repository>
<snapshots><enabled>false</enabled></snapshots>
<releases><enabled>true</enabled></releases>
<id>opennms-repo</id>
<name>OpenNMS Maven Repository</name>
<url>http://maven.opennms.org/content/groups/opennms.org-release</url>
</repository>
<repository>
<snapshots><enabled>true</enabled></snapshots>
<releases><enabled>false</enabled></releases>
<id>opennms-snapshots</id>
<name>OpenNMS Snapshot Maven Repository</name>
<url>http://maven.opennms.org/content/groups/opennms.org-snapshot</url>
</repository>
</repositories>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>dependencies</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.dependencies</groupId>
<artifactId>twitter4j-dependencies</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Dependencies :: Twitter4J</name>
<description>
This module is used to provide a single artifact that the opennms project
can depend on to use Twitter4J
</description>
<dependencies>
<dependency>
<groupId>org.twitter4j</groupId>
<artifactId>twitter4j-core</artifactId>
<version>${twitter4jVersion}</version>
</dependency>
</dependencies>
</project>
<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.opennms.features</groupId>
<artifactId>org.opennms.features.activemq</artifactId>
<version>27.0.5</version>
</parent>
<packaging>bundle</packaging>
<groupId>org.opennms.features.activemq</groupId>
<artifactId>org.opennms.features.activemq.broker-api</artifactId>

<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>
</instructions>
</configuration>
</plugin>
</plugins>
</build>

<dependencies>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>activemq-dependencies</artifactId>
<type>pom</type>
</dependency>
</dependencies>
</project>
<?xml version="1.0" encoding="UTF-8"?>
<project
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/maven-v4_0_0.xsd"
>

<parent>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.activemq</artifactId>
<version>27.0.5</version>
</parent>

<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.activemq</groupId>
<artifactId>org.opennms.features.activemq.broker</artifactId>

<name>OpenNMS :: Features :: ActiveMQ :: Broker</name>

<packaging>pom</packaging>

<build>
<plugins>
<!-- Because this is a POM project, we need to explicitly enable test
compilation and execution -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<executions>
<execution>
<phase>test-compile</phase>
<goals>
<goal>testCompile</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<executions>
<execution>
<phase>test</phase>
<goals>
<goal>test</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<executions>
<execution>
<id>attach-artifacts</id>
<phase>package</phase>
<goals>
<goal>attach-artifact</goal>
</goals>
<configuration>
<artifacts>
<!-- ActiveMQ dispatcher broker config file -->
<artifact>
<file>${project.basedir}/src/main/resources/activemq-
dispatcher.xml</file>
<type>xml</type>
<classifier>activemq-dispatcher</classifier>
</artifact>
<!-- ActiveMQ dispatcher broker properties file -->
<artifact>
<file>${project.basedir}/src/main/resources/activemq-
dispatcher.cfg</file>
<type>cfg</type>
<classifier>activemq-dispatcher</classifier>
</artifact>

<!-- ActiveMQ receiver broker config file -->


<artifact>
<file>${project.basedir}/src/main/resources/activemq-
receiver.xml</file>
<type>xml</type>
<classifier>activemq-receiver</classifier>
</artifact>
<!-- ActiveMQ receiver broker properties file -->
<artifact>
<file>${project.basedir}/src/main/resources/activemq-
receiver.cfg</file>
<type>cfg</type>
<classifier>activemq-receiver</classifier>
</artifact>
</artifacts>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>activemq-dependencies</artifactId>
<type>pom</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>camel-test-dependencies</artifactId>
<type>pom</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jaxb-dependencies</artifactId>
<type>pom</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-dependencies</artifactId>
<type>pom</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.camel</groupId>
<artifactId>camel-jms</artifactId>
<version>${camelVersion}</version>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
</exclusion>
<exclusion>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
</exclusion>
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-aop</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-beans</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-expression</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-jms</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-tx</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.camel</groupId>
<artifactId>camel-jaxb</artifactId>
<version>${camelVersion}</version>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
</exclusion>
<exclusion>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
</exclusion>
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-beans</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-expression</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-jms</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-tx</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.camel</groupId>
<artifactId>camel-spring</artifactId>
<version>${camelVersion}</version>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
</exclusion>
<exclusion>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
</exclusion>
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-aop</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-beans</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-expression</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-jms</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-tx</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
</project>
<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.opennms.features</groupId>
<artifactId>org.opennms.features.activemq</artifactId>
<version>27.0.5</version>
</parent>
<packaging>bundle</packaging>
<groupId>org.opennms.features.activemq</groupId>
<artifactId>org.opennms.features.activemq.component</artifactId>

<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.features.activemq</groupId>
<artifactId>org.opennms.features.activemq.pool</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</project>
<?xml version="1.0" encoding="UTF-8"?>
<project
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/maven-v4_0_0.xsd"
>
<parent>
<groupId>org.opennms</groupId>
<artifactId>org.opennms.features</artifactId>
<version>27.0.5</version>
</parent>

<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.activemq</artifactId>
<name>OpenNMS :: Features :: ActiveMQ</name>
<packaging>pom</packaging>

<modules>
<module>broker</module>
<module>broker-api</module>
<module>component</module>
<module>pool</module>
<module>shell</module>
</modules>

</project>
<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.opennms.features</groupId>
<artifactId>org.opennms.features.activemq</artifactId>
<version>27.0.5</version>
</parent>
<packaging>bundle</packaging>
<groupId>org.opennms.features.activemq</groupId>
<artifactId>org.opennms.features.activemq.pool</artifactId>
<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.apache.activemq</groupId>
<artifactId>activemq-pool</artifactId>
<version>${activemqVersion}</version>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.logging</artifactId>
</dependency>
</dependencies>
</project>
<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.opennms.features</groupId>
<artifactId>org.opennms.features.activemq</artifactId>
<version>27.0.5</version>
</parent>
<packaging>bundle</packaging>
<groupId>org.opennms.features.activemq</groupId>
<artifactId>org.opennms.features.activemq.shell</artifactId>

<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>
<Karaf-Commands>*</Karaf-Commands>
</instructions>
</configuration>
</plugin>
</plugins>
</build>

<dependencies>
<dependency>
<groupId>org.opennms.features.activemq</groupId>
<artifactId>org.opennms.features.activemq.broker-api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.apache.karaf.shell</groupId>
<artifactId>org.apache.karaf.shell.core</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.lib</artifactId>
</dependency>
</dependencies>
</project>

<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.plugins</groupId>
<artifactId>alarm-change-notifier.parent</artifactId>
<version>27.0.5</version>
</parent>

<!-- Feature Definition -->


<modelVersion>4.0.0</modelVersion>
<artifactId>alarm-change-notifier</artifactId>
<name>alarm-change-notifier</name>
<description>Feature definition for alarm-change-notifier</description>
<packaging>pom</packaging>

<dependencies>

<dependency>
<groupId>com.impossibl.pgjdbc-ng</groupId>
<artifactId>pgjdbc-ng</artifactId>
<version>${pgjdbc-ng-version}</version>
<!-- <classifier>complete</classifier> -->
<exclusions>
<exclusion>
<groupId>io.netty</groupId>
<artifactId>netty-all</artifactId>
</exclusion>
</exclusions>
</dependency>

<!-- OSGi netty dependencies for pgjdbc-ng -->


<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-common</artifactId>
<version>${netty4Version}</version>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-transport</artifactId>
<version>${netty4Version}</version>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-buffer</artifactId>
<version>${netty4Version}</version>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-handler</artifactId>
<version>${netty4Version}</version>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-resolver</artifactId>
<version>${netty4Version}</version>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-codec</artifactId>
<version>${netty4Version}</version>
</dependency>

<dependency>
<groupId>org.opennms.plugins</groupId>
<artifactId>${productName}.pg-jdbc-utils</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.plugins</groupId>
<artifactId>${productName}.main-module</artifactId>
<version>${project.version}</version>
</dependency>

<dependency>
<groupId>com.googlecode.json-simple</groupId>
<artifactId>json-simple</artifactId>
<version>${json-simpleVersion}</version>
</dependency>

</dependencies>
<pluginRepositories>
<pluginRepository>
<snapshots>
<enabled>false</enabled>
</snapshots>
<releases>
<enabled>true</enabled>
</releases>
<id>opennms-repo</id>
<name>OpenNMS Repository</name>
<url>http://maven.opennms.org/content/groups/opennms.org-release</url>
</pluginRepository>
</pluginRepositories>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features.alarms</groupId>
<artifactId>org.opennms.features.alarms.history</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.alarms.history</groupId>
<artifactId>org.opennms.features.alarms.history.api</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Features :: Alarms :: History :: API</name>
<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>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features.alarms</groupId>
<artifactId>org.opennms.features.alarms.history</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.alarms.history</groupId>
<artifactId>org.opennms.features.alarms.history.elastic</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Features :: Alarms :: History :: Elastic</name>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<annotationProcessorPaths>
<path>
<groupId>org.mapstruct</groupId>
<artifactId>mapstruct-processor</artifactId>
<version>${mapstructVersion}</version>
</path>
</annotationProcessorPaths>
</configuration>
</plugin>
<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.features.alarms.history</groupId>
<artifactId>org.opennms.features.alarms.history.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-alarm-api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.cache</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core.health</groupId>
<artifactId>org.opennms.core.health.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.jest</groupId>
<artifactId>org.opennms.features.jest.client</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.searchbox</groupId>
<artifactId>jest-complete-osgi</artifactId>
<version>${jestVersion}</version>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>${jestGsonVersion}</version>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>${guavaVersion}</version>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.freemarker</groupId>
<artifactId>freemarker</artifactId>
<version>${freemarkerVersion}</version>
</dependency>
<dependency>
<groupId>org.mapstruct</groupId>
<artifactId>mapstruct-jdk8</artifactId>
<version>${mapstructVersion}</version>
</dependency>

<!-- Test Scope -->


<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpasyncclient</artifactId>
<version>${httpasyncclientVersion}</version>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.jayway.awaitility</groupId>
<artifactId>awaitility</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.elasticsearch</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<!--
A parent module defines netty-all with a specific verison, but Elastic
requires
a different version. We overwrite it here manually so that the proper
dependencies
are pulled in.
-->
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-all</artifactId>
<version>${elasticsearchNettyVersion}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-codec</artifactId>
<version>${elasticsearchNettyVersion}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-codec-http</artifactId>
<version>${elasticsearchNettyVersion}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-transport</artifactId>
<version>${elasticsearchNettyVersion}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-resolver</artifactId>
<version>${elasticsearchNettyVersion}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-handler</artifactId>
<version>${elasticsearchNettyVersion}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-buffer</artifactId>
<version>${elasticsearchNettyVersion}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-common</artifactId>
<version>${elasticsearchNettyVersion}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.lib</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.alarm</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.alarms</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.alarms</groupId>
<artifactId>org.opennms.features.alarms.history</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Features :: Alarms :: History</name>
<modules>
<module>api</module>
<module>elastic</module>
<module>rest</module>
</modules>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features.alarms.history</groupId>
<artifactId>org.opennms.features.alarms.history.rest</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.alarms.history.rest</groupId>
<artifactId>org.opennms.features.alarms.history.rest.api</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Features :: Alarms :: History :: REST :: API</name>

<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.features.alarms.history</groupId>
<artifactId>org.opennms.features.alarms.history.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>javax.ws.rs</groupId>
<artifactId>javax.ws.rs-api</artifactId>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features.alarms.history</groupId>
<artifactId>org.opennms.features.alarms.history.rest</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.alarms.history.rest</groupId>
<artifactId>org.opennms.features.alarms.history.rest.impl</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Features :: Alarms :: History :: REST :: Impl.</name>

<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.features.alarms.history.rest</groupId>
<artifactId>org.opennms.features.alarms.history.rest.api</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features.alarms</groupId>
<artifactId>org.opennms.features.alarms.history</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.alarms.history</groupId>
<artifactId>org.opennms.features.alarms.history.rest</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Features :: Alarms :: History :: REST</name>

<modules>
<module>api</module>
<module>impl</module>
</modules>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>org.opennms.features</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.alarms</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Features :: Alarms</name>
<modules>
<module>history</module>
</modules>
</project>
<?xml version="1.0" encoding="UTF-8"?>
<project
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="
http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd
">

<parent>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.amqp</artifactId>
<version>27.0.5</version>
</parent>

<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.amqp</groupId>
<artifactId>org.opennms.features.amqp.alarm-northbounder</artifactId>

<name>OpenNMS :: Features :: AMQP :: Alarm Northbounder</name>


<packaging>bundle</packaging>

<build>
<plugins>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<skip>${skipSurefire}</skip>
<systemPropertyVariables>
<opennms.home>${project.build.testOutputDirectory}</opennms.home>
</systemPropertyVariables>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<instructions>
<Bundle-RequiredExecutionEnvironment>JavaSE-1.8</Bundle-
RequiredExecutionEnvironment>
<!-- Add classes that are included in Camel routes -->
<Import-Package>org.opennms.core.xml,*</Import-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>

<dependencies>
<dependency>
<groupId>org.opennms.features.amqp</groupId>
<artifactId>org.opennms.features.amqp.common</artifactId>
<version>${project.version}</version>
</dependency>

<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.compendium</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.camel</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.lib</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-alarm-api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.apache.camel</groupId>
<artifactId>camel-core</artifactId>
<version>${camelVersion}</version>
<exclusions>
<exclusion>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.camel</groupId>
<artifactId>camel-jaxb</artifactId>
<version>${camelVersion}</version>
<optional>true</optional>
<exclusions>
<exclusion>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.camel</groupId>
<artifactId>camel-jms</artifactId>
<version>${camelVersion}</version>
<exclusions>
<exclusion>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-aop</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-beans</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-expression</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-jms</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-tx</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.camel</groupId>
<artifactId>camel-amqp</artifactId>
<version>${camelVersion}</version>
<exclusions>
<exclusion>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-test-dependencies</artifactId>
<type>pom</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.xml</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.camel</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?xml version="1.0" encoding="UTF-8"?>
<project
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="
http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd
">

<parent>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.amqp</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.amqp</groupId>
<artifactId>org.opennms.features.amqp.common</artifactId>

<name>OpenNMS :: Features :: AMQP :: Common</name>

<packaging>bundle</packaging>

<build>
<plugins>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<skip>${skipSurefire}</skip>
<systemPropertyVariables>
<opennms.home>${project.build.testOutputDirectory}</opennms.home>
</systemPropertyVariables>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<instructions>
<Bundle-RequiredExecutionEnvironment>JavaSE-1.8</Bundle-
RequiredExecutionEnvironment>
</instructions>
</configuration>
</plugin>
</plugins>
</build>

<dependencies>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.compendium</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.camel</artifactId>
</dependency>
<dependency>
<groupId>org.apache.camel</groupId>
<artifactId>camel-core</artifactId>
<version>${camelVersion}</version>
<exclusions>
<exclusion>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?xml version="1.0" encoding="UTF-8"?>
<project
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="
http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd
">

<parent>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.amqp</artifactId>
<version>27.0.5</version>
</parent>

<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.amqp</groupId>
<artifactId>org.opennms.features.amqp.event-forwarder</artifactId>

<name>OpenNMS :: Features :: AMQP :: Event Forwarder</name>

<packaging>bundle</packaging>

<build>
<plugins>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<skip>${skipSurefire}</skip>
<systemPropertyVariables>
<opennms.home>${project.build.testOutputDirectory}</opennms.home>
</systemPropertyVariables>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<instructions>
<Bundle-RequiredExecutionEnvironment>JavaSE-1.8</Bundle-
RequiredExecutionEnvironment>
<!-- Add classes that are included in Camel routes -->
<Import-Package>org.opennms.core.xml,*</Import-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>

<dependencies>
<dependency>
<groupId>org.opennms.features.amqp</groupId>
<artifactId>org.opennms.features.amqp.common</artifactId>
<version>${project.version}</version>
</dependency>

<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.compendium</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.camel</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.lib</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-config-jaxb</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-model</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.camel</groupId>
<artifactId>camel-core</artifactId>
<version>${camelVersion}</version>
<exclusions>
<exclusion>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.camel</groupId>
<artifactId>camel-jaxb</artifactId>
<version>${camelVersion}</version>
<optional>true</optional>
<exclusions>
<exclusion>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.camel</groupId>
<artifactId>camel-jms</artifactId>
<version>${camelVersion}</version>
<exclusions>
<exclusion>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-aop</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-beans</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-expression</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-jms</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-tx</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.camel</groupId>
<artifactId>camel-amqp</artifactId>
<version>${camelVersion}</version>
<exclusions>
<exclusion>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-mock</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-test-dependencies</artifactId>
<type>pom</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.xml</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.camel</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?xml version="1.0" encoding="UTF-8"?>
<project
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="
http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd
">

<parent>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.amqp</artifactId>
<version>27.0.5</version>
</parent>

<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.amqp</groupId>
<artifactId>org.opennms.features.amqp.event-receiver</artifactId>

<name>OpenNMS :: Features :: AMQP :: Event Receiver</name>

<packaging>bundle</packaging>

<build>
<plugins>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<skip>${skipSurefire}</skip>
<systemPropertyVariables>
<opennms.home>${project.build.testOutputDirectory}</opennms.home>
</systemPropertyVariables>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<instructions>
<Bundle-RequiredExecutionEnvironment>JavaSE-1.8</Bundle-
RequiredExecutionEnvironment>
<!-- Add classes that are included in Camel routes -->
<Import-Package>org.opennms.core.xml,*</Import-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>

<dependencies>
<dependency>
<groupId>org.opennms.features.amqp</groupId>
<artifactId>org.opennms.features.amqp.common</artifactId>
<version>${project.version}</version>
</dependency>

<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.compendium</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.camel</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.lib</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-config-jaxb</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-model</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao</artifactId>
</dependency>
<dependency>
<groupId>org.apache.camel</groupId>
<artifactId>camel-core</artifactId>
<version>${camelVersion}</version>
<exclusions>
<exclusion>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.camel</groupId>
<artifactId>camel-jaxb</artifactId>
<version>${camelVersion}</version>
<optional>true</optional>
<exclusions>
<exclusion>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.camel</groupId>
<artifactId>camel-jms</artifactId>
<version>${camelVersion}</version>
<exclusions>
<exclusion>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-aop</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-beans</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-expression</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-jms</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-tx</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.camel</groupId>
<artifactId>camel-amqp</artifactId>
<version>${camelVersion}</version>
<exclusions>
<exclusion>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-mock</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-test-dependencies</artifactId>
<type>pom</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.xml</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.camel</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?xml version="1.0" encoding="UTF-8"?>
<project
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/maven-v4_0_0.xsd"
>
<parent>
<groupId>org.opennms</groupId>
<artifactId>org.opennms.features</artifactId>
<version>27.0.5</version>
</parent>

<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.amqp</artifactId>
<name>OpenNMS :: Features :: AMQP</name>
<packaging>pom</packaging>

<modules>
<module>common</module>
<module>event-forwarder</module>
<module>event-receiver</module>
<module>alarm-northbounder</module>
</modules>

</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>org.opennms.features</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.api-layer</artifactId>
<name>OpenNMS :: Features :: API Layer</name>
<packaging>bundle</packaging>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<annotationProcessorPaths>
<path>
<groupId>org.mapstruct</groupId>
<artifactId>mapstruct-processor</artifactId>
<version>${mapstructVersion}</version>
</path>
</annotationProcessorPaths>
</configuration>
</plugin>
<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>

<properties>
<!-- automatically run annotation processors within the incremental
compilation -->
<m2e.apt.activation>jdt_apt</m2e.apt.activation>
</properties>

<dependencies>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-config-api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.integration.api</groupId>
<artifactId>api</artifactId>
<version>${opennmsApiVersion}</version>
</dependency>
<dependency>
<groupId>org.opennms.integration.api</groupId>
<artifactId>common</artifactId>
<version>${opennmsApiVersion}</version>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-config-model</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-config</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core.health</groupId>
<artifactId>org.opennms.core.health.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-alarm-api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.situation-feedback</groupId>
<artifactId>org.opennms.features.situation-feedback.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-provision-api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.ticketing</groupId>
<artifactId>org.opennms.features.ticketing.api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-provision-persistence</artifactId>
</dependency>
<dependency>
<groupId>org.mapstruct</groupId>
<artifactId>mapstruct</artifactId>
<version>${mapstructVersion}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.topology</groupId>
<artifactId>org.opennms.features.topology.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.topologies</groupId>
<artifactId>org.opennms.features.topologies.service.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.collection</groupId>

<artifactId>org.opennms.features.collection.thresholding.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.graph</groupId>
<artifactId>org.opennms.features.graph.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.graph.provider</groupId>
<artifactId>org.opennms.features.graph.provider.topology</artifactId>
<version>${project.version}</version>
</dependency>

<!-- Test -->


<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.features.enlinkd</groupId>
<artifactId>org.opennms.features.enlinkd.service.api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.topologies</groupId>
<artifactId>org.opennms.features.topologies.service.api</artifactId>
<version>${project.version}</version>
<type>test-jar</type>
<scope>test</scope>
</dependency>
</dependencies>

<repositories>
<repository>
<id>sonatype.org-snapshot</id>
<name>Sonatype OSS Snapshots Repository</name>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
<releases><enabled>false</enabled></releases>
<snapshots><enabled>true</enabled></snapshots>
</repository>
</repositories>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.bsm</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.bsm</groupId>
<artifactId>org.opennms.features.bsm.daemon</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Features :: BSM :: Daemon</name>
<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>
<Private-Package>org.opennms.netmgt.bsm.service.internal.*</Private-
Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.daemon</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.bsm</groupId>
<artifactId>org.opennms.features.bsm.persistence.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.bsm</groupId>
<artifactId>org.opennms.features.bsm.service.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.bsm</groupId>
<artifactId>org.opennms.features.bsm.service.impl</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-alarm-api</artifactId>
<version>${project.version}</version>
</dependency>

<!-- Test Dependencies -->


<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-config</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.events</groupId>
<artifactId>org.opennms.features.events.daemon</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrd-jrobin</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.persistence.rrd</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.services</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.db</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-mock</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.bsm</groupId>
<artifactId>org.opennms.features.bsm.persistence.impl</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.bsm</groupId>
<artifactId>org.opennms.features.bsm.shell-commands</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.profiler</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.jayway.awaitility</groupId>
<artifactId>awaitility</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>
<exclusions>
<exclusion>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-core</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features.bsm</groupId>
<artifactId>org.opennms.features.bsm.persistence</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>org.opennms.features.bsm.persistence.api</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Features :: BSM :: Persistence :: API</name>
<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</groupId>
<artifactId>opennms-dao-api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-model</artifactId>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</dependency>
<dependency>
<groupId>javax.validation</groupId>
<artifactId>validation-api</artifactId>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-validator</artifactId>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features.bsm</groupId>
<artifactId>org.opennms.features.bsm.persistence</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>org.opennms.features.bsm.persistence.impl</artifactId>
<packaging>jar</packaging>
<name>OpenNMS :: Features :: BSM :: Persistence :: Impl</name>
<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.features.bsm</groupId>
<artifactId>org.opennms.features.bsm.persistence.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>hibernate-dependencies</artifactId>
<type>pom</type>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-dependencies</artifactId>
<type>pom</type>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.soa</artifactId>
<scope>provided</scope>
</dependency>
<!-- Test dependencies -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-config</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrd-jrobin</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.persistence.rrd</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.services</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.db</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.bsm</groupId>
<artifactId>test-util</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-mock</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-validator</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.bsm</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.bsm</groupId>
<artifactId>org.opennms.features.bsm.persistence</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Features :: BSM :: Persistence</name>
<modules>
<module>api</module>
<module>impl</module>
</modules>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>org.opennms.features</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.bsm</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Features :: BSM</name>
<modules>
<module>daemon</module>
<module>persistence</module>
<module>rest</module>
<module>service</module>
<module>test-util</module>
<module>vaadin-adminpage</module>
<module>shell-commands</module>
</modules>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features.bsm</groupId>
<artifactId>org.opennms.features.bsm.rest</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>org.opennms.features.bsm.rest.api</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Features :: BSM :: ReST :: API</name>
<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>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<descriptors>
<descriptor>src/assembly/xsds.xml</descriptor>
</descriptors>
<overrideUid>0</overrideUid>
<overrideGid>0</overrideGid>
<tarLongFileMode>posix</tarLongFileMode>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<!-- All of this projects dependencies should have either a 'provided' or
'test' scope, since
this .jar gets pull into jetty-webapps/opennmns/WEB-INF/lib -->
<dependency>
<groupId>org.opennms.features.bsm</groupId>
<artifactId>org.opennms.features.bsm.service.api</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.rest</groupId>
<artifactId>org.opennms.features.rest.common</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.reflections</groupId>
<artifactId>reflections</artifactId>
<scope>provided</scope>
</dependency>
<!-- Test Dependencies -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.xml</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features.bsm</groupId>
<artifactId>org.opennms.features.bsm.rest</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>org.opennms.features.bsm.rest.impl</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Features :: BSM :: ReST :: Impl</name>
<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>
<!-- All of this projects dependencies should have either a 'provided' or
'test' scope, since
this .jar gets pull into jetty-webapps/opennmns/WEB-INF/lib -->
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-dependencies</artifactId>
<type>pom</type>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.bsm</groupId>
<artifactId>org.opennms.features.bsm.rest.api</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.bsm</groupId>
<artifactId>org.opennms.features.bsm.service.api</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.rest</groupId>
<artifactId>org.opennms.features.rest.common</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.rest-provider</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-webapp-rest</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>cxf-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.googlecode.concurrent-locks</groupId>
<artifactId>concurrent-locks</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-validator</artifactId>
</dependency>

<!-- Test Dependencies -->


<dependency>
<groupId>org.opennms.features.bsm</groupId>
<artifactId>test-util</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-config</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.bsm</groupId>
<artifactId>org.opennms.features.bsm.persistence.impl</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.bsm</groupId>
<artifactId>org.opennms.features.bsm.service.impl</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrd-jrobin</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.persistence.rrd</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-mock</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-web-api</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.db</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.services</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.rest</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.xml</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.reflections</groupId>
<artifactId>reflections</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.ticketing</groupId>
<artifactId>org.opennms.features.ticketing.daemon</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.rest</groupId>
<artifactId>org.opennms.features.rest.mapper</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.enlinkd</groupId>
<artifactId>org.opennms.features.enlinkd.service.api</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.bsm</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.bsm</groupId>
<artifactId>org.opennms.features.bsm.rest</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Features :: BSM :: ReST</name>

<modules>
<module>api</module>
<module>impl</module>
</modules>

</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features.bsm</groupId>
<artifactId>org.opennms.features.bsm.service</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>org.opennms.features.bsm.service.api</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Features :: BSM :: Service :: API</name>
<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.core</groupId>
<artifactId>org.opennms.core.criteria</artifactId>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</dependency>
<dependency>
<groupId>net.sf.jung</groupId>
<artifactId>jung-api</artifactId>
</dependency>
<!-- Test Dependencies -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.xml</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features.bsm</groupId>
<artifactId>org.opennms.features.bsm.service</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>org.opennms.features.bsm.service.impl</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Features :: BSM :: Service :: Impl</name>
<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>
<Private-
Package>org.opennms.netmgt.bsm.service.internal.*;org.opennms.netmgt.bsm.service.mo
del.graph.internal.*</Private-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms.features.bsm</groupId>
<artifactId>org.opennms.features.bsm.service.api</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.bsm</groupId>
<artifactId>org.opennms.features.bsm.persistence.api</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
<dependency>
<groupId>net.sf.jung</groupId>
<artifactId>jung-api</artifactId>
</dependency>
<dependency>
<groupId>net.sf.jung</groupId>
<artifactId>jung-graph-impl</artifactId>
</dependency>
<dependency>
<groupId>net.sf.jung</groupId>
<artifactId>jung-algorithms</artifactId>
</dependency>
<dependency>
<groupId>net.sf.jung</groupId>
<artifactId>jung-visualization</artifactId>
</dependency>

<!-- Test Dependencies -->


<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-config</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrd-jrobin</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.persistence.rrd</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.services</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.db</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-mock</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.bsm</groupId>
<artifactId>org.opennms.features.bsm.persistence.impl</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.bsm</groupId>
<artifactId>test-util</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.bsm</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.bsm</groupId>
<artifactId>org.opennms.features.bsm.service</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Features :: BSM :: Service</name>
<modules>
<module>api</module>
<module>impl</module>
</modules>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.bsm</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.bsm</groupId>
<artifactId>org.opennms.features.bsm.shell-commands</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Features :: BSM :: Shell Commands</name>
<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.features.bsm</groupId>
<artifactId>org.opennms.features.bsm.service.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.karaf.shell</groupId>
<artifactId>org.apache.karaf.shell.core</artifactId>
</dependency>

<!-- Test Dependencies -->


<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.bsm</artifactId>
<version>27.0.5</version>
</parent>
<groupId>org.opennms.features.bsm</groupId>
<artifactId>test-util</artifactId>
<packaging>jar</packaging>
<name>OpenNMS :: Features :: BSM :: Test Util</name>
<dependencies>
<dependency>
<groupId>org.opennms.features.bsm</groupId>
<artifactId>org.opennms.features.bsm.service.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.bsm</groupId>
<artifactId>org.opennms.features.bsm.persistence.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.bsm</groupId>
<artifactId>org.opennms.features.bsm.rest.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.rest</groupId>
<artifactId>org.opennms.features.rest.common</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao</artifactId>
</dependency>
<!-- Test dependencies -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.bsm</artifactId>
<version>27.0.5</version>
</parent>
<groupId>org.opennms.features.bsm</groupId>
<artifactId>vaadin-adminpage</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Features :: BSM :: Vaadin Adminpage</name>
<properties>

<bundle.symbolicName>org.opennms.features.bsm.vaadin.adminpage</bundle.symbolicName
>

<bundle.namespace>org.opennms.features.bsm.vaadin.adminpage</bundle.namespace>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<configuration>
<instructions>
<Bundle-SymbolicName>${bundle.symbolicName}</Bundle-
SymbolicName>
<Bundle-Version>${project.version}</Bundle-Version>
<Vaadin-Package-Version>1</Vaadin-Package-Version>
<Vaadin-
Widgetsets>org.opennms.vaadin.DefaultWidgetset</Vaadin-Widgetsets>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>vaadin</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.features.vaadin-components</groupId>
<artifactId>core</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.vaadin-components</groupId>
<artifactId>widgetset</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.topology</groupId>
<artifactId>org.opennms.features.topology.link</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.bsm</groupId>
<artifactId>org.opennms.features.bsm.service.api</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.compendium</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-web-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-mock</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrd-jrobin</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.db</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.collection</groupId>

<artifactId>org.opennms.features.collection.persistence.rrd</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.collection</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.api</artifactId>
<name>OpenNMS :: Features :: Collection :: API</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</groupId>
<artifactId>opennms-model</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.lib</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.sysprops</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.xml</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-jexl</artifactId>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.collection</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.client-rpc</artifactId>
<name>OpenNMS :: Features :: Collection :: RPC Client</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>
<Import-Package>
org.eclipse.persistence.internal.jaxb;resolution:=optional,
org.eclipse.persistence.internal.jaxb.many;resolution:=optional,
org.opennms.core.xml,
org.opennms.netmgt.collection.adapters,
org.opennms.core.network,
*
</Import-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.rpc</groupId>
<artifactId>org.opennms.core.ipc.rpc.xml</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.rpc</groupId>
<artifactId>org.opennms.core.ipc.rpc.utils</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core.snmp</groupId>
<artifactId>org.opennms.core.snmp.api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-config-jaxb</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.xml</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.collection</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.collectors</artifactId>
<name>OpenNMS :: Features :: Collection :: Collectors</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>
<!-- Don't export any packages, expose services only. -->
<Export-Package></Export-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-config</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.web</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jmx-dependencies</artifactId>
<scope>compile</scope>
<type>pom</type>
</dependency>

<!-- Test dependencies -->


<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-mock</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.collection</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.db</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.http</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.services</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-icmp-best</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrd-jrobin</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.client-rpc</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.rpc</groupId>
<artifactId>org.opennms.core.ipc.rpc.mock-impl</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.test-api</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.collection</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.core</artifactId>
<name>OpenNMS :: Features :: Collection :: Core</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</groupId>
<artifactId>opennms-config</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.rpc</groupId>
<artifactId>org.opennms.core.ipc.rpc.api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>org.opennms.config-dao.poll-outages.api</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.collection</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.persistence.osgi</artifactId>
<name>OpenNMS :: Features :: Collection :: OSGI Persistence</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.features.collection</groupId>
<artifactId>org.opennms.features.collection.api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-api</artifactId>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.collection</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.persistence.rrd</artifactId>
<name>OpenNMS :: Features :: Collection :: RRD Persistence</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.features.collection</groupId>
<artifactId>org.opennms.features.collection.api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrd-api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-api</artifactId>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.collection</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.persistence.tcp</artifactId>
<name>OpenNMS :: Features :: Collection :: TCP Persistence</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.features.collection</groupId>
<artifactId>org.opennms.features.collection.api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.sysprops</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrd-tcp</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.lib</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.dependencies</groupId>
<artifactId>netty-dependencies</artifactId>
<type>pom</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.jayway.awaitility</groupId>
<artifactId>awaitility</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.test-api</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>org.opennms.features</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.collection</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Features :: Collection</name>
<modules>
<module>api</module>
<module>client-rpc</module>
<module>collectors</module>
<module>core</module>
<module>persistence-rrd</module>
<module>persistence-tcp</module>
<module>persistence-osgi</module>
<module>shell-commands</module>
<module>snmp-collector</module>
<module>thresholding</module>
<module>test-api</module>
</modules>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.collection</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.sampler</artifactId>
<name>OpenNMS :: Features :: Collection :: Sampler</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.features.collection</groupId>
<artifactId>org.opennms.features.collection.api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrd-api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.netmgt.sample</groupId>
<artifactId>sample-api</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</project>
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/maven-v4_0_0.xsd">

<parent>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.collection</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.commands</artifactId>
<name>OpenNMS :: Features :: Collection :: Shell Commands</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>
<Karaf-Commands>*</Karaf-Commands>
</instructions>
</configuration>
</plugin>
</plugins>
</build>

<dependencies>
<dependency>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>io.dropwizard.metrics</groupId>
<artifactId>metrics-core</artifactId>
<version>${dropwizardMetricsVersion}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-api</artifactId>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</dependency>
<dependency>
<groupId>org.apache.karaf.shell</groupId>
<artifactId>org.apache.karaf.shell.core</artifactId>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.enterprise</artifactId>
<scope>provided</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.collection</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.snmp-collector</artifactId>
<name>OpenNMS :: Features :: SNMP Collector</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</groupId>
<artifactId>opennms-config</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.rpc</groupId>
<artifactId>org.opennms.core.ipc.rpc.api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-config-jaxb</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-model</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.collection</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.db</artifactId>
<scope>test</scope>
</dependency>

</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.collection</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.test-api</artifactId>
<name>OpenNMS :: Features :: Collection :: Test API</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.features.collection</groupId>
<artifactId>org.opennms.features.collection.core</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.client-rpc</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.persistence.rrd</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.rpc</groupId>
<artifactId>org.opennms.core.ipc.rpc.mock-impl</artifactId>
<version>${project.version}</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.lib</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.collection</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<scope>compile</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.thresholding</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>org.opennms.features.collection.thresholding.api</artifactId>
<name>OpenNMS :: Features :: Collection :: Thresholding :: API</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</groupId>
<artifactId>opennms-config</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.distributed</groupId>
<artifactId>org.opennms.features.distributed.kv-store.api</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.thresholding</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.thresholding.impl</artifactId>
<name>OpenNMS :: Features :: Collection :: Thresholding :: IMPL</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>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>test-jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-config</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.events</groupId>
<artifactId>org.opennms.features.events.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.events</groupId>
<artifactId>org.opennms.features.events.daemon</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrd-jrobin</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.api-layer</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.persistence.rrd</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.thresholding.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.snmp-collector</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.distributed</groupId>
<artifactId>org.opennms.features.distributed.kv-store.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.swrve</groupId>
<artifactId>rate-limited-logger</artifactId>
</dependency>
<dependency>
<groupId>de.ruedigermoeller</groupId>
<artifactId>fst</artifactId>
<version>${fstVersion}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.distributed</groupId>
<artifactId>org.opennms.features.distributed.kv-store.blob.no-op</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>org.opennms.config-dao.thresholding.impl</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>org.opennms.config-dao.thresholding.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>org.opennms.config-dao.poll-outages.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.rpc</groupId>
<artifactId>org.opennms.core.ipc.rpc.utils</artifactId>
<version>${project.version}</version>
</dependency>

<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.easymock</groupId>
<artifactId>easymock</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.tests</groupId>
<artifactId>org.opennms.tests.mock-elements</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.collection</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.db</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.services</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.rpc</groupId>
<artifactId>org.opennms.core.ipc.rpc.mock-impl</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.rpc</groupId>
<artifactId>org.opennms.core.ipc.rpc.jms-impl</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-mock</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>org.opennms.icmp.proxy.rpc-impl</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.snmp</groupId>
<artifactId>org.opennms.core.snmp.proxy.rpc-impl</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.sink</groupId>
<artifactId>org.opennms.core.ipc.sink.mock-impl</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>${mockitoVersion}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.distributed</groupId>
<artifactId>org.opennms.features.distributed.kv-store.blob.in-
memory</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.distributed</groupId>
<artifactId>org.opennms.features.distributed.kv-store.json.noop</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.distributed</groupId>
<artifactId>org.opennms.features.distributed.kv-
store.json.postgres</artifactId>
<scope>test</scope>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.distributed</groupId>
<artifactId>org.opennms.features.distributed.kv-
store.blob.postgres</artifactId>
<scope>test</scope>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.jayway.awaitility</groupId>
<artifactId>awaitility</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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>
<artifactId>org.opennms.features.collection.thresholding</artifactId>
<groupId>org.opennms.features.collection</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>org.opennms.features.collection.thresholding.itests</artifactId>
<dependencies>
<dependency>
<groupId>org.opennms.features.collection</groupId>

<artifactId>org.opennms.features.collection.thresholding.impl</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.collection</groupId>

<artifactId>org.opennms.features.collection.thresholding.impl</artifactId>
<version>${project.version}</version>
<scope>test</scope>
<type>test-jar</type>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-services</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.lib</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.db</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.services</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-mock</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.snmp</groupId>
<artifactId>org.opennms.core.snmp.proxy.rpc-impl</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.rpc</groupId>
<artifactId>org.opennms.core.ipc.rpc.mock-impl</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.collection</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>${mockitoVersion}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.sink</groupId>
<artifactId>org.opennms.core.ipc.sink.mock-impl</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.collection</groupId>

<artifactId>org.opennms.features.collection.thresholding.api</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.distributed</groupId>
<artifactId>org.opennms.features.distributed.kv-
store.blob.postgres</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.distributed</groupId>
<artifactId>org.opennms.features.distributed.kv-store.blob.in-
memory</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.collection</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.thresholding</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Features :: Collection :: Thresholding</name>
<modules>
<module>api</module>
<module>impl</module>
<module>itests</module>
<module>thresholding-shell</module>
</modules>
</project>
<?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>
<artifactId>org.opennms.features.collection.thresholding</artifactId>
<groupId>org.opennms.features.collection</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>org.opennms.features.collection.thresholding.shell</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Features :: Collection :: Thresholding :: Shell</name>
<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>
<Karaf-Commands>*</Karaf-Commands>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.apache.karaf.shell</groupId>
<artifactId>org.apache.karaf.shell.core</artifactId>
<version>${karafVersion}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.distributed</groupId>
<artifactId>org.opennms.features.distributed.kv-store.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>de.ruedigermoeller</groupId>
<artifactId>fst</artifactId>
<version>${fstVersion}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.collection</groupId>

<artifactId>org.opennms.features.collection.thresholding.impl</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</project>
<?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.features</groupId>
<artifactId>container-parent</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.container</groupId>
<artifactId>minion</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Features :: Container :: Minion</name>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<executions>
<execution>
<id>filter-resources</id>
<phase>generate-resources</phase>
<goals>
<goal>copy-resources</goal>
</goals>
<configuration>
<outputDirectory>${project.build.directory}/filtered-
resources</outputDirectory>
<resources>
<resource>
<directory>src/main/filtered-
resources</directory>
<filtering>true</filtering>
</resource>
</resources>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<id>unpack-dependencies</id>
<phase>process-resources</phase>
<goals>
<goal>unpack</goal>
</goals>
<configuration>
<outputDirectory>$
{project.build.directory}/unpacked</outputDirectory>
<artifactItems>
<artifactItem>
<groupId>org.opennms.container</groupId>

<artifactId>org.opennms.container.shared</artifactId>
<version>${project.version}</version>
<type>tar.gz</type>
</artifactItem>
</artifactItems>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<descriptors>
<descriptor>src/assembly/minion.xml</descriptor>
</descriptors>
<overrideUid>0</overrideUid>
<overrideGid>0</overrideGid>
<tarLongFileMode>posix</tarLongFileMode>
<appendAssemblyId>false</appendAssemblyId>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>

<dependencies>
<dependency>
<groupId>org.opennms.container</groupId>
<artifactId>org.opennms.container.shared</artifactId>
<version>${project.version}</version>
<type>tar.gz</type>
</dependency>
</dependencies>
</project>
<?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</groupId>
<artifactId>org.opennms.features</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features</groupId>
<artifactId>container-parent</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Features :: Container</name>
<modules>
<module>minion</module>
<module>sentinel</module>
</modules>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.karaf.tooling</groupId>
<artifactId>karaf-maven-plugin</artifactId>
<version>${karafVersion}</version>
<extensions>true</extensions>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>
<?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.features</groupId>
<artifactId>container-parent</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.container</groupId>
<artifactId>sentinel</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Features :: Container :: Sentinel</name>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<executions>
<execution>
<id>filter-resources</id>
<phase>generate-resources</phase>
<goals>
<goal>copy-resources</goal>
</goals>
<configuration>
<outputDirectory>${project.build.directory}/filtered-
resources</outputDirectory>
<resources>
<resource>
<directory>src/main/filtered-
resources</directory>
<filtering>true</filtering>
</resource>
</resources>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<id>unpack-dependencies</id>
<phase>process-resources</phase>
<goals>
<goal>unpack</goal>
</goals>
<configuration>
<outputDirectory>$
{project.build.directory}/unpacked</outputDirectory>
<artifactItems>
<artifactItem>
<groupId>org.opennms.container</groupId>

<artifactId>org.opennms.container.shared</artifactId>
<version>${project.version}</version>
<type>tar.gz</type>
</artifactItem>
</artifactItems>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<descriptors>
<descriptor>src/assembly/sentinel.xml</descriptor>
</descriptors>
<overrideUid>0</overrideUid>
<overrideGid>0</overrideGid>
<tarLongFileMode>posix</tarLongFileMode>
<appendAssemblyId>false</appendAssemblyId>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>

<dependencies>
<dependency>
<groupId>org.opennms.container</groupId>
<artifactId>org.opennms.container.shared</artifactId>
<version>${project.version}</version>
<type>tar.gz</type>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<artifactId>org.opennms.features</artifactId>
<groupId>org.opennms</groupId>
<version>27.0.5</version>
</parent>
<groupId>org.opennms.features</groupId>
<artifactId>datachoices</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Features :: Data Choices</name>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<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.apache.karaf.shell</groupId>
<artifactId>org.apache.karaf.shell.console</artifactId>
<version>${karafVersion}</version>
</dependency>
<dependency>
<groupId>org.apache.karaf.shell</groupId>
<artifactId>org.apache.karaf.shell.core</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.lib</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.web</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.codehaus.jackson</groupId>
<artifactId>jackson-core-asl</artifactId>
</dependency>
<dependency>
<groupId>org.codehaus.jackson</groupId>
<artifactId>jackson-mapper-asl</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-web-api</artifactId>
</dependency>
<dependency>
<groupId>org.freemarker</groupId>
<artifactId>freemarker</artifactId>
<version>${freemarkerVersion}</version>
</dependency>

<!-- Test Dependencies -->


<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>org.opennms.features</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.dhcpd</artifactId>
<name>OpenNMS :: Features :: DHCP Integration</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>
<Private-
Package>org.opennms.features.dhcpd.impl.*</Private-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>

<dependencies>
<dependency>
<groupId>com.helger</groupId>
<artifactId>dhcp4java</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.lib</artifactId>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>org.opennms.features</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.discovery</artifactId>
<name>OpenNMS :: Features :: Discovery</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</groupId>
<artifactId>opennms-config</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.camel</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.daemon</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.soa</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-provision-api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao</artifactId>
<scope>compile</scope>
</dependency>

<!-- Test dependencies -->


<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.db</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.services</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-mock</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrd-jrobin</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrdtool-api</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.persistence.rrd</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>org.opennms.icmp.proxy.rpc-impl</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.rpc</groupId>
<artifactId>org.opennms.core.ipc.rpc.mock-impl</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-icmp-best</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-detectorclient-rpc</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.dropwizard.metrics</groupId>
<artifactId>metrics-core</artifactId>
<version>${dropwizardMetricsVersion}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.events</groupId>
<artifactId>org.opennms.features.events.daemon</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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.features.distributed</groupId>
<artifactId>distributed-parent</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.distributed</groupId>
<artifactId>org.opennms.features.distributed.collection</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Features :: Distributed :: Collection</name>
<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>
<Private-Package></Private-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-config-api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-config</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>

</project>
<?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.features.distributed</groupId>
<artifactId>coordination-parent</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>coordination-api</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Features :: Distributed :: Coordination :: API</name>
<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.features.distributed.coordination.api</Export-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
</project>
<?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.features.distributed</groupId>
<artifactId>coordination-parent</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>coordination-common</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Features :: Distributed :: Coordination :: Common</name>
<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.features.distributed.coordination.common</Export-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms.features.distributed</groupId>
<artifactId>coordination-api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.integration.api</groupId>
<artifactId>api</artifactId>
<version>${opennmsApiVersion}</version>
</dependency>

<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.jayway.awaitility</groupId>
<artifactId>awaitility</artifactId>
<scope>test</scope>
</dependency>
</dependencies>

<repositories>
<repository>
<id>sonatype.org-snapshot</id>
<name>Sonatype OSS Snapshots Repository</name>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
<releases><enabled>false</enabled></releases>
<snapshots><enabled>true</enabled></snapshots>
</repository>
</repositories>
</project>
<?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.features.distributed</groupId>
<artifactId>distributed-parent</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>coordination-parent</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Features :: Distributed :: Coordination (Parent)</name>
<modules>
<module>api</module>
<module>zookeeper</module>
<module>shell</module>
<module>common</module>
</modules>
</project>
<?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.features.distributed</groupId>
<artifactId>coordination-parent</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>coordination-shell</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Features :: Distributed :: Coordination :: Shell</name>
<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>
<Karaf-Commands>*</Karaf-Commands>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms.features.distributed</groupId>
<artifactId>coordination-api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.distributed</groupId>
<artifactId>coordination-zookeeper</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.karaf.shell</groupId>
<artifactId>org.apache.karaf.shell.core</artifactId>
<version>${karafVersion}</version>
</dependency>
</dependencies>
</project>
<?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.features.distributed</groupId>
<artifactId>coordination-parent</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>coordination-zookeeper</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Features :: Distributed :: Coordination :: Zookeeper</name>
<properties>
<guava16.version>16.0.1</guava16.version>
<jackson.version>2.10.0</jackson.version>
<curator.version>2.9.1</curator.version>
</properties>
<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.features.distributed.coordination.zookeeper</Export-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms.features.distributed</groupId>
<artifactId>coordination-api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.distributed</groupId>
<artifactId>coordination-common</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.apache.curator</groupId>
<artifactId>curator-recipes</artifactId>
<version>${curator.version}</version>
<exclusions>
<exclusion>
<artifactId>log4j</artifactId>
<groupId>log4j</groupId>
</exclusion>
</exclusions>
</dependency>
<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.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.jayway.awaitility</groupId>
<artifactId>awaitility</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.curator</groupId>
<artifactId>curator-test</artifactId>
<version>${curator.version}</version>
<exclusions>
<exclusion>
<artifactId>log4j</artifactId>
<groupId>log4j</groupId>
</exclusion>
</exclusions>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?xml version="1.0"?>
<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.features.distributed</groupId>
<artifactId>core-parent</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>core-api</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Features :: Distributed :: Core :: API</name>
<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>
<Private-Package></Private-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
</project>
<?xml version="1.0"?>
<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.features.distributed</groupId>
<artifactId>core-parent</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>core-impl</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Features :: Distributed :: Core :: Impl.</name>
<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>
<Private-Package></Private-Package>
<Import-Package>*</Import-Package>
<Export-Package>org.opennms.distributed.core.impl</Export-
Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms.features.distributed</groupId>
<artifactId>core-api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.health</groupId>
<artifactId>org.opennms.core.health.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.scv</groupId>
<artifactId>org.opennms.features.scv.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.8.0</version>
</dependency>
</dependencies>
</project>
<?xml version="1.0"?>
<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.features.distributed</groupId>
<artifactId>core-parent</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>jms</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Features :: Distributed :: Core :: JMS</name>
<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.distributed.jms.impl</Export-
Package>
<Private-Package></Private-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>osgi.core</artifactId>
<version>${osgiVersion}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.scv</groupId>
<artifactId>org.opennms.features.scv.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.distributed</groupId>
<artifactId>core-api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core.health</groupId>
<artifactId>org.opennms.core.health.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.apache.activemq</groupId>
<artifactId>activemq-camel</artifactId>
<version>${activemqVersion}</version>
<exclusions>
<exclusion>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
</exclusion>
<exclusion>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
</exclusion>
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-aop</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-beans</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-expression</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-jms</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-tx</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
</project>
<?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.features.distributed</groupId>
<artifactId>distributed-parent</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>core-parent</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Features :: Distributed :: Core (Parent)</name>
<modules>
<module>api</module>
<module>impl</module>
<module>jms</module>
<module>shell</module>
</modules>
</project>
<?xml version="1.0"?>
<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.features.distributed</groupId>
<artifactId>core-parent</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>shell</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Features :: Distributed :: Core :: Shell</name>
<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>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms.features.distributed</groupId>
<artifactId>core-api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.apache.karaf.shell</groupId>
<artifactId>org.apache.karaf.shell.core</artifactId>
<version>${karafVersion}</version>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
<scope>provided</scope>
</dependency>
</dependencies>
</project>
<?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.features.distributed</groupId>
<artifactId>org.opennms.features.distributed.dao</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.distributed</groupId>
<artifactId>org.opennms.features.distributed.dao-api</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Features :: Distributed :: DAO :: API</name>
<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>
<Export-Package>
org.opennms.netmgt.dao.util,
org.opennms.netmgt.dao.api,
org.opennms.netmgt.enlinkd.persistence.api,
org.opennms.netmgt.enlinkd.service.api,
org.opennms.netmgt.topologies.service.api,
org.opennms.netmgt.bsm.persistence.api,
org.opennms.netmgt.bsm.persistence.api.functions,

org.opennms.netmgt.bsm.persistence.api.functions.reduce,
org.opennms.netmgt.bsm.persistence.api.functions.map,
org.opennms.netmgt.endpoints.grafana.api,
org.opennms.netmgt.endpoints.grafana.persistence.api,
org.opennms.netmgt.flows.classification.persistence.api
</Export-Package>
<Import-Package>
com.google.common.base,
com.google.common.collect,

javax.persistence,
javax.validation.constraints,

org.slf4j,

org.apache.commons.lang.builder,

javassist.util.proxy,

org.hibernate,
org.hibernate.criterion,
org.hibernate.proxy,

org.springframework.dao,
org.springframework.stereotype,

org.opennms.core.criteria,
org.opennms.core.utils,
org.opennms.core.xml,
org.opennms.features.reporting.model,
org.opennms.netmgt.enlinkd.persistence.api,
org.opennms.netmgt.enlinkd.service.api,
org.opennms.netmgt.topologies.service.api,
org.opennms.netmgt.bsm.persistence.api,
org.opennms.netmgt.bsm.persistence.api.functions.map,

org.opennms.netmgt.bsm.persistence.api.functions.reduce,
org.opennms.netmgt.config.ackd,
org.opennms.netmgt.config.api,
org.opennms.netmgt.config.javamail,
org.opennms.netmgt.config.microblog,
org.opennms.netmgt.config.provisiond,
org.opennms.netmgt.config.reportd,
org.opennms.netmgt.config.reporting,
org.opennms.netmgt.config.siteStatusViews,
org.opennms.netmgt.config.statsd.model,
org.opennms.netmgt.config.surveillanceViews,
org.opennms.netmgt.config.tl1d,
org.opennms.netmgt.dao.api,
org.opennms.netmgt.dao.util,
org.opennms.netmgt.endpoints.grafana.api,
org.opennms.netmgt.endpoints.grafana.persistence.api,
org.opennms.netmgt.events.api,

org.opennms.netmgt.flows.classification.persistence.api,
org.opennms.netmgt.model,
org.opennms.netmgt.model.alarm,
org.opennms.netmgt.model.minion,
org.opennms.netmgt.model.monitoringLocations,
org.opennms.netmgt.model.outage,
org.opennms.netmgt.xml.event
</Import-Package>
<Private-Package>
org.opennms.netmgt.dao.util,
org.opennms.netmgt.dao.api,
org.opennms.netmgt.enlinkd.persistence.api,
org.opennms.netmgt.enlinkd.service.api,
org.opennms.netmgt.topologies.service.api,
org.opennms.netmgt.bsm.persistence.api,

org.opennms.netmgt.bsm.persistence.api.functions.reduce,
org.opennms.netmgt.bsm.persistence.api.functions.map,
org.opennms.netmgt.endpoints.grafana.api,
org.opennms.netmgt.endpoints.grafana.persistence.api,
org.opennms.netmgt.flows.classification.persistence.api
</Private-Package>
</instructions>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>${maven.shade.plugin.version}</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<artifactSet>
<includes>
<include>org.opennms:opennms-dao-api</include>

<include>org.opennms.features.bsm:org.opennms.features.bsm.persistence.api</include
>

<include>org.opennms.features.flows.classification.persistence:org.opennms.features
.flows.classification.persistence.api</include>

<include>org.opennms.features.endpoints.grafana.persistence:org.opennms.features.en
dpoints.persistence.grafana.api</include>

<include>org.opennms.features.endpoints.grafana:org.opennms.features.endpoints.graf
ana.api</include>
</includes>
</artifactSet>

<createDependencyReducedPom>true</createDependencyReducedPom>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.bsm</groupId>
<artifactId>org.opennms.features.bsm.persistence.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.enlinkd</groupId>
<artifactId>org.opennms.features.enlinkd.persistence.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.enlinkd</groupId>
<artifactId>org.opennms.features.enlinkd.service.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.topologies</groupId>
<artifactId>org.opennms.features.topologies.service.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>

<groupId>org.opennms.features.flows.classification.persistence</groupId>

<artifactId>org.opennms.features.flows.classification.persistence.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.endpoints.grafana.persistence</groupId>

<artifactId>org.opennms.features.endpoints.grafana.persistence.api</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features.distributed</groupId>
<artifactId>org.opennms.features.distributed.dao</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.distributed</groupId>
<artifactId>org.opennms.features.distributed.dao-distributed</artifactId>
<name>OpenNMS :: Features :: Distributed :: DAO :: Distributed</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>
<!-- Don't export any packages because this is an implementation bundle
-->
<Export-Package></Export-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms.features.distributed</groupId>
<artifactId>core-api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.lib</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.camel</artifactId>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features.distributed</groupId>
<artifactId>org.opennms.features.distributed.dao</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.distributed</groupId>
<artifactId>org.opennms.features.distributed.dao-healthcheck</artifactId>
<name>OpenNMS :: Features :: Distributed :: DAO :: Health Check</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.core.health</groupId>
<artifactId>org.opennms.core.health.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>osgi.core</artifactId>
<version>${osgiVersion}</version>
<scope>provided</scope>
</dependency>
</dependencies>
</project>
<?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.features.distributed</groupId>
<artifactId>org.opennms.features.distributed.dao</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.distributed</groupId>
<artifactId>org.opennms.features.distributed.dao-impl</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Features :: Distributed :: DAO :: Impl</name>
<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>
<Spring-Context>META-INF/opennms/applicationContext-
osgi.xml,META-INF/opennms/applicationContext-shared.xml,META-INF/opennms/component-
dao.xml</Spring-Context>
<Export-Package>
org.opennms.netmgt.dao.support,
org.opennms.netmgt.dao.util,
org.opennms.netmgt.dao.stats,
org.opennms.netmgt.dao.api,
org.opennms.netmgt.enlinkd.persistence.api,
org.opennms.netmgt.enlinkd.service.api,
org.opennms.netmgt.topologies.service.api,
org.opennms.netmgt.bsm.persistence.api,
org.opennms.netmgt.bsm.persistence.api.functions,

org.opennms.netmgt.bsm.persistence.api.functions.reduce,
org.opennms.netmgt.bsm.persistence.api.functions.map,
org.opennms.netmgt.endpoints.grafana.api,
org.opennms.netmgt.endpoints.grafana.persistence.api,
org.opennms.netmgt.flows.classification.persistence.api
</Export-Package>
<Import-Package>
com.google.common.base,
com.google.common.cache,
com.google.common.collect,

org.aopalliance.aop,

javassist.util.proxy,

javax.sql,
javax.management,
javax.persistence,
javax.validation.constraints,
javax.xml.bind.annotation,
javax.xml.bind.annotation.adapters,

org.codehaus.jackson.annotate,
org.codehaus.jackson.map.annotate,

org.apache.commons.lang.builder,
org.apache.commons.io,
org.apache.commons.lang,
org.slf4j,

org.hibernate,
org.hibernate.classic,
org.hibernate.criterion,
org.hibernate.metadata,
org.hibernate.transform,
org.hibernate.type,
org.hibernate.annotations,
org.hibernate.proxy,
org.hibernate.validator;version="[4.1,4.2)",

org.hibernate.validator.constraints;version="[4.1,4.2)",

org.hibernate.validator.messageinterpolation;version="[4.1,4.2)",

org.hibernate.validator.resourceloading;version="[4.1,4.2)",
org.hibernate.validator.ap,
org.hibernate.validator.ap.checks,
org.hibernate.validator.ap.util,

org.opennms.core.criteria,
org.opennms.core.criteria.restrictions,
org.opennms.core.utils,
org.opennms.core.xml,
org.opennms.core.soa,
org.opennms.core.collections,
org.opennms.core.spring,
org.opennms.core.sysprops,

org.opennms.features.reporting.model,
org.opennms.netmgt.collection.api,
org.opennms.netmgt.collection.core,
org.opennms.netmgt.collection.support,
org.opennms.netmgt.config,
org.opennms.netmgt.config.ackd,
org.opennms.netmgt.config.api,
org.opennms.netmgt.config.collectd,
org.opennms.netmgt.config.datacollection,
org.opennms.netmgt.config.javamail,
org.opennms.netmgt.config.microblog,
org.opennms.netmgt.config.provisiond,
org.opennms.netmgt.config.reportd,
org.opennms.netmgt.config.reporting,
org.opennms.netmgt.config.siteStatusViews,
org.opennms.netmgt.config.statsd,
org.opennms.netmgt.config.statsd.model,
org.opennms.netmgt.config.surveillanceViews,
org.opennms.netmgt.config.tl1d,

org.opennms.netmgt.dao.api,
org.opennms.netmgt.dao.support,
org.opennms.netmgt.dao.util,
org.opennms.netmgt.events.api,
org.opennms.netmgt.events.api.annotations,
org.opennms.netmgt.filter,
org.opennms.netmgt.filter.api,
org.opennms.netmgt.measurements.api,
org.opennms.netmgt.measurements.model,
org.opennms.netmgt.model,
org.opennms.netmgt.model.alarm,
org.opennms.netmgt.model.minion,
org.opennms.netmgt.model.monitoringLocations,
org.opennms.netmgt.model.outage,
org.opennms.netmgt.poller,
org.opennms.netmgt.rrd,
org.opennms.netmgt.xml.event,

org.opennms.netmgt.enlinkd.persistence.api,
org.opennms.netmgt.enlinkd.service.api,
org.opennms.netmgt.topologies.service.api,

org.opennms.netmgt.bsm.persistence.api,
org.opennms.netmgt.bsm.persistence.api.functions.map,

org.opennms.netmgt.bsm.persistence.api.functions.reduce,
org.opennms.netmgt.endpoints.grafana.api,
org.opennms.netmgt.endpoints.grafana.persistence.api,

org.opennms.netmgt.flows.classification.persistence.api,

org.springframework.stereotype,
org.springframework.transaction,
org.springframework.transaction.annotation,
org.springframework.transaction.support,
org.springframework.beans,
org.springframework.beans.factory,
org.springframework.beans.factory.annotation,
org.springframework.beans.factory.config,
org.springframework.cache.concurrent,
org.springframework.cache.annotation,
org.springframework.cache.support,
org.springframework.core.io,
org.springframework.dao,
org.springframework.dao.support,
org.springframework.jmx.access,
org.springframework.orm,
org.springframework.orm.hibernate3,
org.springframework.orm.hibernate3.support,
org.springframework.orm.hibernate3.annotation,
org.springframework.util,
org.springframework.aop,
org.springframework.aop.aspectj,
org.springframework.aop.aspectj.annotation,
org.springframework.aop.aspectj.autoproxy,
org.springframework.aop.config,
org.springframework.aop.framework,
org.springframework.aop.framework.adapter,
org.springframework.aop.framework.autoproxy,
org.springframework.aop.framework.autoproxy.target,
org.springframework.aop.interceptor,
org.springframework.aop.scope,
org.springframework.aop.support,
org.springframework.aop.target,
org.springframework.context.annotation,
org.springframework.jdbc.core,
</Import-Package>
<Private-Package>
org.opennms.netmgt.enlinkd.persistence.impl,
org.opennms.netmgt.enlinkd.service.impl,
org.opennms.netmgt.topologies.service.impl,
org.opennms.netmgt.bsm.persistence.impl,
org.opennms.netmgt.dao.jmx,
org.opennms.netmgt.dao.hibernate,
org.opennms.netmgt.dao.jaxb,
org.opennms.netmgt.dao.jaxb.collector,
org.opennms.netmgt.dao.stats,
org.opennms.netmgt.endpoints.grafana.persistence.impl

org.opennms.netmgt.flows.classification.persistence.impl
</Private-Package>
</instructions>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>${maven.shade.plugin.version}</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<artifactSet>
<includes>

<include>org.opennms.features.distributed:org.opennms.features.distributed.dao-
api</include>
<include>org.opennms:opennms-dao</include>
<include>org.opennms.features.bsm:org.opennms.features.bsm.persistence.impl</includ
e>

<include>org.opennms.features.endpoints.grafana.persistence:org.opennms.features.en
dpoints.grafana.persistence.impl</include>

<include>org.opennms.features.flows.classification.persistence:org.opennms.features
.flows.classification.persistence.impl</include>
</includes>
</artifactSet>
<transformers>
<transformer
implementation="org.apache.maven.plugins.shade.resource.XmlAppendingTransformer">
<resource>META-INF/opennms/applicationContext-
dao.xml</resource>
<resource>META-INF/opennms/applicationContext-
osgi.xml</resource>
<resource>META-INF/opennms/component-
dao.xml</resource>
</transformer>
</transformers>

<createDependencyReducedPom>true</createDependencyReducedPom>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms.features.distributed</groupId>
<artifactId>org.opennms.features.distributed.dao-api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.bsm</groupId>
<artifactId>org.opennms.features.bsm.persistence.impl</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.enlinkd</groupId>
<artifactId>org.opennms.features.enlinkd.persistence.impl</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.enlinkd</groupId>
<artifactId>org.opennms.features.enlinkd.service.impl</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.topologies</groupId>
<artifactId>org.opennms.features.topologies.service.impl</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>

<groupId>org.opennms.features.flows.classification.persistence</groupId>

<artifactId>org.opennms.features.flows.classification.persistence.impl</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.endpoints.grafana.persistence</groupId>

<artifactId>org.opennms.features.endpoints.grafana.persistence.impl</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</project>
<?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.features.distributed</groupId>
<artifactId>distributed-parent</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>org.opennms.features.distributed.dao</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Features :: Distributed :: Dao (Parent)</name>
<modules>
<module>api</module>
<module>distributed</module>
<module>healthcheck</module>
<module>impl</module>
<module>shell</module>
<module>test</module>
</modules>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features.distributed</groupId>
<artifactId>org.opennms.features.distributed.dao</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.distributed</groupId>
<artifactId>org.opennms.features.distributed.dao-shell</artifactId>
<name>OpenNMS :: Features :: Distributed :: DAO :: 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>
<!-- Don't export any packages because this is an
implementation bundle -->
<Export-Package></Export-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>osgi.core</artifactId>
<version>${osgiVersion}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.karaf.shell</groupId>
<artifactId>org.apache.karaf.shell.core</artifactId>
<version>${karafVersion}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-api</artifactId>
</dependency>
</dependencies>
</project>
<?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.features.distributed</groupId>
<artifactId>org.opennms.features.distributed.dao</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.distributed</groupId>
<artifactId>org.opennms.features.distributed.dao-test</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Features :: Distributed :: DAO :: Test</name>
<build>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<instructions>
<DynamicImport-Package>*</DynamicImport-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms.features.distributed</groupId>
<artifactId>org.opennms.features.distributed.dao-api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
<version>${osgiVersion}</version>
</dependency>
</dependencies>
</project>
<?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.features.distributed</groupId>
<artifactId>distributed-parent</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.distributed</groupId>
<artifactId>org.opennms.features.distributed.datasource</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Features :: Distributed :: DataSource</name>
<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>
<Private-Package></Private-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.db</artifactId>
</dependency>
</dependencies>

</project>
<?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>
<artifactId>org.opennms.features.distributed.cassandra</artifactId>
<groupId>org.opennms.features.distributed</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>org.opennms.features.distributed.cassandra.api</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Features :: Distributed :: Cassandra :: API</name>
<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>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>com.datastax.cassandra</groupId>
<artifactId>cassandra-driver-core</artifactId>
<version>${cassandraVersion}</version>
</dependency>
</dependencies>
</project>
<?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>
<artifactId>org.opennms.features.distributed.cassandra</artifactId>
<groupId>org.opennms.features.distributed</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>org.opennms.features.distributed.cassandra.newts-impl</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Features :: Distributed :: Cassandra :: Newts Impl</name>
<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>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms.features.distributed</groupId>
<artifactId>org.opennms.features.distributed.cassandra.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>newts-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.newts</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</project>
<?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>
<artifactId>distributed-parent</artifactId>
<groupId>org.opennms.features.distributed</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>org.opennms.features.distributed.cassandra</artifactId>
<packaging>pom</packaging>
<modules>
<module>cassandra-api</module>
<module>newts-impl</module>
</modules>
</project>
<?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>
<artifactId>org.opennms.features.distributed.kv-store</artifactId>
<groupId>org.opennms.features.distributed</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>org.opennms.features.distributed.kv-store.api</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Features :: Distributed :: Key Value Store :: API</name>
<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>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</dependency>
</dependencies>
</project>
<?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>
<artifactId>org.opennms.features.distributed.kv-store.blob</artifactId>
<groupId>org.opennms.features.distributed</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>org.opennms.features.distributed.kv-store.blob.itests</artifactId>
<dependencies>
<dependency>
<groupId>org.opennms.features.distributed</groupId>
<artifactId>org.opennms.features.distributed.kv-store.postgres-
shared</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.distributed</groupId>
<artifactId>org.opennms.features.distributed.kv-
store.blob.postgres</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.distributed</groupId>
<artifactId>org.opennms.features.distributed.kv-
store.blob.cassandra</artifactId>
<version>${project.version}</version>
</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.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.lib</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.db</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.services</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrd-jrobin</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.collection</groupId>

<artifactId>org.opennms.features.collection.persistence.rrd</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.cassandraunit</groupId>
<artifactId>cassandra-unit</artifactId>
<version>${cassandraUnitVersion}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.newts</groupId>
<artifactId>newts-cassandra-common</artifactId>
<version>${newtsVersion}</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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>
<artifactId>org.opennms.features.distributed.kv-store.blob</artifactId>
<groupId>org.opennms.features.distributed</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>org.opennms.features.distributed.kv-store.blob.shell</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Features :: Distributed :: Key Value Store :: Blob ::
Shell</name>
<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>
<Karaf-Commands>*</Karaf-Commands>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms.features.distributed</groupId>
<artifactId>org.opennms.features.distributed.kv-store.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.apache.karaf.shell</groupId>
<artifactId>org.apache.karaf.shell.core</artifactId>
<version>${karafVersion}</version>
</dependency>
<dependency>
<groupId>io.dropwizard.metrics</groupId>
<artifactId>metrics-core</artifactId>
<version>${dropwizardMetricsVersion}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>io.github.resilience4j</groupId>
<artifactId>resilience4j-retry</artifactId>
<version>${resilience4jVersion}</version>
</dependency>
</dependencies>
</project>
<?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>
<artifactId>org.opennms.features.distributed.kv-store.blob</artifactId>
<groupId>org.opennms.features.distributed</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>org.opennms.features.distributed.kv-
store.blob.cassandra</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Features :: Distributed :: Key Value Store :: Blob ::
Cassandra</name>
<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>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms.features.distributed</groupId>
<artifactId>org.opennms.features.distributed.kv-store.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.distributed</groupId>
<artifactId>org.opennms.features.distributed.cassandra.api</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</project>
<?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>
<artifactId>org.opennms.features.distributed.kv-store.blob</artifactId>
<groupId>org.opennms.features.distributed</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>org.opennms.features.distributed.kv-store.blob.in-
memory</artifactId>
<packaging>jar</packaging>
<name>OpenNMS :: Features :: Distributed :: Key Value Store :: Blob :: In-
Memory</name>
<dependencies>
<dependency>
<groupId>org.opennms.features.distributed</groupId>
<artifactId>org.opennms.features.distributed.kv-store.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.jayway.awaitility</groupId>
<artifactId>awaitility</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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>
<artifactId>org.opennms.features.distributed.kv-store.blob</artifactId>
<groupId>org.opennms.features.distributed</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>org.opennms.features.distributed.kv-store.blob.no-op</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Features :: Distributed :: Key Value Store :: Blob :: No-
Op</name>
<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>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms.features.distributed</groupId>
<artifactId>org.opennms.features.distributed.kv-store.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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>
<artifactId>org.opennms.features.distributed.kv-store</artifactId>
<groupId>org.opennms.features.distributed</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>org.opennms.features.distributed.kv-store.blob</artifactId>
<packaging>pom</packaging>
<modules>
<module>in-memory</module>
<module>blob-shell</module>
<module>no-op</module>
<module>cassandra</module>
<module>postgres-impl</module>
<module>blob-itests</module>
</modules>
</project>
<?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>
<artifactId>org.opennms.features.distributed.kv-store.blob</artifactId>
<groupId>org.opennms.features.distributed</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<packaging>bundle</packaging>
<artifactId>org.opennms.features.distributed.kv-
store.blob.postgres</artifactId>
<name>OpenNMS :: Features :: Distributed :: Key Value Store :: Blob ::
Postgres</name>
<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>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms.features.distributed</groupId>
<artifactId>org.opennms.features.distributed.kv-store.postgres-
shared</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</project>
<?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>
<artifactId>org.opennms.features.distributed.kv-store.json</artifactId>
<groupId>org.opennms.features.distributed</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>org.opennms.features.distributed.kv-store.json.shell</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Features :: Distributed :: Key Value Store :: JSON ::
Shell</name>
<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>
<Karaf-Commands>*</Karaf-Commands>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms.features.distributed</groupId>
<artifactId>org.opennms.features.distributed.kv-store.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.apache.karaf.shell</groupId>
<artifactId>org.apache.karaf.shell.core</artifactId>
<version>${karafVersion}</version>
</dependency>
</dependencies>

</project>
<?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>
<artifactId>org.opennms.features.distributed.kv-store.json</artifactId>
<groupId>org.opennms.features.distributed</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>org.opennms.features.distributed.kv-store.json.noop</artifactId>
<name>OpenNMS :: Features :: Distributed :: Key Value Store :: JSON :: No-
Op</name>
<dependencies>
<dependency>
<groupId>org.opennms.features.distributed</groupId>
<artifactId>org.opennms.features.distributed.kv-store.api</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</project>
<?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>
<artifactId>org.opennms.features.distributed.kv-store</artifactId>
<groupId>org.opennms.features.distributed</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>org.opennms.features.distributed.kv-store.json</artifactId>
<packaging>pom</packaging>
<modules>
<module>postgres</module>
<module>json-shell</module>
<module>noop</module>
</modules>
</project>
<?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>
<artifactId>org.opennms.features.distributed.kv-store.json</artifactId>
<groupId>org.opennms.features.distributed</groupId>
<version>27.0.5</version>
</parent>
<artifactId>org.opennms.features.distributed.kv-
store.json.postgres</artifactId>
<modelVersion>4.0.0</modelVersion>
<packaging>bundle</packaging>
<name>OpenNMS :: Features :: Distributed :: Key Value Store :: JSON ::
Postgres</name>
<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>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms.features.distributed</groupId>
<artifactId>org.opennms.features.distributed.kv-store.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.distributed</groupId>
<artifactId>org.opennms.features.distributed.kv-store.postgres-
shared</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.lib</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.db</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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>
<artifactId>distributed-parent</artifactId>
<groupId>org.opennms.features.distributed</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>

<artifactId>org.opennms.features.distributed.kv-store</artifactId>
<packaging>pom</packaging>
<modules>
<module>api</module>
<module>blob</module>
<module>json</module>
<module>postgres-shared</module>
</modules>
</project>
<?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>
<artifactId>org.opennms.features.distributed.kv-store</artifactId>
<groupId>org.opennms.features.distributed</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>org.opennms.features.distributed.kv-store.postgres-
shared</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Features :: Distributed :: Key Value Store :: Postgres ::
Shared</name>
<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>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms.features.distributed</groupId>
<artifactId>org.opennms.features.distributed.kv-store.api</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</project>
<?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.features.distributed</groupId>
<artifactId>distributed-parent</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>

<groupId>org.opennms.features.distributed</groupId>
<artifactId>org.opennms.features.distributed.opennms-identity</artifactId>
<name>OpenNMS :: Features :: OpenNMS Identity</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.features.distributed</groupId>
<artifactId>core-api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.lib</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>

</project>
<?xml version="1.0" encoding="UTF-8"?>
<project
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="
http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd
">
<parent>
<groupId>org.opennms</groupId>
<artifactId>org.opennms.features</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.distributed</groupId>
<artifactId>distributed-parent</artifactId>
<name>OpenNMS :: Features :: Distributed (Parent)</name>
<description>All features shared by distributed containers such as minion or
sentinel</description>
<packaging>pom</packaging>
<modules>
<module>collection</module>
<module>core</module>
<module>dao</module>
<module>datasource</module>
<module>coordination</module>
<module>opennms-identity</module>
<module>service-registry</module>
<module>kv-store</module>
<module>distributed-cassandra</module>
</modules>
</project>
<?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.features.distributed</groupId>
<artifactId>distributed-parent</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.distributed</groupId>
<artifactId>org.opennms.features.distributed.serviceregistry</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Features :: Distributed :: Service Registry</name>
<description>Bundle to bootstrap the Service Registry to make onmsgi:* work in
sentinel</description>
<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>
<Spring-Context>META-INF/opennms/applicationContext-
osgi.xml</Spring-Context>
<Private-Package></Private-Package>
<Import-Package>
*,
org.opennms.core.soa,
org.opennms.core.soa.config,
org.opennms.core.soa.filter,
org.opennms.core.soa.support
</Import-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-config-api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-config</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>

</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.dnsresolver</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.dnsresolver</groupId>
<artifactId>org.opennms.features.dnsresolver.api</artifactId>
<name>OpenNMS :: Features :: DNS Resolver :: API</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>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.dnsresolver</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.dnsresolver</groupId>
<artifactId>org.opennms.features.dnsresolver.netty</artifactId>
<name>OpenNMS :: Features :: DNS Resolver :: Netty</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.features.dnsresolver</groupId>
<artifactId>org.opennms.features.dnsresolver.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core.health</groupId>
<artifactId>org.opennms.core.health.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.lib</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>dnsjava-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-all</artifactId>
<version>${netty4Version}</version>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-resolver-dns</artifactId>
<version>${netty4Version}</version>
</dependency>
<dependency>
<groupId>io.github.resilience4j</groupId>
<artifactId>resilience4j-circuitbreaker</artifactId>
<version>${resilience4jVersion}</version>
</dependency>
<dependency>
<groupId>io.github.resilience4j</groupId>
<artifactId>resilience4j-bulkhead</artifactId>
<version>${resilience4jVersion}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-model</artifactId>
</dependency>
<dependency>
<groupId>io.dropwizard.metrics</groupId>
<artifactId>metrics-core</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.events</groupId>
<artifactId>org.opennms.features.events.api</artifactId>
</dependency>
<dependency>
<groupId>com.github.ben-manes.caffeine</groupId>
<artifactId>caffeine</artifactId>
</dependency>

<!-- Test -->


<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.dependencies</groupId>
<artifactId>spring-test-dependencies</artifactId>
<type>pom</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.dns</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>org.opennms.features</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.dnsresolver</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Features :: DNS Resolver</name>
<modules>
<module>api</module>
<module>netty</module>
<module>shell</module>
</modules>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.dnsresolver</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.dnsresolver</groupId>
<artifactId>org.opennms.features.dnsresolver.shell</artifactId>
<name>OpenNMS :: Features :: DNS Resolver :: 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.features.dnsresolver</groupId>
<artifactId>org.opennms.features.dnsresolver.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.apache.karaf.shell</groupId>
<artifactId>org.apache.karaf.shell.core</artifactId>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.enterprise</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</dependency>
<dependency>
<groupId>io.dropwizard.metrics</groupId>
<artifactId>metrics-core</artifactId>
</dependency>
</dependencies>

</project>
<?xml version="1.0" encoding="UTF-8"?>
<project
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="
http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd
">

<parent>
<groupId>org.opennms</groupId>
<artifactId>org.opennms.features</artifactId>
<version>27.0.5</version>
</parent>

<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.eif-adapter</artifactId>

<name>OpenNMS :: Features :: EIF Adapter</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>
</instructions>
</configuration>
</plugin>
</plugins>
</build>

<dependencies>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.lib</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.camel</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-model</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao</artifactId>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.camel</groupId>
<artifactId>camel-netty4</artifactId>
<version>${camelVersion}</version>
<exclusions>
<exclusion>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.jayway.awaitility</groupId>
<artifactId>awaitility</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.lib</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.camel</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-mock</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.services</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-config</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features.endpoints</groupId>
<artifactId>org.opennms.features.endpoints.grafana</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.endpoints.grafana</groupId>
<artifactId>org.opennms.features.endpoints.grafana.api</artifactId>
<name>OpenNMS :: Features :: Endpoints :: Grafana :: API</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</groupId>
<artifactId>opennms-dao-api</artifactId>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features.endpoints</groupId>
<artifactId>org.opennms.features.endpoints.grafana</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.endpoints.grafana</groupId>
<artifactId>org.opennms.features.endpoints.grafana.client</artifactId>
<name>OpenNMS :: Features :: Endpoints :: Grafana :: Client</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>
<Embed-Dependency>*;artifactId=okhttp|gson|okio</Embed-Dependency>
<Embed-Transitive>true</Embed-Transitive>
<Import-Package>
android.os;resolution:=optional,
android.util;resolution:=optional,
org.conscrypt;resolution:=optional,
*
</Import-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms.features.endpoints.grafana</groupId>
<artifactId>org.opennms.features.endpoints.grafana.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.squareup.okhttp3</groupId>
<artifactId>okhttp</artifactId>
<version>${okhttpVersion}</version>
</dependency>
<dependency>
<groupId>com.squareup.okio</groupId>
<artifactId>okio</artifactId>
<version>${okioVersion}</version>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>${gsonVersion}</version>
</dependency>

<!-- Test Dependencies -->


<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest</artifactId>
<version>2.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.github.tomakehurst</groupId>
<artifactId>wiremock-jre8</artifactId>
<version>2.23.2</version>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features.endpoints.grafana</groupId>
<artifactId>org.opennms.features.endpoints.grafana.persistence</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.endpoints.grafana.persistence</groupId>
<artifactId>org.opennms.features.endpoints.grafana.persistence.api</artifactId>
<name>OpenNMS :: Features :: Endpoints :: Grafana :: Persistence :: API</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.features.endpoints.grafana</groupId>
<artifactId>org.opennms.features.endpoints.grafana.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-api</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features.endpoints.grafana</groupId>
<artifactId>org.opennms.features.endpoints.grafana.persistence</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.endpoints.grafana.persistence</groupId>
<artifactId>org.opennms.features.endpoints.grafana.persistence.impl</artifactId>
<name>OpenNMS :: Features :: Endpoints :: Grafana :: Persistence :: Impl</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.features.endpoints.grafana.persistence</groupId>
<artifactId>org.opennms.features.endpoints.grafana.persistence.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao</artifactId>
</dependency>
<!-- Test dependencies -->
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-library</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-config</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrd-jrobin</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.persistence.rrd</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.services</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.db</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-mock</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features.endpoints</groupId>
<artifactId>org.opennms.features.endpoints.grafana</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.endpoints.grafana</groupId>
<artifactId>org.opennms.features.endpoints.grafana.persistence</artifactId>
<name>OpenNMS :: Features :: Endpoints :: Grafana :: Persistence (Parent)</name>
<packaging>pom</packaging>
<modules>
<module>api</module>
<module>impl</module>
</modules>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.endpoints</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.endpoints</groupId>
<artifactId>org.opennms.features.endpoints.grafana</artifactId>
<name>OpenNMS :: Features :: Endpoints :: Grafana (Parent)</name>
<packaging>pom</packaging>
<modules>
<module>api</module>
<module>client</module>
<module>persistence</module>
<module>rest</module>
<module>service</module>
</modules>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features.endpoints</groupId>
<artifactId>org.opennms.features.endpoints.grafana</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.endpoints.grafana</groupId>
<artifactId>org.opennms.features.endpoints.grafana.rest</artifactId>
<name>OpenNMS :: Features :: Endpoints :: Grafana :: Rest</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.features.endpoints.grafana</groupId>
<artifactId>org.opennms.features.endpoints.grafana.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-web-api</artifactId>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features.endpoints</groupId>
<artifactId>org.opennms.features.endpoints.grafana</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.endpoints.grafana</groupId>
<artifactId>org.opennms.features.endpoints.grafana.service</artifactId>
<name>OpenNMS :: Features :: Endpoints :: Grafana :: Service</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.features.endpoints.grafana.persistence</groupId>

<artifactId>org.opennms.features.endpoints.grafana.persistence.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.easymock</groupId>
<artifactId>easymock</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>org.opennms.features</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.endpoints</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Features :: Endpoints</name>
<modules>
<module>grafana</module>
</modules>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features.enlinkd</groupId>
<artifactId>org.opennms.features.enlinkd.adapters.collectors</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>org.opennms.features.enlinkd.adapters.collectors.bridge</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Features :: Enlinkd :: Adapters :: Collectors :: Bridge</name>
<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.core</groupId>
<artifactId>org.opennms.core.daemon</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.enlinkd</groupId>
<artifactId>org.opennms.features.enlinkd.service.api</artifactId>
</dependency>

<dependency>
<groupId>org.opennms.features.enlinkd</groupId>
<artifactId>org.opennms.features.enlinkd.adapters.common</artifactId>
<version>${project.version}</version>
</dependency>
<!-- Test Dependencies -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features.enlinkd</groupId>
<artifactId>org.opennms.features.enlinkd.adapters.collectors</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>org.opennms.features.enlinkd.adapters.collectors.cdp</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Features :: Enlinkd :: Adapters :: Collectors :: CDP</name>
<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.core</groupId>
<artifactId>org.opennms.core.daemon</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.enlinkd</groupId>
<artifactId>org.opennms.features.enlinkd.service.api</artifactId>
</dependency>

<dependency>
<groupId>org.opennms.features.enlinkd</groupId>
<artifactId>org.opennms.features.enlinkd.adapters.common</artifactId>
<version>${project.version}</version>
</dependency>
<!-- Test Dependencies -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features.enlinkd</groupId>
<artifactId>org.opennms.features.enlinkd.adapters.collectors</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>

<artifactId>org.opennms.features.enlinkd.adapters.collectors.ipnettomedia</artifact
Id>
<packaging>bundle</packaging>
<name>OpenNMS :: Features :: Enlinkd :: Adapters :: Collectors :: IP NET TO
MEDIA</name>
<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.core</groupId>
<artifactId>org.opennms.core.daemon</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.enlinkd</groupId>
<artifactId>org.opennms.features.enlinkd.service.api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.enlinkd</groupId>
<artifactId>org.opennms.features.enlinkd.adapters.common</artifactId>
<version>${project.version}</version>
</dependency>

<!-- Test Dependencies -->


<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features.enlinkd</groupId>
<artifactId>org.opennms.features.enlinkd.adapters.collectors</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>org.opennms.features.enlinkd.adapters.collectors.isis</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Features :: Enlinkd :: Adapters :: Collectors :: IS-IS</name>
<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.core</groupId>
<artifactId>org.opennms.core.daemon</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.enlinkd</groupId>
<artifactId>org.opennms.features.enlinkd.service.api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.enlinkd</groupId>
<artifactId>org.opennms.features.enlinkd.adapters.common</artifactId>
<version>${project.version}</version>
</dependency>

<!-- Test Dependencies -->


<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features.enlinkd</groupId>
<artifactId>org.opennms.features.enlinkd.adapters.collectors</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>org.opennms.features.enlinkd.adapters.collectors.lldp</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Features :: Enlinkd :: Adapters :: Collectors :: LLDP</name>
<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.core</groupId>
<artifactId>org.opennms.core.daemon</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.enlinkd</groupId>
<artifactId>org.opennms.features.enlinkd.service.api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.enlinkd</groupId>
<artifactId>org.opennms.features.enlinkd.adapters.common</artifactId>
<version>${project.version}</version>
</dependency>

<!-- Test Dependencies -->


<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features.enlinkd</groupId>
<artifactId>org.opennms.features.enlinkd.adapters.collectors</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>org.opennms.features.enlinkd.adapters.collectors.ospf</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Features :: Enlinkd :: Adapters :: Collectors :: OSPF</name>
<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.core</groupId>
<artifactId>org.opennms.core.daemon</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.enlinkd</groupId>
<artifactId>org.opennms.features.enlinkd.service.api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.enlinkd</groupId>
<artifactId>org.opennms.features.enlinkd.adapters.common</artifactId>
<version>${project.version}</version>
</dependency>

<!-- Test Dependencies -->


<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features.enlinkd</groupId>
<artifactId>org.opennms.features.enlinkd.adapters</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>org.opennms.features.enlinkd.adapters.collectors</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Features :: Enlinkd :: Adapters :: Collectors</name>
<modules>
<module>bridge</module>
<module>cdp</module>
<module>ipnettomedia</module>
<module>isis</module>
<module>lldp</module>
<module>ospf</module>
</modules>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features.enlinkd</groupId>
<artifactId>org.opennms.features.enlinkd.adapters</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>org.opennms.features.enlinkd.adapters.common</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Features :: Enlinkd :: Adapters :: Common</name>
<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.core</groupId>
<artifactId>org.opennms.core.daemon</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.enlinkd</groupId>
<artifactId>org.opennms.features.enlinkd.service.api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.topologies</groupId>
<artifactId>org.opennms.features.topologies.service.api</artifactId>
<version>${project.version}</version>
</dependency>

<!-- Test Dependencies -->


<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.enlinkd</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.enlinkd</groupId>
<artifactId>org.opennms.features.enlinkd.adapters</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Features :: Enlinkd :: Adapters</name>
<modules>
<module>common</module>
<module>collectors</module>
<module>updaters</module>
</modules>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features.enlinkd</groupId>
<artifactId>org.opennms.features.enlinkd.adapters.updaters</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>org.opennms.features.enlinkd.adapters.updaters.bridge</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Features :: Enlinkd :: Adapters :: Updaters :: Bridge</name>
<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.features.enlinkd</groupId>
<artifactId>org.opennms.features.enlinkd.service.api</artifactId>
</dependency>

<dependency>
<groupId>org.opennms.features.enlinkd</groupId>
<artifactId>org.opennms.features.enlinkd.adapters.common</artifactId>
<version>${project.version}</version>
</dependency>
<!-- Test Dependencies -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features.enlinkd</groupId>
<artifactId>org.opennms.features.enlinkd.adapters.updaters</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>org.opennms.features.enlinkd.adapters.updaters.cdp</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Features :: Enlinkd :: Adapters :: Updaters :: CDP</name>
<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.features.enlinkd</groupId>
<artifactId>org.opennms.features.enlinkd.service.api</artifactId>
</dependency>

<dependency>
<groupId>org.opennms.features.enlinkd</groupId>
<artifactId>org.opennms.features.enlinkd.adapters.common</artifactId>
<version>${project.version}</version>
</dependency>
<!-- Test Dependencies -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features.enlinkd</groupId>
<artifactId>org.opennms.features.enlinkd.adapters.updaters</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>org.opennms.features.enlinkd.adapters.updaters.isis</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Features :: Enlinkd :: Adapters :: Updaters :: IS-IS</name>
<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.features.enlinkd</groupId>
<artifactId>org.opennms.features.enlinkd.service.api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.enlinkd</groupId>
<artifactId>org.opennms.features.enlinkd.adapters.common</artifactId>
<version>${project.version}</version>
</dependency>
<!-- Test Dependencies -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features.enlinkd</groupId>
<artifactId>org.opennms.features.enlinkd.adapters.updaters</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>org.opennms.features.enlinkd.adapters.updaters.lldp</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Features :: Enlinkd :: Adapters :: Updaters :: LLDP</name>
<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.features.enlinkd</groupId>
<artifactId>org.opennms.features.enlinkd.service.api</artifactId>
</dependency>

<dependency>
<groupId>org.opennms.features.enlinkd</groupId>
<artifactId>org.opennms.features.enlinkd.adapters.common</artifactId>
<version>${project.version}</version>
</dependency>
<!-- Test Dependencies -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features.enlinkd</groupId>
<artifactId>org.opennms.features.enlinkd.adapters.updaters</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>org.opennms.features.enlinkd.adapters.updaters.nodes</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Features :: Enlinkd :: Adapters :: Updaters :: Nodes</name>
<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.features.enlinkd</groupId>
<artifactId>org.opennms.features.enlinkd.service.api</artifactId>
</dependency>

<dependency>
<groupId>org.opennms.features.enlinkd</groupId>
<artifactId>org.opennms.features.enlinkd.adapters.common</artifactId>
<version>${project.version}</version>
</dependency>
<!-- Test Dependencies -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-config</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.enlinkd</groupId>
<artifactId>org.opennms.features.enlinkd.service.impl</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.enlinkd</groupId>
<artifactId>org.opennms.features.enlinkd.persistence.impl</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.topologies</groupId>
<artifactId>org.opennms.features.topologies.service.impl</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.events</groupId>
<artifactId>org.opennms.features.events.daemon</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrd-jrobin</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.persistence.rrd</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.services</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.db</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-mock</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>
<exclusions>
<exclusion>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-core</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features.enlinkd</groupId>
<artifactId>org.opennms.features.enlinkd.adapters.updaters</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>org.opennms.features.enlinkd.adapters.updaters.ospf</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Features :: Enlinkd :: Adapters :: Updaters :: OSPF</name>
<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.features.enlinkd</groupId>
<artifactId>org.opennms.features.enlinkd.service.api</artifactId>
</dependency>

<dependency>
<groupId>org.opennms.features.enlinkd</groupId>
<artifactId>org.opennms.features.enlinkd.adapters.common</artifactId>
<version>${project.version}</version>
</dependency>
<!-- Test Dependencies -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features.enlinkd</groupId>
<artifactId>org.opennms.features.enlinkd.adapters</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>org.opennms.features.enlinkd.adapters.updaters</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Features :: Enlinkd :: Adapters :: Updaters</name>
<modules>
<module>cdp</module>
<module>lldp</module>
<module>ospf</module>
<module>isis</module>
<module>bridge</module>
<module>nodes</module>
</modules>
</project>
<?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>
<artifactId>org.opennms.features.enlinkd</artifactId>
<groupId>org.opennms.features</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.enlinkd</groupId>
<artifactId>org.opennms.features.enlinkd.api</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Features :: Enlinkd :: API</name>
<build>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<instructions>
<Export-Package>org.opennms.netmgt.enlinkd.api;version="$
{project.version}"</Export-Package>
<Bundle-RequiredExecutionEnvironment>JavaSE-1.8</Bundle-
RequiredExecutionEnvironment>
<Bundle-SymbolicName>${project.artifactId}</Bundle-
SymbolicName>
<Bundle-Version>${project.version}</Bundle-Version>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.enlinkd</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.enlinkd</groupId>
<artifactId>org.opennms.features.enlinkd.config</artifactId>
<name>OpenNMS :: Features :: Enlinkd :: 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>
<!-- No need to generate xsds everytime, use pre-compiled one
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>jaxb2-maven-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<id>schemagen</id>
<goals>
<goal>schemagen</goal>
</goals>
</execution>
</executions>
<configuration>
<transformSchemas>
<transformSchema>
<uri>http://xmlns.opennms.org/xsd/config/enlinkd-config</uri>
<toFile>enlinkd-config.xsd</toFile>
</transformSchema>
</transformSchemas>
<outputDirectory>${project.build.directory}/xsds</outputDirectory>
<workDirectory>${project.build.directory}/jaxb2-work</workDirectory>
<includes>
<include>org/opennms/netmgt/enlinkd/config/model/*.java</include>
</includes>
<verbose>true</verbose>
</configuration>
</plugin> -->
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<descriptors>
<descriptor>src/assembly/xsds.xml</descriptor>
</descriptors>
<overrideUid>0</overrideUid>
<overrideGid>0</overrideGid>
<tarLongFileMode>posix</tarLongFileMode>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.xml</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-config-model</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.xml</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.enlinkd</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.enlinkd</groupId>
<artifactId>org.opennms.features.enlinkd.daemon</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Features :: Enlinkd :: Daemon</name>
<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.core</groupId>
<artifactId>org.opennms.core.daemon</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.enlinkd</groupId>
<artifactId>org.opennms.features.enlinkd.service.api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.enlinkd</groupId>
<artifactId>org.opennms.features.enlinkd.config</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.enlinkd</groupId>
<artifactId>org.opennms.features.enlinkd.adapters.common</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.enlinkd</groupId>

<artifactId>org.opennms.features.enlinkd.adapters.collectors.bridge</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.enlinkd</groupId>
<artifactId>org.opennms.features.enlinkd.adapters.collectors.cdp</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.enlinkd</groupId>

<artifactId>org.opennms.features.enlinkd.adapters.collectors.ipnettomedia</artifact
Id>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.enlinkd</groupId>

<artifactId>org.opennms.features.enlinkd.adapters.collectors.isis</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.enlinkd</groupId>

<artifactId>org.opennms.features.enlinkd.adapters.collectors.lldp</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.enlinkd</groupId>

<artifactId>org.opennms.features.enlinkd.adapters.collectors.ospf</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.enlinkd</groupId>
<artifactId>org.opennms.features.enlinkd.adapters.updaters.nodes</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.enlinkd</groupId>

<artifactId>org.opennms.features.enlinkd.adapters.updaters.bridge</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.enlinkd</groupId>
<artifactId>org.opennms.features.enlinkd.adapters.updaters.cdp</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.enlinkd</groupId>
<artifactId>org.opennms.features.enlinkd.adapters.updaters.isis</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.enlinkd</groupId>
<artifactId>org.opennms.features.enlinkd.adapters.updaters.lldp</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.enlinkd</groupId>
<artifactId>org.opennms.features.enlinkd.adapters.updaters.ospf</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.enlinkd</groupId>
<artifactId>org.opennms.features.enlinkd.api</artifactId>
<version>${project.version}</version>
</dependency>

<!-- Test Dependencies -->


<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-mock</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.enlinkd</groupId>
<artifactId>org.opennms.features.enlinkd.service.impl</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.enlinkd</groupId>
<artifactId>org.opennms.features.enlinkd.persistence.impl</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.lib</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.db</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.snmp</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.services</artifactId>
</dependency>

<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/maven-v4_0_0.xsd">

<parent>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.enlinkd</artifactId>
<version>27.0.5</version>
</parent>
<properties>

<bundle.symbolicName>org.opennms.features.enlinkd.generator</bundle.symbolicName>
<bundle.namespace>org.opennms.features.enlinkd.generator</bundle.namespace>
</properties>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.enlinkd</groupId>
<artifactId>org.opennms.features.enlinkd.generator</artifactId>
<name>OpenNMS :: Features :: Enlinkd :: Topology Generator</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>
<Karaf-Commands>*</Karaf-Commands>
</instructions>
</configuration>
</plugin>
</plugins>
</build>

<dependencies>

<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.enterprise</artifactId>
<scope>provided</scope>
</dependency>

<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-model</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.enlinkd</groupId>
<artifactId>org.opennms.features.enlinkd.persistence.api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.topologies</groupId>
<artifactId>org.opennms.features.topologies.service.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.apache.karaf.shell</groupId>
<artifactId>org.apache.karaf.shell.core</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.enlinkd</groupId>
<artifactId>org.opennms.features.enlinkd.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-api</artifactId>
</dependency>
<!-- Test dependencies -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>

</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features.enlinkd</groupId>
<artifactId>org.opennms.features.enlinkd.persistence</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>org.opennms.features.enlinkd.persistence.api</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Features :: Enlinkd :: Persistence :: API</name>
<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</groupId>
<artifactId>opennms-dao-api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-model</artifactId>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</dependency>
<dependency>
<groupId>javax.validation</groupId>
<artifactId>validation-api</artifactId>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-validator</artifactId>
</dependency>

<!-- Test -->


<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.xml</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features.enlinkd</groupId>
<artifactId>org.opennms.features.enlinkd.persistence</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>org.opennms.features.enlinkd.persistence.impl</artifactId>
<packaging>jar</packaging>
<name>OpenNMS :: Features :: Enlinkd :: Persistence :: Impl</name>
<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.features.enlinkd</groupId>
<artifactId>org.opennms.features.enlinkd.persistence.api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>hibernate-dependencies</artifactId>
<type>pom</type>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-dependencies</artifactId>
<type>pom</type>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.sysprops</artifactId>
<version>${project.version}</version>
</dependency>
<!-- Test dependencies -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-mock</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.lib</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.db</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.services</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.persistence.rrd</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrd-jrobin</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-library</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.enlinkd</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.enlinkd</groupId>
<artifactId>org.opennms.features.enlinkd.persistence</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Features :: Enlinkd :: Persistence</name>
<modules>
<module>api</module>
<module>impl</module>
</modules>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>org.opennms.features</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.enlinkd</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Features :: Enlinkd</name>
<modules>
<module>config</module>
<module>persistence</module>
<module>service</module>
<module>adapters</module>
<module>daemon</module>
<module>tests</module>
<module>shell</module>
<module>generator</module>
<module>api</module>
</modules>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features.enlinkd</groupId>
<artifactId>org.opennms.features.enlinkd.service</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>org.opennms.features.enlinkd.service.api</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Features :: Enlinkd :: Service :: API</name>
<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.core</groupId>
<artifactId>org.opennms.core.criteria</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.enlinkd</groupId>
<artifactId>org.opennms.features.enlinkd.persistence.api</artifactId>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</dependency>
<dependency>
<groupId>net.sf.jung</groupId>
<artifactId>jung-api</artifactId>
</dependency>
<!-- Test Dependencies -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features.enlinkd</groupId>
<artifactId>org.opennms.features.enlinkd.service</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>org.opennms.features.enlinkd.service.impl</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Features :: Enlinkd :: Service :: Impl</name>
<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.features.enlinkd</groupId>
<artifactId>org.opennms.features.enlinkd.service.api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao</artifactId>
<scope>compile</scope>
</dependency>

<!-- Test Dependencies -->


<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-test-dependencies</artifactId>
<type>pom</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.easymock</groupId>
<artifactId>easymock</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.lib</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-slf4j-impl</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.enlinkd</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.enlinkd</groupId>
<artifactId>org.opennms.features.enlinkd.service</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Features :: Enlinkd :: Service</name>
<modules>
<module>api</module>
<module>impl</module>
</modules>
</project>
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/maven-v4_0_0.xsd">

<parent>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.enlinkd</artifactId>
<version>27.0.5</version>
</parent>
<properties>
<bundle.symbolicName>org.opennms.features.enlinkd.shell</bundle.symbolicName>
<bundle.namespace>org.opennms.features.enlinkd.shell</bundle.namespace>
</properties>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.enlinkd</groupId>
<artifactId>org.opennms.features.enlinkd.shell</artifactId>
<name>OpenNMS :: Features :: Enlinkd :: Shell Commands</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>
<Karaf-Commands>*</Karaf-Commands>
</instructions>
</configuration>
</plugin>
</plugins>
</build>

<dependencies>
<!--
| uncomment to add all imported (non-local) bundles to your compilation
classpath
<dependency>
<type>pom</type>
<groupId>${parent.groupId}</groupId>
<artifactId>provision</artifactId>
<optional>true</optional>
</dependency>
-->
<dependency>
<groupId>org.apache.karaf.shell</groupId>
<artifactId>org.apache.karaf.shell.core</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.enterprise</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.enlinkd</groupId>
<artifactId>org.opennms.features.enlinkd.generator</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.enlinkd</groupId>
<artifactId>org.opennms.features.enlinkd.api</artifactId>
<version>${project.version}</version>
</dependency>
<!-- Test dependencies -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>

</dependencies>

</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.enlinkd</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.enlinkd</groupId>
<artifactId>org.opennms.features.enlinkd.tests</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Features :: Enlinkd :: Tests</name>
<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.features.enlinkd</groupId>
<artifactId>org.opennms.features.enlinkd.daemon</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.sysprops</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>

<!-- Test Dependencies -->


<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-mock</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.topologies</groupId>
<artifactId>org.opennms.features.topologies.service.impl</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.enlinkd</groupId>
<artifactId>org.opennms.features.enlinkd.service.impl</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.enlinkd</groupId>
<artifactId>org.opennms.features.enlinkd.generator</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.enlinkd</groupId>
<artifactId>org.opennms.features.enlinkd.persistence.impl</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.lib</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.db</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.snmp</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.services</artifactId>
</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>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.events</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.events</groupId>
<artifactId>org.opennms.features.events.api</artifactId>
<name>OpenNMS :: Features :: Events :: API</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>
<Export-Package>
org.opennms.netmgt.events.api.*;version="${project.version}",
org.opennms.netmgt.events.api.support.*;version="${project.version}",
org.opennms.netmgt.xml.event.*;version="${project.version}"
</Export-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>camel-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>javax.validation</groupId>
<artifactId>validation-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.lib</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.logging</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core.snmp</groupId>
<artifactId>org.opennms.core.snmp.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.xml</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.hibernate.javax.persistence</groupId>
<artifactId>hibernate-jpa-2.0-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.lib</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-validator-annotation-processor</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.sink</groupId>
<artifactId>org.opennms.core.ipc.sink.api</artifactId>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.xml</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.events</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.events</groupId>
<artifactId>org.opennms.features.events.daemon</artifactId>
<name>OpenNMS :: Features :: Events :: Daemon</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.core</groupId>
<artifactId>org.opennms.core.daemon</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.events</groupId>
<artifactId>org.opennms.features.events.api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.events.sink</groupId>
<artifactId>org.opennms.features.events.sink.dispatcher</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-api</artifactId>
</dependency>
<dependency>
<groupId>commons-beanutils</groupId>
<artifactId>commons-beanutils</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.sink</groupId>
<artifactId>org.opennms.core.ipc.sink.xml</artifactId>
</dependency>

<!-- Test dependencies -->


<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-mock</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.db</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.services</artifactId>
</dependency>
<dependency>
<groupId>io.dropwizard.metrics</groupId>
<artifactId>metrics-core</artifactId>
<version>${dropwizardMetricsVersion}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-icmp-best</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrd-jrobin</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jrrd2-dependencies</artifactId>
<scope>test</scope>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.persistence.rrd</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.kafka</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.jayway.awaitility</groupId>
<artifactId>awaitility</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.common</groupId>
<artifactId>org.opennms.core.ipc.common.kafka</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.sink.kafka</groupId>
<artifactId>org.opennms.core.ipc.sink.kafka.server</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.sink</groupId>
<artifactId>org.opennms.core.ipc.sink.mock-impl</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>org.opennms.features</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.events</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Features :: Events</name>
<modules>
<module>api</module>
<module>daemon</module>
<module>syslog</module>
<module>traps</module>
<module>shell-commands</module>
<module>sink</module>
</modules>
</project>
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/maven-v4_0_0.xsd">

<parent>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.events</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.events</groupId>
<artifactId>org.opennms.features.events.commands</artifactId>
<name>OpenNMS :: Features :: Events :: Shell Commands</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>
<Karaf-Commands>*</Karaf-Commands>
</instructions>
</configuration>
</plugin>
</plugins>
</build>

<dependencies>
<dependency>
<groupId>org.opennms.features.events</groupId>
<artifactId>org.opennms.features.events.api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.lib</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-config-api</artifactId>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</dependency>
<dependency>
<groupId>io.dropwizard.metrics</groupId>
<artifactId>metrics-core</artifactId>
<version>${dropwizardMetricsVersion}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.karaf.shell</groupId>
<artifactId>org.apache.karaf.shell.core</artifactId>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.enterprise</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-model</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-jexl</artifactId>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao</artifactId>
</dependency>
</dependencies>
</project>
<?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>
<artifactId>org.opennms.features.events.sink</artifactId>
<groupId>org.opennms.features.events</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>

<groupId>org.opennms.features.events.sink</groupId>
<artifactId>org.opennms.features.events.sink.dispatcher</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Features :: Events :: Sink Dispatcher</name>

<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>
</instructions>
</configuration>
</plugin>
</plugins>
</build>

<dependencies>
<dependency>
<groupId>org.opennms.features.events</groupId>
<artifactId>org.opennms.features.events.api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-config-api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.sink</groupId>
<artifactId>org.opennms.core.ipc.sink.xml</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>

</project>
<?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>
<artifactId>org.opennms.features.events</artifactId>
<groupId>org.opennms.features</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.events</groupId>
<artifactId>org.opennms.features.events.sink</artifactId>
<name>OpenNMS :: Features :: Events :: Sink </name>
<packaging>pom</packaging>
<modules>
<module>shell-commands</module>
<module>dispatcher</module>
</modules>

</project>
<?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>
<artifactId>org.opennms.features.events.sink</artifactId>
<groupId>org.opennms.features.events</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>

<groupId>org.opennms.features.events.sink</groupId>
<artifactId>org.opennms.features.events.sink.command</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Features :: Events :: Sink :: Shell Commands</name>
<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>
<Karaf-Commands>*</Karaf-Commands>
</instructions>
</configuration>
</plugin>
</plugins>
</build>

<dependencies>
<dependency>
<groupId>org.apache.karaf.shell</groupId>
<artifactId>org.apache.karaf.shell.core</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.events</groupId>
<artifactId>org.opennms.features.events.api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-model</artifactId>
</dependency>

</dependencies>

</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.events</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.events</groupId>
<artifactId>org.opennms.features.events.syslog</artifactId>
<name>OpenNMS :: Features :: Events :: Syslog Daemon</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>
<Import-Package>
org.eclipse.persistence.internal.jaxb;resolution:=optional,
org.eclipse.persistence.internal.jaxb.many;resolution:=optional,
*
</Import-Package>
</instructions>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<executions>
<execution>
<id>attach-artifacts</id>
<phase>package</phase>
<goals>
<goal>attach-artifact</goal>
</goals>
<configuration>
<artifacts>
<artifact>
<file>blueprint-syslog-listener-javanet.xml</file>
<type>xml</type>
<classifier>blueprint-syslog-listener-javanet</classifier>
</artifact>
<artifact>
<file>blueprint-syslog-listener-camel-netty.xml</file>
<type>xml</type>
<classifier>blueprint-syslog-listener-camel-netty</classifier>
</artifact>
</artifacts>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>camel-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.camel</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.daemon</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.events</groupId>
<artifactId>org.opennms.features.events.api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.sink</groupId>
<artifactId>org.opennms.core.ipc.sink.xml</artifactId>
</dependency>
<dependency>
<groupId>io.dropwizard.metrics</groupId>
<artifactId>metrics-core</artifactId>
<version>${dropwizardMetricsVersion}</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.distributed</groupId>
<artifactId>org.opennms.features.distributed.dao-distributed</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-mock</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.db</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.services</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.events</groupId>
<artifactId>org.opennms.features.events.daemon</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.distributed</groupId>
<artifactId>core-api</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-icmp-jna</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-icmp-best</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrd-jrobin</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.persistence.rrd</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-test-dependencies</artifactId>
<type>pom</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.activemq</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.camel</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.sink</groupId>
<artifactId>org.opennms.core.ipc.sink.mock-impl</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.sink</groupId>
<artifactId>org.opennms.core.ipc.sink.common</artifactId>
<version>${project.version}</version>
<type>test-jar</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.xml</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.jayway.awaitility</groupId>
<artifactId>awaitility</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.events</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.events</groupId>
<artifactId>org.opennms.features.events.traps</artifactId>
<name>OpenNMS :: Features :: Events :: Trap Daemon</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>
<Import-Package>
org.snmp4j;resolution:=optional,
org.slf4j.impl;resolution:=optional,
org.eclipse.persistence.internal.jaxb;resolution:=optional,
org.eclipse.persistence.internal.jaxb.many;resolution:=optional,
*
</Import-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>camel-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.camel</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.daemon</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.events</groupId>
<artifactId>org.opennms.features.events.api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.sink</groupId>
<artifactId>org.opennms.core.ipc.sink.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.sink</groupId>
<artifactId>org.opennms.core.ipc.sink.xml</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.distributed</groupId>
<artifactId>core-api</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>

<!-- Test Dependencies -->


<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-mock</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.sink</groupId>
<artifactId>org.opennms.core.ipc.sink.mock-impl</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.events</groupId>
<artifactId>org.opennms.features.events.daemon</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.activemq</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.camel</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.db</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.http</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.services</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.xml</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrd-jrobin</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jrrd2-dependencies</artifactId>
<scope>test</scope>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrdtool-api</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.persistence.rrd</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>camel-test-dependencies</artifactId>
<type>pom</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.activemq</groupId>
<artifactId>activemq-camel</artifactId>
<version>${activemqVersion}</version>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
</exclusion>
<exclusion>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
</exclusion>
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-beans</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-expression</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-jms</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-aop</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-tx</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.opennms.features.minion</groupId>
<artifactId>core-impl</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.distributed</groupId>
<artifactId>org.opennms.features.distributed.dao-distributed</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-services</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-library</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.jayway.awaitility</groupId>
<artifactId>awaitility</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?xml version="1.0"?>
<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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.executor-factory</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.executor-factory</groupId>
<artifactId>org.opennms.features.executor-factory.cassandra</artifactId>
<name>OpenNMS :: Features :: Executor Factory :: Cassandra</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</groupId>
<artifactId>opennms-util</artifactId>
</dependency>
<dependency>
<groupId>org.apache.cassandra</groupId>
<artifactId>cassandra-all</artifactId>
<version>2.1.6</version>
<exclusions>
<exclusion>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-core</artifactId>
</exclusion>
<exclusion>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
</exclusion>
<!-- snappy-java has OSGi loading problems because of JNI bits -->
<exclusion>
<groupId>org.xerial.snappy</groupId>
<artifactId>snappy-java</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
</project>
<?xml version="1.0"?>
<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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>org.opennms.features</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.executor-factory</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Features :: Executor Factories</name>
<modules>
<module>cassandra</module>
</modules>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.flows</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.flows</groupId>
<artifactId>org.opennms.features.flows.api</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Features :: Flows :: API</name>
<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>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>${guavaVersion}</version>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.rpc</groupId>
<artifactId>org.opennms.core.ipc.rpc.utils</artifactId>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features.flows.classification</groupId>
<artifactId>org.opennms.features.flows.classification.engine</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.flows.classification.engine</groupId>
<artifactId>org.opennms.features.flows.classification.engine.api</artifactId>
<name>OpenNMS :: Features :: Flows :: Classification :: Engine :: API</name>
<packaging>bundle</packaging>
<dependencies>
<dependency>
<groupId>org.opennms.features.flows</groupId>
<artifactId>org.opennms.features.flows.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.flows.classification.persistence</groupId>

<artifactId>org.opennms.features.flows.classification.persistence.api</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features.flows.classification</groupId>
<artifactId>org.opennms.features.flows.classification.engine</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.flows.classification.engine</groupId>
<artifactId>org.opennms.features.flows.classification.engine.impl</artifactId>
<name>OpenNMS :: Features :: Flows :: Classification :: Engine :: Impl.</name>
<packaging>bundle</packaging>
<dependencies>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.lib</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-model</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.cache</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.flows</groupId>
<artifactId>org.opennms.features.flows.api</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.flows.classification.engine</groupId>
<artifactId>org.opennms.features.flows.classification.engine.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.flows.classification.persistence</groupId>

<artifactId>org.opennms.features.flows.classification.persistence.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-csv</artifactId>
<version>${commonsCsvVersion}</version>
</dependency>
<dependency>
<groupId>io.dropwizard.metrics</groupId>
<artifactId>metrics-core</artifactId>
<version>${dropwizardMetricsVersion}</version>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</dependency>
<!-- Test Dependencies -->
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-config</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrd-jrobin</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.persistence.rrd</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.services</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.db</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-mock</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.flows.classification.persistence</groupId>

<artifactId>org.opennms.features.flows.classification.persistence.impl</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features.flows</groupId>
<artifactId>org.opennms.features.flows.classification</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.flows.classification</groupId>
<artifactId>org.opennms.features.flows.classification.engine</artifactId>
<name>OpenNMS :: Features :: Flows :: Classification :: Engine (Parent)</name>
<packaging>pom</packaging>
<modules>
<module>api</module>
<module>impl</module>
</modules>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features.flows.classification</groupId>

<artifactId>org.opennms.features.flows.classification.persistence</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.flows.classification.persistence</groupId>

<artifactId>org.opennms.features.flows.classification.persistence.api</artifactId>
<name>OpenNMS :: Features :: Flows :: Classification :: Persistence :: Api</name>
<packaging>bundle</packaging>
<dependencies>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-api</artifactId>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features.flows.classification</groupId>

<artifactId>org.opennms.features.flows.classification.persistence</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.flows.classification.persistence</groupId>

<artifactId>org.opennms.features.flows.classification.persistence.impl</artifactId>
<name>OpenNMS :: Features :: Flows :: Classification :: Persistence ::
Impl.</name>
<packaging>bundle</packaging>
<dependencies>
<dependency>
<groupId>org.opennms.features.flows.classification.persistence</groupId>

<artifactId>org.opennms.features.flows.classification.persistence.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao</artifactId>
</dependency>
<!-- Test dependencies -->
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-config</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrd-jrobin</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.persistence.rrd</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.services</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.db</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-mock</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features.flows</groupId>
<artifactId>org.opennms.features.flows.classification</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.flows.classification</groupId>
<artifactId>org.opennms.features.flows.classification.persistence</artifactId>
<name>OpenNMS :: Features :: Flows :: Classification :: Persistence
(Parent)</name>
<packaging>pom</packaging>
<modules>
<module>api</module>
<module>impl</module>
</modules>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.flows</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.flows</groupId>
<artifactId>org.opennms.features.flows.classification</artifactId>
<name>OpenNMS :: Features :: Flows :: Classification (Parent)</name>
<packaging>pom</packaging>
<modules>
<module>engine</module>
<module>persistence</module>
<module>shell</module>
</modules>
<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>com.google.guava</groupId>
<artifactId>guava</artifactId>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</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>
</dependencies>
</project>
<?xml version="1.0"?>
<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.features.flows</groupId>
<artifactId>org.opennms.features.flows.classification</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.flows.classification</groupId>
<artifactId>org.opennms.features.flows.classification.shell</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Features :: Flows :: Classification :: Shell Commands</name>
<build>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<configuration>
<instructions>
<Bundle-RequiredExecutionEnvironment>JavaSE-1.8</Bundle-
RequiredExecutionEnvironment>
<Bundle-SymbolicName>${project.groupId}.$
{project.artifactId}</Bundle-SymbolicName>
<Bundle-Version>${project.version}</Bundle-Version>
<Private-Package></Private-Package>
<Karaf-
Commands>org.opennms.netmgt.flows.clazzification.shell</Karaf-Commands>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.apache.karaf.shell</groupId>
<artifactId>org.apache.karaf.shell.core</artifactId>
<version>${karafVersion}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.flows.classification.engine</groupId>

<artifactId>org.opennms.features.flows.classification.engine.api</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.flows</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.flows</groupId>
<artifactId>org.opennms.features.flows.elastic</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Features :: Flows :: Elastic</name>
<properties>
<skipITs>true</skipITs>
<json-simpleVersion>1.1.1</json-simpleVersion>
</properties>
<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>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>test-jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.compendium</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.cache</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core.health</groupId>
<artifactId>org.opennms.core.health.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.flows</groupId>
<artifactId>org.opennms.features.flows.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.flows.classification.engine</groupId>
<artifactId>org.opennms.features.flows.classification.engine.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core.tracing</groupId>
<artifactId>org.opennms.core.tracing.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.distributed</groupId>
<artifactId>core-api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>${guavaVersion}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.jest</groupId>
<artifactId>org.opennms.features.jest.client</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.searchbox</groupId>
<artifactId>jest-complete-osgi</artifactId>
<version>${jestVersion}</version>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>${jestGsonVersion}</version>
</dependency>
<dependency>
<groupId>io.dropwizard.metrics</groupId>
<artifactId>metrics-core</artifactId>
<version>${dropwizardMetricsVersion}</version>
</dependency>
<dependency>
<groupId>org.freemarker</groupId>
<artifactId>freemarker</artifactId>
<version>${freemarkerVersion}</version>
</dependency>
<dependency>
<groupId>com.swrve</groupId>
<artifactId>rate-limited-logger</artifactId>
</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>com.spotify</groupId>
<artifactId>hamcrest-pojo</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>jcl-over-slf4j</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.lib</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.xml</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.flows.classification.engine</groupId>

<artifactId>org.opennms.features.flows.classification.engine.impl</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-mock</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.powermock</groupId>
<artifactId>powermock-api-mockito2</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.powermock</groupId>
<artifactId>powermock-module-junit4</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.googlecode.json-simple</groupId>
<artifactId>json-simple</artifactId>
<version>${json-simpleVersion}</version>
<scope>test</scope>
</dependency>
</dependencies>

<repositories>
<repository>
<id>snapshots-repo</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
<releases><enabled>false</enabled></releases>
<snapshots><enabled>true</enabled></snapshots>
</repository>
</repositories>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.flows</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.flows</groupId>
<artifactId>org.opennms.features.flows.itests</artifactId>
<packaging>jar</packaging>
<name>OpenNMS :: Features :: Flows :: Integration Tests</name>
<properties>
<skipITs>true</skipITs>
<nephronVersion>0.1.1</nephronVersion>
<jsonSimpleVersion>1.1.1</jsonSimpleVersion>
</properties>
<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>
<!-- We create a key for 'localhost' for test purposes -->
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>keytool-maven-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<goals>
<goal>generateKeyPair</goal>
</goals>
<phase>generate-test-resources</phase>
</execution>
</executions>
<configuration>
<workingDirectory>${project.build.directory}</workingDirectory>
<skipIfExist>true</skipIfExist>
<alias>localhost</alias>
<keysize>1024</keysize>
<keyalg>DSA</keyalg>
<dname>CN=localhost, OU=Flows baby flows, O=The OpenNMS Group,
C=US</dname>
<keystore>${project.build.directory}/test-
keystore.jks</keystore>
<storepass>password</storepass>
<validity>2</validity>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.compendium</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.flows</groupId>
<artifactId>org.opennms.features.flows.elastic</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.flows.classification.engine</groupId>

<artifactId>org.opennms.features.flows.classification.engine.impl</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<!-- Override joda to match the version used by Beam in Nephron -->
<groupId>joda-time</groupId>
<artifactId>joda-time</artifactId>
<version>2.10.5</version>
</dependency>

<dependency>
<groupId>org.opennms.features.flows</groupId>
<artifactId>org.opennms.features.flows.elastic</artifactId>
<version>${project.version}</version>
<classifier>tests</classifier>
<type>test-jar</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.github.tomakehurst</groupId>
<artifactId>wiremock</artifactId>
<version>2.11.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.googlecode.json-simple</groupId>
<artifactId>json-simple</artifactId>
<version>${jsonSimpleVersion}</version>
<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>com.jayway.awaitility</groupId>
<artifactId>awaitility</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>jcl-over-slf4j</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.lib</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.services</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrd-jrobin</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrdtool-api</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.collection</groupId>

<artifactId>org.opennms.features.collection.persistence.rrd</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.db</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.nephron</groupId>
<artifactId>nephron-main</artifactId>
<version>${nephronVersion}</version>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>org.opennms.nephron</groupId>
<artifactId>nephron-proto</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-expression</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>
</exclusion>
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-mock</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.elasticsearch</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<!--
A parent module defines netty-all with a specific version, but Elastic
requires
a different version. We overwrite it here manually so that the proper
dependencies
are pulled in.
-->
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-all</artifactId>
<version>${elasticsearchNettyVersion}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-codec</artifactId>
<version>${elasticsearchNettyVersion}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-codec-http</artifactId>
<version>${elasticsearchNettyVersion}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-transport</artifactId>
<version>${elasticsearchNettyVersion}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-resolver</artifactId>
<version>${elasticsearchNettyVersion}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-handler</artifactId>
<version>${elasticsearchNettyVersion}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-buffer</artifactId>
<version>${elasticsearchNettyVersion}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-common</artifactId>
<version>${elasticsearchNettyVersion}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.elasticsearch</groupId>
<artifactId>elasticsearch-drift-plugin</artifactId>
<version>${elasticsearchTargetVersion}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.flows</groupId>
<artifactId>org.opennms.features.flows.kafka-persistence</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.kafka</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
</dependencies>

<repositories>
<repository>
<id>sonatype.org-snapshot</id>
<name>Sonatype OSS Snapshots Repository</name>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
</project>
<?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>
<artifactId>org.opennms.features.flows</artifactId>
<groupId>org.opennms.features</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<packaging>bundle</packaging>
<groupId>org.opennms.features.flows</groupId>
<artifactId>org.opennms.features.flows.kafka-persistence</artifactId>
<name>OpenNMS :: Features :: Flows :: Kafka Persister</name>
<build>

<!-- Enable below extension and plugin when you need to generate java source
files from proto -->
<!-- <extensions>
<extension>
<groupId>kr.motd.maven</groupId>
<artifactId>os-maven-plugin</artifactId>
<version>1.6.2</version>
</extension>
</extensions>-->
<plugins>
<!-- <plugin>
<groupId>org.xolstice.maven.plugins</groupId>
<artifactId>protobuf-maven-plugin</artifactId>
<version>0.6.1</version>
<configuration>
<protocArtifact>com.google.protobuf:protoc:3.9.0:exe:$
{os.detected.classifier}</protocArtifact>
<pluginId>grpc-java</pluginId>
<pluginArtifact>io.grpc:protoc-gen-grpc-java:1.24.0:exe:$
{os.detected.classifier}</pluginArtifact>
</configuration>
<executions>
<execution>
<goals>
<goal>compile</goal>
<goal>compile-custom</goal>
</goals>
</execution>
</executions>
</plugin>-->
<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.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.compendium</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.swrve</groupId>
<artifactId>rate-limited-logger</artifactId>
<version>${rateLimitedLoggerVersion}</version>
</dependency>
<dependency>
<groupId> com.google.protobuf</groupId>
<artifactId>protobuf-java</artifactId>
<version>${protobufVersion}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.flows</groupId>
<artifactId>org.opennms.features.flows.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.apache.servicemix.bundles</groupId>
<artifactId>org.apache.servicemix.bundles.kafka-clients</artifactId>
<version>${kafkaBundleVersion}</version>
<exclusions>
<exclusion>
<artifactId>log4j</artifactId>
<groupId>log4j</groupId>
</exclusion>
<exclusion>
<artifactId>slf4j-log4j12</artifactId>
<groupId>org.slf4j</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>${jestGsonVersion}</version>
<scope>provided</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>org.opennms.features</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.flows</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Features :: Flows (Parent)</name>
<modules>
<module>api</module>
<module>classification</module>
<module>elastic</module>
<module>itests</module>
<module>rest</module>
<module>kafka-persistence</module>
</modules>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features.flows</groupId>
<artifactId>org.opennms.features.flows.rest</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.flows.rest</groupId>
<artifactId>org.opennms.features.flows.rest.api</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Features :: Flows :: ReST :: API</name>
<dependencies>
<dependency>
<groupId>javax.ws.rs</groupId>
<artifactId>javax.ws.rs-api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.flows.classification.engine</groupId>

<artifactId>org.opennms.features.flows.classification.engine.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.flows.classification.persistence</groupId>

<artifactId>org.opennms.features.flows.classification.persistence.api</artifactId>
<version>${project.version}</version>
</dependency>
<!-- Test -->
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.lib</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.xml</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features.flows</groupId>
<artifactId>org.opennms.features.flows.rest</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.flows.rest</groupId>
<artifactId>org.opennms.features.flows.rest.impl</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Features :: Flows :: ReST :: Impl.</name>
<dependencies>
<dependency>
<groupId>org.opennms.features.flows.rest</groupId>
<artifactId>org.opennms.features.flows.rest.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.web</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-web-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>cxf-dependencies</artifactId>
<version>${project.version}</version>
<type>pom</type>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.flows</groupId>
<artifactId>org.opennms.features.flows.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>${gsonVersion}</version>
<scope>provided</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>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.flows</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.flows</groupId>
<artifactId>org.opennms.features.flows.rest</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Features :: Flows :: ReST</name>
<modules>
<module>api</module>
<module>impl</module>
</modules>
<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>
</project>
<?xml version="1.0"?>
<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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.geocoder</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.geocoder</groupId>
<artifactId>org.opennms.features.geocoder.api</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Features :: Geocoder :: API</name>
<description>API for doing a geocoder lookup (turning an address into
coordinates)</description>
<properties>
<bundle.symbolicName>org.opennms.features.geocoder.api</bundle.symbolicName>
<bundle.namespace>org.opennms.features.geocoder</bundle.namespace>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<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>
<Export-Package>!${bundle.namespace}.internal.*,$
{bundle.namespace}.*;version="${project.version}"</Export-Package>
<Private-Package>${bundle.namespace}.internal.*</Private-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
</project>
<?xml version="1.0"?>
<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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.geocoder</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.geocoder</groupId>
<artifactId>org.opennms.features.geocoder.google</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Features :: Geocoder :: Google</name>

<description>Google Geocoder implementation</description>


<properties>
<bundle.symbolicName>org.opennms.features.geocoder.google</bundle.symbolicName>
<bundle.namespace>org.opennms.features.geocoder.google</bundle.namespace>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

<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>
<Export-Package>!${bundle.namespace}.internal.*,$
{bundle.namespace}.*;version="${project.version}"</Export-Package>
<Private-Package>${bundle.namespace}.internal.*</Private-Package>
<Embed-Dependency>*;artifactId=google-maps-services|gson|okhttp|
okio</Embed-Dependency>
<Embed-Transitive>true</Embed-Transitive>
<Import-Package>
android.os;resolution:=optional,
android.util;resolution:=optional,
org.conscrypt;resolution:=optional,
com.google.appengine.api.urlfetch;resolution:=optional,
javax.annotation.meta;resolution:=optional,
*
</Import-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>

<dependencies>
<dependency>
<groupId>org.opennms.features.geocoder</groupId>
<artifactId>org.opennms.features.geocoder.api</artifactId>
</dependency>
<!--https://mvnrepository.com/artifact/com.google.maps/google-maps-services-->
<dependency>
<groupId>com.google.maps</groupId>
<artifactId>google-maps-services</artifactId>
<version>0.9.3</version>
<exclusions>
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.lib</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.sysprops</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<scope>provided</scope>
</dependency>
</dependencies>
</project>
<?xml version="1.0"?>
<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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.geocoder</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.geocoder</groupId>
<artifactId>org.opennms.features.geocoder.mapquest</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Features :: Geocoder :: MapQuest</name>
<description>MapQuest Geocoder implementation</description>
<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>
<Private-
Package>org.opennms.features.geocoder.mapquest.internal</Private-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.geocoder</groupId>
<artifactId>org.opennms.features.geocoder.api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.web</artifactId>
</dependency>
<dependency>
<groupId>org.json</groupId>
<artifactId>json</artifactId>
<version>${jsonVersion}</version>
</dependency>
</dependencies>
</project>
<?xml version="1.0"?>
<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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.geocoder</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.geocoder</groupId>
<artifactId>org.opennms.features.geocoder.nominatim</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Features :: Geocoder :: Nominatim</name>

<description>Nominatim Geocoder implementation</description>


<properties>

<bundle.symbolicName>org.opennms.features.geocoder.nominatim</bundle.symbolicName>
<bundle.namespace>org.opennms.features.geocoder.nominatim</bundle.namespace>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

<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>
<Export-Package>!${bundle.namespace}.internal.*,$
{bundle.namespace}.*;version="${project.version}"</Export-Package>
<Private-Package>${bundle.namespace}.internal.*</Private-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>

<dependencies>
<dependency>
<groupId>org.opennms.features.geocoder</groupId>
<artifactId>org.opennms.features.geocoder.api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.web</artifactId>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.json</groupId>
<artifactId>json</artifactId>
<version>${jsonVersion}</version>
</dependency>
</dependencies>

<repositories>
<repository>
<snapshots><enabled>false</enabled></snapshots>
<releases><enabled>true</enabled></releases>
<id>opennms-repo</id>
<name>OpenNMS Repository</name>
<url>http://maven.opennms.org/content/groups/opennms.org-release</url>
</repository>
</repositories>

</project>
<?xml version="1.0"?>
<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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>org.opennms.features</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.geocoder</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Features :: Geocoder</name>
<modules>
<module>api</module>
<module>google</module>
<module>mapquest</module>
<module>nominatim</module>
<module>rest</module>
<module>service</module>
</modules>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?xml version="1.0"?>
<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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.geocoder</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.geocoder</groupId>
<artifactId>org.opennms.features.geocoder.rest</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Features :: Geocoder :: Rest</name>
<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>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms.features.geocoder</groupId>
<artifactId>org.opennms.features.geocoder.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.web</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-web-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>cxf-dependencies</artifactId>
<version>${project.version}</version>
<type>pom</type>
<scope>provided</scope>
</dependency>
</dependencies>
</project>
<?xml version="1.0"?>
<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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.geocoder</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.geocoder</groupId>
<artifactId>org.opennms.features.geocoder.service</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Features :: Geocoder :: Service</name>
<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>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>osgi.core</artifactId>
<version>${osgiVersion}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.compendium</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.geocoder</groupId>
<artifactId>org.opennms.features.geocoder.api</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</project>
<?xml version="1.0"?>
<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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.geolocation</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.geolocation</groupId>
<artifactId>org.opennms.features.geolocation.api</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Features :: Geolocation :: API</name>
<description>Geolocation Services</description>
<properties>
<bundle.symbolicName>org.opennms.features.geolocation.api</bundle.symbolicName>
<bundle.namespace>org.opennms.features.geolocation.api</bundle.namespace>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>org.opennms.features.status</groupId>
<artifactId>org.opennms.features.status.api</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?xml version="1.0"?>
<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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>org.opennms.features</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.geolocation</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Features :: Geolocation</name>
<modules>
<module>api</module>
<module>rest</module>
<module>service</module>
</modules>
<build>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<instructions>
<Bundle-SymbolicName>${bundle.symbolicName}</Bundle-
SymbolicName>
<Bundle-Version>${project.version}</Bundle-Version>
<Export-Package>!${bundle.namespace}.internal.*,$
{bundle.namespace}.*;version="${project.version}"</Export-Package>
<Private-Package>${bundle.namespace}.internal.*</Private-
Package>
<_include>-osgi.bnd</_include>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?xml version="1.0"?>
<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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.geolocation</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.geolocation</groupId>
<artifactId>org.opennms.features.geolocation.rest</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Features :: Geolocation :: Rest</name>
<description>Geolocation Rest</description>
<properties>
<bundle.symbolicName>org.opennms.web.rest.v2</bundle.symbolicName>
<bundle.namespace>org.opennms.web.rest.v2</bundle.namespace>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-dependencies</artifactId>
<type>pom</type>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>cxf-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.features.geolocation</groupId>
<artifactId>org.opennms.features.geolocation.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.geolocation</groupId>
<artifactId>org.opennms.features.geolocation.services</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.web</artifactId>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<scope>provided</scope>
</dependency>
</dependencies>
</project>
<?xml version="1.0"?>
<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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.geolocation</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.geolocation</groupId>
<artifactId>org.opennms.features.geolocation.services</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Features :: Geolocation :: Services</name>
<description>Geolocation Services</description>
<properties>

<bundle.symbolicName>org.opennms.features.geolocation.services</bundle.symbolicName
>
<bundle.namespace>org.opennms.features.geolocation.services</bundle.namespace>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>osgi.core</artifactId>
<version>${osgiVersion}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.compendium</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.geocoder</groupId>
<artifactId>org.opennms.features.geocoder.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.geolocation</groupId>
<artifactId>org.opennms.features.geolocation.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.status</groupId>
<artifactId>org.opennms.features.status.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<scope>provided</scope>
</dependency>

<!-- Test Dependencies -->


<dependency>
<groupId>org.opennms.features.bsm</groupId>
<artifactId>org.opennms.features.bsm.service.api</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.bsm</groupId>
<artifactId>org.opennms.features.bsm.service.impl</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.bsm</groupId>
<artifactId>org.opennms.features.bsm.persistence.api</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.bsm</groupId>
<artifactId>org.opennms.features.bsm.persistence.impl</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-config</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrd-jrobin</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.persistence.rrd</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.services</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.db</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-mock</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.graph</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.graph</groupId>
<artifactId>org.opennms.features.graph.api</artifactId>
<name>OpenNMS :: Features :: Graph :: API</name>
<packaging>bundle</packaging>
<build>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<instructions>
<Export-Package>{local-packages}</Export-Package>
<Private-Package></Private-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms.features.graph</groupId>
<artifactId>org.opennms.features.graph.jung</artifactId>
<version>${jungVersion}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-model</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.lib</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-library</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features.graph</groupId>
<artifactId>org.opennms.features.graph.dao</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.graph.dao</groupId>
<artifactId>org.opennms.features.graph.dao.api</artifactId>
<name>OpenNMS :: Features :: Graph :: DAO :: API</name>
<packaging>jar</packaging>
<dependencies>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-api</artifactId>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features.graph</groupId>
<artifactId>org.opennms.features.graph.dao</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.graph.dao</groupId>
<artifactId>org.opennms.features.graph.dao.impl</artifactId>
<name>OpenNMS :: Features :: Graph :: DAO :: Impl</name>
<packaging>jar</packaging>
<dependencies>
<dependency>
<groupId>org.opennms.features.graph.dao</groupId>
<artifactId>org.opennms.features.graph.dao.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao</artifactId>
</dependency>

<!-- Test dependencies -->


<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-config</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrd-jrobin</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.collection</groupId>

<artifactId>org.opennms.features.collection.persistence.rrd</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.services</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.db</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-mock</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-validator</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-library</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.graph</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.graph</groupId>
<artifactId>org.opennms.features.graph.dao</artifactId>
<name>OpenNMS :: Features :: Graph :: DAO</name>
<packaging>pom</packaging>
<modules>
<module>api</module>
<module>impl</module>
</modules>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.graph</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.graph</groupId>
<artifactId>org.opennms.features.graph.domain</artifactId>
<name>OpenNMS :: Features :: Graph :: Domain</name>
<description>Contains classes to help define a domain specific view on the
generic model, including a simple default implementation</description>
<packaging>bundle</packaging>
<build>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<instructions>
<Private-Package></Private-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms.features.graph</groupId>
<artifactId>org.opennms.features.graph.api</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</project>

<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.features</groupId>
<artifactId>org.opennms.features.graph</artifactId>
<version>27.0.5</version>
</parent>

<!-- Feature Definition -->


<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.graph</groupId>
<artifactId>org.opennms.features.graph.jung</artifactId>
<version>${jungVersion}</version>
<description>shaded osgi bundle containing complete jung
implementation</description>
<packaging>bundle</packaging>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>2.4.3</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<artifactSet>
</artifactSet>

<createDependencyReducedPom>true</createDependencyReducedPom>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<instructions>
<Export-Package>edu.uci.ics.jung.graph;version="$
{jungVersion}",edu.uci.ics.jung.graph.util;version="${jungVersion}"</Export-
Package>
</instructions>
<unpackBundle>true</unpackBundle>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<executions>
<execution>
<id>check-license</id>
<phase>none</phase>
</execution>
<execution>
<id>check-style</id>
<phase>none</phase>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>net.sf.jung</groupId>
<artifactId>jung-api</artifactId>
<version>${jungVersion}</version>
</dependency>
<dependency>
<groupId>net.sf.jung</groupId>
<artifactId>jung-graph-impl</artifactId>
<version>${jungVersion}</version>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>org.opennms.features</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.graph</artifactId>
<name>OpenNMS :: Features :: Graph (Parent)</name>
<packaging>pom</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>
<modules>
<module>api</module>
<module>dao</module>
<module>jung</module>
<module>provider</module>
<module>rest</module>
<module>service</module>
<module>shell</module>
<module>domain</module>
</modules>
<dependencies>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>${guavaVersion}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features.graph</groupId>
<artifactId>org.opennms.features.graph.provider</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.graph.provider</groupId>
<artifactId>org.opennms.features.graph.provider.application</artifactId>
<name>OpenNMS :: Features :: Graph :: Provider :: Application</name>
<packaging>bundle</packaging>
<build>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<instructions>
<Private-Package>{local-packages}</Private-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms.features.graph</groupId>
<artifactId>org.opennms.features.graph.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.graph.dao</groupId>
<artifactId>org.opennms.features.graph.dao.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.graph</groupId>
<artifactId>org.opennms.features.graph.domain</artifactId>
<version>${project.version}</version>
</dependency>
<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.opennms</groupId>
<artifactId>opennms-dao-mock</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.lib</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features.graph</groupId>
<artifactId>org.opennms.features.graph.provider</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.graph.provider</groupId>
<artifactId>org.opennms.features.graph.provider.bsm</artifactId>
<name>OpenNMS :: Features :: Graph :: Provider :: Business Services</name>
<packaging>bundle</packaging>
<build>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<instructions>
<Private-Package>{local-packages}</Private-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms.features.graph</groupId>
<artifactId>org.opennms.features.graph.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.graph</groupId>
<artifactId>org.opennms.features.graph.domain</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.graph.rest</groupId>
<artifactId>org.opennms.features.graph.rest.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.bsm</groupId>
<artifactId>org.opennms.features.bsm.service.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.events</groupId>
<artifactId>org.opennms.features.events.api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-model</artifactId>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features.graph</groupId>
<artifactId>org.opennms.features.graph.provider</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.graph.provider</groupId>
<artifactId>org.opennms.features.graph.provider.graphml</artifactId>
<name>OpenNMS :: Features :: Graph :: Provider :: GraphML</name>
<packaging>bundle</packaging>
<build>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<instructions>
<Import-Package>*,edu.uci.ics.jung.graph</Import-Package>
<Private-Package>{local-packages}</Private-Package>
<Export-Package></Export-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>osgi.core</artifactId>
<version>${osgiVersion}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.compendium</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.graph</groupId>
<artifactId>org.opennms.features.graph.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.graphml</groupId>
<artifactId>org.opennms.features.graphml.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.graph</groupId>
<artifactId>org.opennms.features.graph.domain</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features.graph</groupId>
<artifactId>org.opennms.features.graph.provider</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.graph.provider</groupId>
<artifactId>org.opennms.features.graph.provider.legacy</artifactId>
<name>OpenNMS :: Features :: Graph :: Provider :: Legacy</name>
<description>Adapter for the (legacy) TopologyProvider API (Topology API ->
Graph API)</description>
<packaging>bundle</packaging>
<build>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<extensions>true</extensions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>osgi.core</artifactId>
<version>${osgiVersion}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.compendium</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.graph</groupId>
<artifactId>org.opennms.features.graph.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.graph</groupId>
<artifactId>org.opennms.features.graph.domain</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.topology</groupId>
<artifactId>org.opennms.features.topology.api</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features.graph</groupId>
<artifactId>org.opennms.features.graph.provider</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.graph.provider</groupId>
<artifactId>org.opennms.features.graph.provider.persistence-test</artifactId>
<name>OpenNMS :: Features :: Graph :: Provider :: Persistence Test</name>
<packaging>bundle</packaging>
<build>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<extensions>true</extensions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>osgi.core</artifactId>
<version>${osgiVersion}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.compendium</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.graph</groupId>
<artifactId>org.opennms.features.graph.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.graph</groupId>
<artifactId>org.opennms.features.graph.domain</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.graph</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.graph</groupId>
<artifactId>org.opennms.features.graph.provider</artifactId>
<name>OpenNMS :: Features :: Graph :: Provider (Parent)</name>
<packaging>pom</packaging>
<modules>
<module>application</module>
<module>bsm</module>
<module>graphml</module>
<module>legacy</module>
<module>persistence-test</module>
<module>topology</module>
</modules>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features.graph</groupId>
<artifactId>org.opennms.features.graph.provider</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.graph.provider</groupId>
<artifactId>org.opennms.features.graph.provider.topology</artifactId>
<name>OpenNMS :: Features :: Graph :: Provider :: Topology</name>
<description>Exposes GraphContainerProvider to the (legacy) TopologyProvider
API (Graph API -> Topology API)</description>
<packaging>bundle</packaging>
<build>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<extensions>true</extensions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>osgi.core</artifactId>
<version>${osgiVersion}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.compendium</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.graph</groupId>
<artifactId>org.opennms.features.graph.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.topology</groupId>
<artifactId>org.opennms.features.topology.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.integration.api</groupId>
<artifactId>api</artifactId>
<version>${opennmsApiVersion}</version>
</dependency>
</dependencies>
<repositories>
<repository>
<id>sonatype.org-snapshot</id>
<name>Sonatype OSS Snapshots Repository</name>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
<releases><enabled>false</enabled></releases>
<snapshots><enabled>true</enabled></snapshots>
</repository>
</repositories>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features.graph</groupId>
<artifactId>org.opennms.features.graph.rest</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.graph.rest</groupId>
<artifactId>org.opennms.features.graph.rest.api</artifactId>
<name>OpenNMS :: Features :: Graph :: Rest :: API</name>
<packaging>bundle</packaging>
<dependencies>
<dependency>
<groupId>org.opennms.features.graph</groupId>
<artifactId>org.opennms.features.graph.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-web-api</artifactId>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features.graph</groupId>
<artifactId>org.opennms.features.graph.rest</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.graph.rest</groupId>
<artifactId>org.opennms.features.graph.rest.impl</artifactId>
<name>OpenNMS :: Features :: Graph :: Rest :: Impl</name>
<packaging>bundle</packaging>
<build>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<configuration>
<instructions>
<Private-
Package>org.opennms.netmgt.graph.rest.impl*</Private-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms.features.graph.rest</groupId>
<artifactId>org.opennms.features.graph.rest.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
<scope>provided</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.graph</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.graph</groupId>
<artifactId>org.opennms.features.graph.rest</artifactId>
<name>OpenNMS :: Features :: Graph :: Rest (Parent)</name>
<packaging>pom</packaging>
<modules>
<module>api</module>
<module>impl</module>
</modules>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.graph</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.graph</groupId>
<artifactId>org.opennms.features.graph.service</artifactId>
<name>OpenNMS :: Features :: Graph :: Service</name>
<packaging>bundle</packaging>
<build>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<instructions>
<Private-Package>{local-packages}</Private-Package>
<Export-Package></Export-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.graph</groupId>
<artifactId>org.opennms.features.graph.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.graph.dao</groupId>
<artifactId>org.opennms.features.graph.dao.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>${gsonVersion}</version>
</dependency>
<dependency>
<groupId>com.github.ben-manes.caffeine</groupId>
<artifactId>caffeine</artifactId>
</dependency>
<!-- Test dependencies -->
<dependency>
<groupId>org.opennms.features.graph.dao</groupId>
<artifactId>org.opennms.features.graph.dao.impl</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<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.opennms</groupId>
<artifactId>opennms-config</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrd-jrobin</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.collection</groupId>

<artifactId>org.opennms.features.collection.persistence.rrd</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.services</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.db</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-mock</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-validator</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-library</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.graph.provider</groupId>

<artifactId>org.opennms.features.graph.provider.application</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.graph</groupId>
<artifactId>org.opennms.features.graph.domain</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.graph</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.graph</groupId>
<artifactId>org.opennms.features.graph.shell</artifactId>
<name>OpenNMS :: Features :: Graph :: Shell Commands</name>
<packaging>bundle</packaging>
<build>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<instructions>
<Private-Package>{local-packages}</Private-Package>
<Karaf-Commands>*</Karaf-Commands>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms.features.graph</groupId>
<artifactId>org.opennms.features.graph.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.apache.karaf.shell</groupId>
<artifactId>org.apache.karaf.shell.core</artifactId>
<version>${karafVersion}</version>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
<scope>provided</scope>
</dependency>
</dependencies>
</project>
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.graphml</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.graphml</groupId>
<artifactId>org.opennms.features.graphml.api</artifactId>
<name>OpenNMS :: Features :: GraphML :: API</name>
<packaging>bundle</packaging>
<dependencies>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jaxb-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.xml</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.xml</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>org.opennms.features</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.graphml</artifactId>
<name>OpenNMS :: Features :: GraphML (Parent)</name>
<packaging>pom</packaging>
<modules>
<module>api</module>
<module>service</module>
<module>rest</module>
</modules>
<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>com.google.guava</groupId>
<artifactId>guava</artifactId>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.graphml</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.graphml</groupId>
<artifactId>org.opennms.features.graphml.rest</artifactId>
<name>OpenNMS :: Features :: GraphML :: ReST</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>
<Private-Package>org.opennms.netmgt.graphml.rest.internal</Private-
Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms.features.graphml</groupId>
<artifactId>org.opennms.features.graphml.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-web-api</artifactId>
</dependency>
</dependencies>
</project>
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.graphml</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.graphml</groupId>
<artifactId>org.opennms.features.graphml.service</artifactId>
<name>OpenNMS :: Features :: GraphML :: Service</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>
<Private-Package>org.opennms.features.graphml.service.impl</Private-
Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms.features.graphml</groupId>
<artifactId>org.opennms.features.graphml.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.xml</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-library</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>org.opennms.features</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.ifttt</artifactId>
<name>OpenNMS :: Features :: IFTTT Integration</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>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<descriptors>
<descriptor>src/assembly/xsds.xml</descriptor>
</descriptors>
<overrideUid>0</overrideUid>
<overrideGid>0</overrideGid>
<tarLongFileMode>posix</tarLongFileMode>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>

<dependencies>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jaxb-dependencies</artifactId>
<type>pom</type>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-model</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>${guavaVersion}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient-osgi</artifactId>
<version>${httpclientVersion}</version>
<exclusions>
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
</exclusions>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.test-api</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.xml</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.powermock</groupId>
<artifactId>powermock-module-junit4</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.powermock</groupId>
<artifactId>powermock-api-mockito2</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.jayway.awaitility</groupId>
<artifactId>awaitility</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>${commonsIoVersion}</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?xml version="1.0"?>
<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.opennms</groupId>
<artifactId>org.opennms.features</artifactId>
<version>27.0.5</version>
</parent>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.instrumentationLogReader</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Features :: Instrumentation Log Reader</name>
<url>http://maven.apache.org</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifest>
<addClasspath>true</addClasspath>
<mainClass>org.opennms.util.ilr.Main</mainClass>
</manifest>
</archive>
</configuration>
</plugin>
<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>
<Export-Package>org.opennms.util.ilr.*;version="$
{project.version}"</Export-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-test-dependencies</artifactId>
<type>pom</type>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>org.opennms.features</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.jdbc-collector</artifactId>
<name>OpenNMS :: Features :: JDBC Collector</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>
<DynamicImport-Package>*</DynamicImport-Package>
</instructions>
</configuration>
</plugin>
<!-- // don't generate, just include a pre-generated version of the XSD
<plugin>
<groupId>com.sun.tools.jxc.maven2</groupId>
<artifactId>maven-jaxb-schemagen-plugin</artifactId>
<version>1.2</version>
<configuration>
<destdir>${project.build.directory}/xsds</destdir>
<srcdir>${basedir}/src/main/java</srcdir>
<verbose>false</verbose>
<includes>
<include>org/opennms/netmgt/config/jdbc/*.java</include>
</includes>
<schemas>
<schema>
<namespace>http://xmlns.opennms.org/xsd/config/jdbc-
datacollection</namespace>
<file>jdbc-datacollection.xsd</file>
</schema>
</schemas>
</configuration>
<executions>
<execution>
<phase>process-sources</phase>
<goals>
<goal>generate</goal>
</goals>
</execution>
</executions>
</plugin>
-->
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<descriptors>
<descriptor>src/assembly/xsds.xml</descriptor>
</descriptors>
<overrideUid>0</overrideUid>
<overrideGid>0</overrideGid>
<tarLongFileMode>posix</tarLongFileMode>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>

<dependencies>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jaxb-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.db</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-model</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-config-api</artifactId>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.lib</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.db</artifactId>
</dependency>
<dependency>
<groupId>org.easymock</groupId>
<artifactId>easymock</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>xmlunit</groupId>
<artifactId>xmlunit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.test-api</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<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.features</groupId>
<artifactId>org.opennms.features.jest</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.jest</groupId>
<artifactId>org.opennms.features.jest.client</artifactId>
<packaging>bundle</packaging>
<dependencies>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.compendium</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.lib</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.jest</groupId>
<artifactId>org.opennms.features.jest.dependencies</artifactId>
<version>${project.version}</version>
<type>pom</type>
</dependency>
<dependency>
<groupId>io.searchbox</groupId>
<artifactId>jest-complete-osgi</artifactId>
<version>${jestVersion}</version>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>${jestGsonVersion}</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient-osgi</artifactId>
<version>4.5.3</version>
</dependency>
<dependency>
<groupId>org.opennms.core.health</groupId>
<artifactId>org.opennms.core.health.api</artifactId>
<version>${project.version}</version>
</dependency>

<!-- Test dependencies -->


<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.lib</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-library</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.xml</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>jcl-over-slf4j</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.github.tomakehurst</groupId>
<artifactId>wiremock</artifactId>
<version>2.14.0</version>
<scope>test</scope>
</dependency>
</dependencies>

</project>

<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.features</groupId>
<artifactId>org.opennms.features.jest</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.jest</groupId>
<artifactId>org.opennms.features.jest.dependencies</artifactId>
<packaging>pom</packaging>
<dependencies>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>${jestGsonVersion}</version>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>21.0</version>
</dependency>
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
<version>1.9</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpcore-osgi</artifactId>
<version>4.4.6</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpcore-nio</artifactId>
<version>4.4.6</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient-osgi</artifactId>
<version>4.5.3</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpasyncclient-osgi</artifactId>
<version>4.1.3</version>
</dependency>
</dependencies>
</project>

<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.opennms.features</groupId>
<artifactId>org.opennms.features.jest</artifactId>
<version>27.0.5</version>
</parent>
<groupId>org.opennms.features.jest</groupId>
<artifactId>opennms-jest</artifactId>
<name>OpenNMS :: Features :: Jest :: Feature definition</name>
<description>Feature definition for Jest (ElasticSearch Java ReST
Client)</description>
<packaging>pom</packaging>
<!-- Versions below should match versions defined in module "jest-complete-
osgi" to avoid problems -->
<dependencies>
<dependency>
<groupId>org.opennms.features.jest</groupId>
<artifactId>org.opennms.features.jest.client</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.searchbox</groupId>
<artifactId>jest-complete-osgi</artifactId>
<version>${jestVersion}</version>
</dependency>
<!--
Same dependencies as in dependencies module.
Please ensure that they match, otherwise feature-generation
is not correct
-->
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>${jestGsonVersion}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>21.0</version>
</dependency>
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
<version>1.9</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpcore-osgi</artifactId>
<version>4.4.6</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpcore-nio</artifactId>
<version>4.4.6</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient-osgi</artifactId>
<version>4.5.3</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpasyncclient-osgi</artifactId>
<version>4.1.3</version>
</dependency>
</dependencies>

</project>

<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.features</groupId>
<artifactId>org.opennms.features.jest</artifactId>
<version>27.0.5</version>
</parent>

<!-- Feature Definition -->


<modelVersion>4.0.0</modelVersion>
<groupId>io.searchbox</groupId>
<artifactId>jest-complete-osgi</artifactId>
<version>${jestVersion}</version>
<name>jest-complete-osgi</name>
<description>shaded osgi bundle containing complete jest
implementation</description>
<packaging>bundle</packaging>

<properties>
<httpcoreVersion>4.3.3</httpcoreVersion>
<httpclientVersion>4.3.6</httpclientVersion>
<httpasyncclientVersion>4.0.2</httpasyncclientVersion>
</properties>

<build>

<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>${maven.shade.plugin.version}</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<artifactSet>
<includes>
<include>io.searchbox:jest</include>
<include>io.searchbox:jest-common</include>
</includes>
<excludes>
</excludes>
</artifactSet>
<!-- <transformers> -->
<!-- <transformer
implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer
"> -->
<!-- <manifestEntries> -->
<!-- <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
-->
<!-- <Export-
Package>io,io.searchbox,io.searchbox.action,io.searchbox.annotations,io.searchbox.c
lient,io.searchbox.client.config,io.searchbox.client.config.exception,io.searchbox.
client.config.idle,io.searchbox.client.http.apache,io.searchbox.cloning,io.searchbo
x.cluster,io.searchbox.core,io.searchbox.core.search,io.searchbox.core.search.aggre
gation,io.searchbox.core.search.sort,io.searchbox.indices,io.searchbox.indices.alia
ses,io.searchbox.indices.mapping,io.searchbox.indices.script,io.searchbox.indices.s
ettings,io.searchbox.indices.template,io.searchbox.indices.type,io.searchbox.params
,io.searchbox.snapshot -->
<!-- </Export-Package> -->
<!-- <Import-Package>*</Import-Package> -->
<!-- <Private-Package></Private-Package> -->
<!-- </manifestEntries> -->
<!-- </transformer> -->
<!-- </transformers> -->
<createDependencyReducedPom>true</createDependencyReducedPom>
</configuration>
</execution>
</executions>
</plugin>

<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<!-- <version>2.5.3</version> -->
<extensions>true</extensions>
<executions>
<!-- <execution> -->
<!-- <id>bundle-manifest</id> -->
<!-- <phase>process-classes</phase> -->
<!-- <goals> -->
<!-- <goal>manifest</goal> -->
<!-- </goals> -->
<!-- </execution> -->
</executions>
<configuration>
<instructions>
<unpackBundle>true</unpackBundle>
<Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
<Bundle-Version>${project.version}</Bundle-Version>
<Export-Package>
io,
io.searchbox,
io.searchbox.action,
io.searchbox.annotations,
io.searchbox.client,
io.searchbox.client.config,
io.searchbox.client.config.discovery,
io.searchbox.client.config.exception,
io.searchbox.client.config.idle,
io.searchbox.client.http.apache,
io.searchbox.cloning,
io.searchbox.cluster,
io.searchbox.core,
io.searchbox.core.search,
io.searchbox.core.search.aggregation,
io.searchbox.core.search.sort,
io.searchbox.indices,
io.searchbox.indices.aliases,
io.searchbox.indices.mapping,
io.searchbox.indices.script,
io.searchbox.indices.settings,
io.searchbox.indices.template,
io.searchbox.indices.type,
io.searchbox.params,
io.searchbox.snapshot
</Export-Package>
<Import-Package>
com.google.common.base,
com.google.common.collect,
com.google.common.io,
com.google.common.reflect,
com.google.common.util.concurrent,
com.google.gson,
com.google.gson.annotations,
io.searchbox.action,
io.searchbox.client.config.discovery,
io.searchbox.client.config.exception,
org.apache.http,
org.apache.http.auth,
org.apache.http.client,
org.apache.http.client.config,
org.apache.http.client.entity,
org.apache.http.client.methods,
org.apache.http.client.protocol,
org.apache.http.concurrent,
org.apache.http.config,
org.apache.http.conn,
org.apache.http.conn.routing,
org.apache.http.conn.socket,
org.apache.http.conn.ssl,
org.apache.http.entity,
org.apache.http.impl.auth,
org.apache.http.impl.client,
org.apache.http.impl.conn,
org.apache.http.impl.nio.client,
org.apache.http.impl.nio.conn,
org.apache.http.impl.nio.reactor,
org.apache.http.nio.conn,
org.apache.http.nio.conn.ssl,
org.apache.http.nio.reactor,
org.apache.http.protocol,
org.apache.http.util,
org.slf4j,
</Import-Package>
</instructions>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<executions>
<execution>
<id>check-license</id>
<phase>none</phase>
</execution>
<execution>
<id>check-style</id>
<phase>none</phase>
</execution>
</executions>
</plugin>
</plugins>
</build>

<dependencies>

<dependency>
<groupId>io.searchbox</groupId>
<artifactId>jest</artifactId>
<exclusions>
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
</exclusions>
</dependency>

<dependency>
<groupId>io.searchbox</groupId>
<artifactId>jest-common</artifactId>
<version>${jestVersion}</version>
<exclusions>
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
</exclusions>
</dependency>

<dependency>
<groupId>org.opennms.features.jest</groupId>
<artifactId>org.opennms.features.jest.dependencies</artifactId>
<version>${project.parent.version}</version>
<type>pom</type>
<scope>provided</scope>
</dependency>

<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>

</dependencies>
<pluginRepositories>
<pluginRepository>
<snapshots>
<enabled>false</enabled>
</snapshots>
<releases>
<enabled>true</enabled>
</releases>
<id>opennms-repo</id>
<name>OpenNMS Repository</name>
<url>http://maven.opennms.org/content/groups/opennms.org-release</url>
</pluginRepository>
</pluginRepositories>

</project>

<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.opennms</groupId>
<artifactId>org.opennms.features</artifactId>
<version>27.0.5</version>
</parent>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.jest</artifactId>
<name>OpenNMS :: Features :: Jest :: Parent</name>
<packaging>pom</packaging>
<modules>
<module>client</module>
<module>dependencies</module>
<module>feature</module>
<module>jest-complete-osgi</module>
</modules>
<build>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<instructions>
<Bundle-SymbolicName>${project.artifactId}</Bundle-
SymbolicName>
<Bundle-Version>${project.version}</Bundle-Version>
<Karaf-Commands>*</Karaf-Commands>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>io.searchbox</groupId>
<artifactId>jest</artifactId>
<version>${jestVersion}</version>
</dependency>
</dependencies>
</dependencyManagement>
</project>
<?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">

<modelVersion>4.0.0</modelVersion>
<parent>
<artifactId>org.opennms.features</artifactId>
<groupId>org.opennms</groupId>
<version>27.0.5</version>
</parent>
<groupId>org.opennms.features</groupId>
<artifactId>jmxconfiggenerator</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Features :: JMX Config Generator</name>
<url>http://www.opennms.org</url>

<properties>
<velocity.version>1.7</velocity.version>
</properties>

<build>
<resources>
<resource>
<directory>src/main/resources</directory>
</resource>
<resource>
<filtering>true</filtering>
<directory>src/main/filtered</directory>
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<extensions>true</extensions>
</plugin>

<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<executions>
<execution>
<id>add-features-xml</id>
<phase>package</phase>
<goals><goal>attach-artifact</goal></goals>
<configuration>
<artifacts>
<artifact>
<file>$
{project.build.outputDirectory}/features.xml</file>
<type>xml</type>
<classifier>features</classifier>
</artifact>
</artifacts>
</configuration>
</execution>
</executions>
</plugin>
<!-- We generate a big onejar.jar file to make Deployment easier -->
<plugin>
<groupId>org.dstovall</groupId>
<artifactId>onejar-maven-plugin</artifactId>
<configuration>
<filename>${project.artifactId}-${project.version}-
onejar.jar</filename>

<mainClass>org.opennms.features.jmxconfiggenerator.Starter</mainClass>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.xml</artifactId>
<exclusions>
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.name-cutter</artifactId>
<exclusions>
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-config-jaxb</artifactId>
</dependency>
<dependency>
<groupId>org.apache.velocity</groupId>
<artifactId>velocity</artifactId>
<version>${velocity.version}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<version>${slf4jVersion}</version>
</dependency>
<dependency>
<groupId>args4j</groupId>
<artifactId>args4j</artifactId>
<version>${args4jVersion}</version>
</dependency>
<dependency>
<groupId>org.jvnet.opendmk</groupId>
<artifactId>jmxremote_optional</artifactId>
<version>${jmxremote.optional.version}</version>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
</dependency>

<!-- Testing -->


<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
</dependency>
</dependencies>
<pluginRepositories>
<pluginRepository>
<id>onejar-maven-plugin.googlecode.com</id>
<url>http://maven.opennms.org/content/repositories/onejar-maven-
plugin.googlecode.com/</url>
</pluginRepository>
</pluginRepositories>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>org.opennms.features</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.juniper-tca-collector</artifactId>
<name>OpenNMS :: Features :: Juniper TCA Collector</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>
<!--
<plugin>
<groupId>com.sun.tools.jxc.maven2</groupId>
<artifactId>maven-jaxb-schemagen-plugin</artifactId>
<version>1.2</version>
<configuration>
<destdir>${project.build.directory}/xsds</destdir>
<srcdir>${basedir}/src/main/java</srcdir>
<verbose>false</verbose>
<includes>
<include>org/opennms/netmgt/collectd/tca/config/*.java</include>
</includes>
<schemas>
<schema>
<namespace>http://xmlns.opennms.org/xsd/config/tca-
datacollection</namespace>
<file>tca-datacollection-config.xsd</file>
</schema>
</schemas>
</configuration>
<executions>
<execution>
<phase>process-sources</phase>
<goals>
<goal>generate</goal>
</goals>
</execution>
</executions>
</plugin>
-->
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<descriptors>
<descriptor>src/assembly/etc.xml</descriptor>
<descriptor>src/assembly/xsds.xml</descriptor>
</descriptors>
<overrideUid>0</overrideUid>
<overrideGid>0</overrideGid>
<tarLongFileMode>posix</tarLongFileMode>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-model</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.persistence.rrd</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-services</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-test-dependencies</artifactId>
<type>pom</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>snmp-test-dependencies</artifactId>
<type>pom</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.easymock</groupId>
<artifactId>easymock</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrd-jrobin</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jrrd2-dependencies</artifactId>
<scope>test</scope>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrdtool-api</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.db</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.services</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.snmp</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.collection</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>xmlunit</groupId>
<artifactId>xmlunit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.test-api</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-mock</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?xml version="1.0" encoding="UTF-8"?>
<project
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/maven-v4_0_0.xsd"
>
<parent>
<groupId>org.opennms</groupId>
<artifactId>org.opennms.features</artifactId>
<version>27.0.5</version>
</parent>

<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.kafka</artifactId>
<name>OpenNMS :: Features :: Kafka</name>
<packaging>pom</packaging>

<modules>
<module>producer</module>
</modules>

</project>
<?xml version="1.0" encoding="UTF-8"?>
<project
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="
http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd
">

<parent>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.kafka</artifactId>
<version>27.0.5</version>
</parent>

<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.kafka</groupId>
<artifactId>org.opennms.features.kafka.producer</artifactId>

<name>OpenNMS :: Features :: Kafka :: Producer</name>

<packaging>bundle</packaging>

<build>
<!-- Enable below extension and plugin when you need to generate java source
files from proto -->

<!-- <extensions>
<extension>
<groupId>kr.motd.maven</groupId>
<artifactId>os-maven-plugin</artifactId>
<version>1.6.2</version>
</extension>
</extensions>-->
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<instructions>
<Bundle-RequiredExecutionEnvironment>JavaSE-1.8</Bundle-
RequiredExecutionEnvironment>
<Karaf-Commands>*</Karaf-Commands>
<Bundle-
Activator>org.opennms.features.kafka.producer.collection.KafkaPersisterActivator</B
undle-Activator>
</instructions>
</configuration>
</plugin>
<!-- <plugin>
<groupId>org.xolstice.maven.plugins</groupId>
<artifactId>protobuf-maven-plugin</artifactId>
<version>0.6.1</version>
<configuration>
<protocArtifact>com.google.protobuf:protoc:3.6.1:exe:$
{os.detected.classifier}</protocArtifact>
<pluginId>grpc-java</pluginId>
<pluginArtifact>io.grpc:protoc-gen-grpc-java:1.24.0:exe:$
{os.detected.classifier}</pluginArtifact>
</configuration>
<executions>
<execution>
<goals>
<goal>compile</goal>
<goal>compile-custom</goal>
</goals>
</execution>
</executions>
</plugin>-->
</plugins>
</build>

<dependencies>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.compendium</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.lib</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.common</groupId>
<artifactId>org.opennms.core.ipc.common.kafka</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.api</artifactId>
</dependency>
<!-- Kafka -->
<dependency>
<groupId>org.apache.kafka</groupId>
<artifactId>kafka-streams</artifactId>
<version>${kafkaVersion}</version>
<exclusions>
<exclusion>
<artifactId>kafka-clients</artifactId>
<groupId>org.apache.kafka</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.servicemix.bundles</groupId>
<artifactId>org.apache.servicemix.bundles.kafka-clients</artifactId>
<version>${kafkaBundleVersion}</version>
<exclusions>
<exclusion>
<artifactId>log4j</artifactId>
<groupId>log4j</groupId>
</exclusion>
<exclusion>
<artifactId>slf4j-log4j12</artifactId>
<groupId>org.slf4j</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId> com.google.protobuf</groupId>
<artifactId>protobuf-java</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-alarm-api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.apache.karaf.shell</groupId>
<artifactId>org.apache.karaf.shell.core</artifactId>
</dependency>
<dependency>
<groupId>com.swrve</groupId>
<artifactId>rate-limited-logger</artifactId>
<version>${rateLimitedLoggerVersion}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.situation-feedback</groupId>
<artifactId>org.opennms.features.situation-feedback.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.topologies</groupId>
<artifactId>org.opennms.features.topologies.service.api</artifactId>
<version>${project.version}</version>
</dependency>

<!-- Test -->


<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.xml</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.camel</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-alarmd</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.services</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.daemon</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.collection</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-services</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.jayway.awaitility</groupId>
<artifactId>awaitility</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.kafka</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.tests</groupId>
<artifactId>org.opennms.tests.mock-elements</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-mock</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.db</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.topologies</groupId>
<artifactId>org.opennms.features.topologies.service.impl</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.enlinkd</groupId>
<artifactId>org.opennms.features.enlinkd.service.api</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.topologies</groupId>
<artifactId>org.opennms.features.topologies.service.api</artifactId>
<version>${project.version}</version>
<type>test-jar</type>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?xml version="1.0" encoding="UTF-8"?>
<project
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="
http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd
">

<parent>
<groupId>org.opennms</groupId>
<artifactId>org.opennms.features</artifactId>
<version>27.0.5</version>
</parent>

<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.karaf-health</artifactId>

<name>OpenNMS :: Features :: Karaf Health</name>

<packaging>bundle</packaging>

<build>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<configuration>
<instructions>
<Bundle-SymbolicName>${bundle.symbolicName}</Bundle-
SymbolicName>
<Bundle-Version>${project.version}</Bundle-Version>
<Bundle-
Activator>org.opennms.features.karaf.health.bundle.Activator</Bundle-Activator>
<Import-Package>
org.opennms.netmgt.daemon;resolution:=optional,
*
</Import-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>

<dependencies>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.daemon</artifactId>
</dependency>
</dependencies>

</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.measurements</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.measurements</groupId>
<artifactId>org.opennms.features.measurements.api</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Features :: Measurements :: API</name>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<executions>
<execution>
<id>default-compile</id>
<phase>compile</phase>
<goals>
<goal>compile</goal>
</goals>
<configuration>
<!-- To load the jar file into jaspersoft studio it is required to be
Java 1.7 compatible -->
<source>1.7</source>
<target>1.7</target>
</configuration>
</execution>
</executions>
</plugin>
<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.core</groupId>
<artifactId>org.opennms.core.lib</artifactId>
</dependency>

<!-- Third party -->


<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</dependency>

<!-- Testing -->


<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.xml</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.measurements</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.measurements</groupId>
<artifactId>org.opennms.features.measurements.impl</artifactId>
<packaging>jar</packaging>
<name>OpenNMS :: Features :: Measurements :: Impl.</name>
<dependencies>
<!-- Core -->
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-api</artifactId>
</dependency>

<!-- Measurements API -->


<dependency>
<groupId>org.opennms.features.measurements</groupId>
<artifactId>org.opennms.features.measurements.api</artifactId>
</dependency>

<!-- R -->
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-R</artifactId>
<version>${project.version}</version>
</dependency>

<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-math3</artifactId>
<version>${commonsMath3Version}</version>
</dependency>

<!-- RRD/JRobin -->


<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrd-model</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrdtool-api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrd-jrobin</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jrrd2-dependencies</artifactId>
<scope>provided</scope>
<type>pom</type>
</dependency>

<!-- Third party -->


<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-exec</artifactId>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-jexl</artifactId>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>org.opennms.features</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.measurements</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Features :: Measurements</name>
<modules>
<module>api</module>
<module>impl</module>
<module>rest</module>
<module>shell</module>
</modules>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.measurements</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.measurements</groupId>
<artifactId>org.opennms.features.measurements.rest</artifactId>
<packaging>jar</packaging>
<name>OpenNMS :: Features :: Measurements :: ReST</name>

<dependencies>
<!-- Core -->
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.web</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-util</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao</artifactId>
</dependency>

<!-- Measurements API Implementations -->


<dependency>
<groupId>org.opennms.features.measurements</groupId>
<artifactId>org.opennms.features.measurements.impl</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jrrd2-dependencies</artifactId>
<scope>provided</scope>
<type>pom</type>
</dependency>

<!-- Third party -->


<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>cxf-dependencies</artifactId>
<version>${project.version}</version>
<type>pom</type>
</dependency>

<!-- Testing -->


<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-config</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-mock</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.rest-provider</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-web-api</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-webapp-rest</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.db</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.services</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.rest</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.persistence.rrd</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-alarm-northbounder-email</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-alarm-northbounder-syslog</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-alarm-northbounder-snmptrap</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-library</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.timeformat</groupId>
<artifactId>org.opennms.features.timeformat.impl</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.distributed</groupId>
<artifactId>org.opennms.features.distributed.kv-
store.json.postgres</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.enlinkd</groupId>
<artifactId>org.opennms.features.enlinkd.service.api</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<!-- Expose the test context for thresholding DAOs -->
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.thresholding.impl</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<!-- Expose the test context for poller DAOs -->
<groupId>org.opennms</groupId>
<artifactId>opennms-services</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.measurements</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.measurements</groupId>
<artifactId>org.opennms.features.measurements.shell</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Features :: Measurements :: Shell</name>

<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.apache.karaf.shell</groupId>
<artifactId>org.apache.karaf.shell.core</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.measurements</groupId>
<artifactId>org.opennms.features.measurements.api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.newts</groupId>
<artifactId>newts-api</artifactId>
<version>${newtsVersion}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-api</artifactId>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<artifactId>org.opennms.features</artifactId>
<groupId>org.opennms</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.mib-compiler</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Features :: MIB-Compiler</name>

<description>Standalong MIB-Compiler based on JSMILib</description>


<properties>
<bundle.symbolicName>org.opennms.features.mib-compiler</bundle.symbolicName>
<bundle.namespace>org.opennms.features</bundle.namespace>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<jsmiparser.version>0.13</jsmiparser.version>
</properties>

<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>
<Export-Package>!${bundle.namespace}.internal.*,$
{bundle.namespace}.*;version="${project.version}"</Export-Package>
<Private-Package>${bundle.namespace}.internal.*</Private-Package>
<Embed-Dependency>jsmiparser*</Embed-Dependency>
<Embed-Transitive>true</Embed-Transitive>
</instructions>
</configuration>
</plugin>
</plugins>
</build>

<dependencies>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-dependencies</artifactId>
<scope>provided</scope>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.lib</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-config</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.jsmiparser</groupId>
<artifactId>jsmiparser-api</artifactId>
<version>${jsmiparser.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.name-cutter</artifactId>
</dependency>
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
</dependency>

<!-- JsmiParser Dependency, to avoid Karaf loading problems -->

<dependency>
<groupId>commons-beanutils</groupId>
<artifactId>commons-beanutils</artifactId>
</dependency>

<!-- Tests Dependencies -->

<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.lib</artifactId>
<scope>test</scope>
</dependency>
</dependencies>

</project>
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="
http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd
">

<parent>
<groupId>org.opennms.features.minion</groupId>
<artifactId>core-parent</artifactId>
<version>27.0.5</version>
</parent>

<modelVersion>4.0.0</modelVersion>

<artifactId>core-features</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Features :: Minion :: Core :: Features</name>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<executions>
<execution>
<id>copy-resources</id>
<phase>generate-resources</phase>
<goals>
<goal>copy-resources</goal>
</goals>
<configuration>
<outputDirectory>$
{project.build.outputDirectory}</outputDirectory>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<executions>
<execution>
<id>attach-artifacts</id>
<phase>package</phase>
<goals>
<goal>attach-artifact</goal>
</goals>
<configuration>
<artifacts>
<artifact>
<file>$
{project.build.outputDirectory}/features.xml</file>
<type>xml</type>
</artifact>
</artifacts>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>

<dependencies>
<dependency>
<groupId>org.opennms.features.minion</groupId>
<artifactId>core-impl</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.distributed</groupId>
<artifactId>jms</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.distributed</groupId>
<artifactId>shell</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core.health</groupId>
<artifactId>org.opennms.core.health.impl</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core.health</groupId>
<artifactId>org.opennms.core.health.shell</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</project>
<?xml version="1.0"?>
<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.features.minion</groupId>
<artifactId>core-parent</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>core-impl</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Features :: Minion :: Core :: Impl.</name>

<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.features.distributed</groupId>
<artifactId>core-api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.distributed</groupId>
<artifactId>core-impl</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.distributed</groupId>
<artifactId>shell</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</project>
<?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.features.minion</groupId>
<artifactId>core-parent</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>minion-rest-client</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Features :: Minion :: ReST Client</name>

<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.features.distributed</groupId>
<artifactId>core-api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.distributed</groupId>
<artifactId>core-impl</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.scv</groupId>
<artifactId>org.opennms.features.scv.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.8.0</version>
</dependency>
</dependencies>
</project><?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.features.minion</groupId>
<artifactId>minion-parent</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>core-parent</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Features :: Minion :: Core</name>

<modules>
<module>impl</module>
<module>features</module>
<module>repository</module>
<module>minion-rest-client</module>
</modules>
</project>
<?xml version="1.0"?>
<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.features.minion</groupId>
<artifactId>core-parent</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>core-repository</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Features :: Minion :: Core :: Repository</name>

<build>
<plugins>
<plugin>
<groupId>org.apache.karaf.tooling</groupId>
<artifactId>karaf-maven-plugin</artifactId>
<version>${karafVersion}</version>
<executions>
<execution>
<id>features-add-to-repository</id>
<phase>process-resources</phase>
<goals>
<goal>features-add-to-repository</goal>
</goals>
<configuration>
<descriptors>
<!-- Default repositories -->
<descriptor>mvn:org.apache.karaf.features/standard/
${karafVersion}/xml/features</descriptor>
<descriptor>mvn:org.apache.karaf.features/spring/$
{karafVersion}/xml/features</descriptor>
<descriptor>mvn:org.apache.karaf.features/spring-
legacy/${karafVersion}/xml/features</descriptor>
<!-- Add Minion features -->
<descriptor>mvn:org.opennms.features.minion/core-
features/${project.version}/xml</descriptor>
<!-- Add OpenNMS features -->
<descriptor>mvn:org.opennms.karaf/opennms/$
{project.version}/xml/features</descriptor>
</descriptors>
<!-- To ensure that all JAR files for a feature
are included in the repository tar.gz file, add the
feature to this list. -->
<features>
<!-- Minion Core Features -->
<feature>minion-core</feature>
<feature>minion-jms</feature>
<feature>minion-core-shell</feature>
</features>
<repository>${project.build.directory}/maven-
repo</repository>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<executions>
<execution>
<id>copy-resources</id>
<phase>generate-resources</phase>
<goals>
<goal>copy-resources</goal>
</goals>
<configuration>
<outputDirectory>${project.build.directory}/maven-
repo</outputDirectory>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>net.nicoulaj.maven.plugins</groupId>
<artifactId>checksum-maven-plugin</artifactId>
<executions>
<execution>
<phase>prepare-package</phase>
<goals><goal>files</goal></goals>
</execution>
</executions>
<configuration>
<algorithms><algorithm>SHA-1</algorithm></algorithms>
<fileSets>
<fileSet>
<directory>${project.build.directory}/maven-
repo</directory>
<includes>
<include>**/*.cfg</include>
<include>**/*.jar</include>
<include>**/*.pom</include>
<include>**/*.war</include>
<include>**/*.xml</include>
</includes>
</fileSet>
</fileSets>
</configuration>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<descriptors>
<descriptor>src/assembly/repo.xml</descriptor>
</descriptors>
<overrideUid>0</overrideUid>
<overrideGid>0</overrideGid>
<tarLongFileMode>posix</tarLongFileMode>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-clean-plugin</artifactId>
<executions>
<execution>
<id>cleanup-after-integration-tests</id>
<phase>post-integration-test</phase>
<goals>
<goal>clean</goal>
</goals>
<configuration>
<excludeDefaultDirectories>true</excludeDefaultDirectories>
<filesets>
<fileset>
<directory>${project.build.directory}/maven-
repo</directory>
</fileset>
</filesets>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<!-- Required for com.eclipsesource.jaxrs/* -->
<repositories>
<repository>
<snapshots>
<enabled>false</enabled>
</snapshots>
<releases>
<enabled>true</enabled>
</releases>
<id>opennms-repo</id>
<name>OpenNMS Repository</name>
<url>http://maven.opennms.org/content/groups/opennms.org-release</url>
</repository>
<repository>
<snapshots>
<enabled>true</enabled>
</snapshots>
<releases>
<enabled>false</enabled>
</releases>
<id>opennms-snapshots</id>
<name>OpenNMS Snapshot Maven Repository</name>
<url>http://maven.opennms.org/content/groups/opennms.org-snapshot</url>
</repository>
</repositories>

<dependencies>
<dependency>
<groupId>org.opennms.features.minion</groupId>
<artifactId>core-features</artifactId>
<version>${project.version}</version>
<type>xml</type>
</dependency>
<dependency>
<groupId>org.opennms.karaf</groupId>
<artifactId>opennms</artifactId>
<version>${project.version}</version>
<classifier>features</classifier>
<type>xml</type>
</dependency>
</dependencies>

</project>
<?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>
<artifactId>dominion</artifactId>
<groupId>org.opennms.features.minion</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>dominion-grpc-client</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Features :: Minion :: Dominion :: gRPC Client</name>

<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.features.distributed</groupId>
<artifactId>core-api</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.google.protobuf</groupId>
<artifactId>protobuf-java</artifactId>
<version>${protobufVersion}</version>
</dependency>
<dependency>
<groupId>io.grpc</groupId>
<artifactId>grpc-api</artifactId>
<version>${grpcVersion}</version>
</dependency>
<dependency>
<groupId>io.grpc</groupId>
<artifactId>grpc-stub</artifactId>
<version>${grpcVersion}</version>
</dependency>
<dependency>
<groupId>io.grpc</groupId>
<artifactId>grpc-protobuf</artifactId>
<version>${grpcVersion}</version>
</dependency>
</dependencies>

</project><?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.features.minion</groupId>
<artifactId>minion-parent</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>dominion</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Features :: Minion :: Dominion</name>
<modules>
<module>grpc-client</module>
</modules>
</project><?xml version="1.0"?>
<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.features.minion</groupId>
<artifactId>org.opennms.features.minion.heartbeat</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.minion.heartbeat</groupId>
<artifactId>org.opennms.features.minion.heartbeat.common</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Features :: Minion :: Heartbeat :: Common</name>

<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.features.distributed</groupId>
<artifactId>core-api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.sink</groupId>
<artifactId>org.opennms.core.ipc.sink.xml</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.xml</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?xml version="1.0"?>
<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.features.minion</groupId>
<artifactId>org.opennms.features.minion.heartbeat</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.minion.heartbeat</groupId>
<artifactId>org.opennms.features.minion.heartbeat.consumer</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Features :: Minion :: Heartbeat :: Consumer</name>

<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.features.minion.heartbeat</groupId>
<artifactId>org.opennms.features.minion.heartbeat.common</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-provision-persistence</artifactId>
</dependency>
</dependencies>
</project>
<?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.features.minion</groupId>
<artifactId>minion-parent</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>org.opennms.features.minion.heartbeat</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Features :: Minion :: Heartbeat</name>

<modules>
<module>common</module>
<module>consumer</module>
<module>producer</module>
</modules>
</project>
<?xml version="1.0"?>
<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.features.minion</groupId>
<artifactId>org.opennms.features.minion.heartbeat</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.minion.heartbeat</groupId>
<artifactId>org.opennms.features.minion.heartbeat.producer</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Features :: Minion :: Heartbeat :: Producer</name>

<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.features.minion.heartbeat</groupId>
<artifactId>org.opennms.features.minion.heartbeat.common</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</project>
<?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</groupId>
<artifactId>org.opennms.features</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.minion</groupId>
<artifactId>minion-parent</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Features :: Minion</name>

<modules>
<module>core</module>
<module>heartbeat</module>
<module>repository</module>
<module>shell</module>
<module>status</module>
<module>dominion</module>
</modules>

<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.karaf.tooling</groupId>
<artifactId>karaf-maven-plugin</artifactId>
<version>${karafVersion}</version>
<extensions>true</extensions>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>
<?xml version="1.0"?>
<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.features.minion</groupId>
<artifactId>minion-parent</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>repository</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Features :: Minion :: Default Repository</name>

<build>
<plugins>
<plugin>
<groupId>org.apache.karaf.tooling</groupId>
<artifactId>karaf-maven-plugin</artifactId>
<version>${karafVersion}</version>
<executions>
<execution>
<id>features-add-to-repository</id>
<phase>process-resources</phase>
<goals>
<goal>features-add-to-repository</goal>
</goals>
<configuration>
<descriptors>
<descriptor>mvn:org.apache.karaf.features/standard/
${karafVersion}/xml/features</descriptor>
<descriptor>mvn:org.apache.karaf.features/spring/$
{karafVersion}/xml/features</descriptor>
<descriptor>mvn:org.apache.karaf.features/spring-
legacy/${karafVersion}/xml/features</descriptor>
<!-- Add OpenNMS features -->
<descriptor>mvn:org.opennms.karaf/opennms/$
{project.version}/xml/features</descriptor>
<!-- Add Minion features -->
<descriptor>mvn:org.opennms.karaf/opennms/$
{project.version}/xml/minion</descriptor>
<!-- Additional tools -->
<descriptor>mvn:io.hawt/hawtio-karaf/$
{hawtio.version}/xml/features</descriptor>
</descriptors>
<!-- To ensure that all JAR files for a feature
are included in the repository tar.gz file, add the
feature to this list. -->
<features>
<feature>opennms-core-ipc-rpc-jms</feature>
<feature>opennms-core-ipc-rpc-aws-sqs</feature>
<feature>opennms-core-ipc-rpc-kafka</feature>
<feature>opennms-core-ipc-sink-camel</feature>
<feature>opennms-core-ipc-sink-kafka</feature>
<feature>opennms-core-ipc-sink-aws-sqs</feature>
<feature>opennms-core-ipc-sink-offheap</feature>
<feature>opennms-syslogd-listener-javanet</feature>
<feature>opennms-syslogd-listener-camel-
netty</feature>
<feature>opennms-trapd-listener</feature>
<feature>opennms-send-event-command</feature>
<feature>opennms-events-sink-dispatcher</feature>
<feature>minion-rest-client</feature>
<feature>minion-shell</feature>
<feature>minion-heartbeat-producer</feature>
<feature>minion-snmp-proxy</feature>
<feature>minion-provisiond-detectors</feature>
<feature>minion-provisiond-requisitions</feature>
<feature>minion-poller</feature>
<feature>minion-collection</feature>
<feature>minion-icmp-proxy</feature>
<feature>minion-telemetryd-receivers</feature>
<feature>hawtio-offline</feature>
<feature>cxf-commands/${cxfVersion}</feature>
<feature>opennms-core-tracing-jaeger</feature>
<feature>opennms-dnsresolver-shell</feature>
<feature>opennms-dnsresolver-netty</feature>
<feature>opennms-core-ipc-grpc-client</feature>
<feature>opennms-distributed-core-impl</feature>
<feature>scv-api</feature>
<feature>scv-shell</feature>
<feature>scv-jceks-impl</feature>
<feature>dominion-grpc-client</feature>
<feature>dominion-secure-credentials-
vault</feature>
</features>
<repository>${project.build.directory}/maven-
repo</repository>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<executions>
<execution>
<id>copy-resources</id>
<phase>generate-resources</phase>
<goals>
<goal>copy-resources</goal>
</goals>
<configuration>
<outputDirectory>${project.build.directory}/maven-
repo</outputDirectory>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<descriptors>
<descriptor>src/assembly/repo.xml</descriptor>
</descriptors>
<overrideUid>0</overrideUid>
<overrideGid>0</overrideGid>
<tarLongFileMode>posix</tarLongFileMode>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-clean-plugin</artifactId>
<executions>
<execution>
<id>cleanup-after-integration-tests</id>
<phase>post-integration-test</phase>
<goals>
<goal>clean</goal>
</goals>
<configuration>

<excludeDefaultDirectories>true</excludeDefaultDirectories>
<filesets>
<fileset>
<directory>${project.build.directory}/maven-
repo</directory>
</fileset>
</filesets>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>

<dependencies>
<dependency>
<groupId>org.opennms.karaf</groupId>
<artifactId>opennms</artifactId>
<version>${project.version}</version>
<classifier>features</classifier>
<type>xml</type>
</dependency>
<dependency>
<groupId>org.opennms.features.minion</groupId>
<artifactId>minion-rest-client</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.minion</groupId>
<artifactId>core-impl</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.distributed</groupId>
<artifactId>jms</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.distributed</groupId>
<artifactId>core-impl</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.minion.shell</groupId>
<artifactId>org.opennms.features.minion.shell.collection</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.minion.shell</groupId>
<artifactId>org.opennms.features.minion.shell.poller</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.minion.shell</groupId>
<artifactId>org.opennms.features.minion.shell.provision</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.minion.heartbeat</groupId>
<artifactId>org.opennms.features.minion.heartbeat.producer</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.events.sink</groupId>
<artifactId>org.opennms.features.events.sink.dispatcher</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.events.sink</groupId>
<artifactId>org.opennms.features.events.sink.command</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.common</groupId>
<artifactId>org.opennms.core.ipc.common.kafka-shell</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-requisition-service</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-detector-bsf</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-detector-dhcp</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-detector-lineoriented</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-detector-generic</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-detector-simple</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-detector-datagram</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-detector-jmx</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-detector-jms</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-detector-jdbc</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-detector-rdns-lookup</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-detector-ssh</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-detector-web</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.protocols</groupId>
<artifactId>org.opennms.protocols.radius</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.protocols</groupId>
<artifactId>org.opennms.protocols.xmp</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.protocols</groupId>
<artifactId>org.opennms.protocols.nsclient</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.collectors</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.wsman</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.telemetry.protocols.bmp</groupId>

<artifactId>org.opennms.features.telemetry.protocols.bmp.parser</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.telemetry.protocols.netflow</groupId>

<artifactId>org.opennms.features.telemetry.protocols.netflow.parser</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.telemetry.protocols.sflow</groupId>

<artifactId>org.opennms.features.telemetry.protocols.sflow.parser</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.rpc</groupId>
<artifactId>org.opennms.core.ipc.rpc.jms-impl</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.rpc</groupId>
<artifactId>org.opennms.core.ipc.rpc.kafka</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.rpc</groupId>
<artifactId>org.opennms.core.ipc.rpc.aws-sqs-impl</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.sink.camel</groupId>
<artifactId>org.opennms.core.ipc.sink.camel.client</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.sink.kafka</groupId>
<artifactId>org.opennms.core.ipc.sink.kafka.client</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.sink.aws.sqs</groupId>
<artifactId>org.opennms.core.ipc.sink.aws.sqs.client</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.sink</groupId>
<artifactId>org.opennms.core.ipc.sink.offheap</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core.tracing</groupId>
<artifactId>org.opennms.core.tracing.jaeger-osgi</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core.tracing</groupId>
<artifactId>org.opennms.core.tracing.jaeger-tracer</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.distributed</groupId>
<artifactId>org.opennms.features.distributed.dao-api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.poller</groupId>
<artifactId>org.opennms.features.poller.client-rpc</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.poller.monitors</groupId>
<artifactId>org.opennms.features.poller.monitors.core</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.jdbc-collector</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-vmware</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.protocols</groupId>
<artifactId>org.opennms.protocols.xml</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.dnsresolver</groupId>
<artifactId>org.opennms.features.dnsresolver.netty</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.dnsresolver</groupId>
<artifactId>org.opennms.features.dnsresolver.shell</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.grpc</groupId>
<artifactId>org.opennms.core.ipc.grpc.client</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.grpc</groupId>
<artifactId>org.opennms.core.ipc.grpc.common</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core.grpc</groupId>
<artifactId>org.opennms.core.grpc.osgi</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.minion</groupId>
<artifactId>dominion-grpc-client</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.scv</groupId>
<artifactId>org.opennms.features.scv.jceks-impl</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.scv</groupId>
<artifactId>org.opennms.features.scv.shell</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.scv</groupId>
<artifactId>org.opennms.features.scv.dominion-grpc-impl</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>

<repositories>
<repository>
<snapshots><enabled>false</enabled></snapshots>
<releases><enabled>true</enabled></releases>
<id>opennms-repo</id>
<name>OpenNMS Repository</name>
<url>http://maven.opennms.org/content/groups/opennms.org-release</url>
</repository>
<repository>
<snapshots>
<enabled>false</enabled>
</snapshots>
<releases>
<enabled>true</enabled>
</releases>
<id>sonatype-public-repo</id>
<name>Sonatype Public Maven Repository</name>
<url>http://maven.opennms.org/content/repositories/sonatype-public-
repo/</url>
</repository>
<repository>
<snapshots>
<enabled>false</enabled>
</snapshots>
<releases>
<enabled>true</enabled>
</releases>
<id>coova</id>
<name>Coova Repository</name>
<url>http://maven.opennms.org/content/repositories/coova/</url>
</repository>
</repositories>
</project>
<?xml version="1.0"?>
<project
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/xsd/maven-4.0.0.xsd"
xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.opennms.features.minion</groupId>
<artifactId>org.opennms.features.minion.shell</artifactId>
<version>27.0.5</version>
</parent>
<groupId>org.opennms.features.minion.shell</groupId>
<artifactId>org.opennms.features.minion.shell.collection</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Features :: Minion :: Shell :: Collection</name>

<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.apache.karaf.shell</groupId>
<artifactId>org.apache.karaf.shell.core</artifactId>
<version>${karafVersion}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.api</artifactId>
</dependency>
</dependencies>
</project>
<?xml version="1.0"?>
<project
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/xsd/maven-4.0.0.xsd"
xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.opennms.features.minion</groupId>
<artifactId>org.opennms.features.minion.shell</artifactId>
<version>27.0.5</version>
</parent>

<groupId>org.opennms.features.minion.shell</groupId>
<artifactId>org.opennms.features.minion.shell.poller</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Features :: Minion :: Shell :: Poller</name>

<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.apache.karaf.shell</groupId>
<artifactId>org.apache.karaf.shell.core</artifactId>
<version>${karafVersion}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.poller</groupId>
<artifactId>org.opennms.features.poller.api</artifactId>
</dependency>
</dependencies>
</project>
<?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.features.minion</groupId>
<artifactId>minion-parent</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>org.opennms.features.minion.shell</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Features :: Minion :: Shell</name>

<modules>
<module>collection</module>
<module>provision</module>
<module>poller</module>
</modules>
</project>
<?xml version="1.0"?>
<project
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/xsd/maven-4.0.0.xsd"
xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.opennms.features.minion</groupId>
<artifactId>org.opennms.features.minion.shell</artifactId>
<version>27.0.5</version>
</parent>

<groupId>org.opennms.features.minion.shell</groupId>
<artifactId>org.opennms.features.minion.shell.provision</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Features :: Minion :: Shell :: Provision</name>

<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</groupId>
<artifactId>opennms-detector-registry</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.apache.karaf.shell</groupId>
<artifactId>org.apache.karaf.shell.core</artifactId>
<version>${karafVersion}</version>
</dependency>
</dependencies>
</project>
<?xml version="1.0"?>
<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.features.minion</groupId>
<artifactId>minion-parent</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>org.opennms.features.minion.status</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Features :: Minion :: Status</name>

<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.dependencies</groupId>
<artifactId>spring-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-model</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-api</artifactId>
</dependency>
<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.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.lib</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<artifactId>org.opennms.features</artifactId>
<groupId>org.opennms</groupId>
<version>27.0.5</version>
</parent>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.name-cutter</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Features :: Name Cutter</name>

<build>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<extensions>true</extensions>
</plugin>
</plugins>
</build>

<dependencies>

<!-- Helpers -->


<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
</dependency>

<!-- Logging -->


<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>

<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>

</project>
<?xml version="1.0"?>
<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>
<artifactId>org.opennms.features</artifactId>
<groupId>org.opennms</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features</groupId>
<artifactId>newts-repository-converter</artifactId>
<name>RRD / JRobin to NewTS Conversion/Migration Tool</name>
<packaging>jar</packaging>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.db</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jrobin-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrd-api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrd-model</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrdtool-api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrd-jrobin</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.logging</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.newts</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>commons-cli</groupId>
<artifactId>commons-cli</artifactId>
</dependency>
<dependency>
<groupId>joda-time</groupId>
<artifactId>joda-time</artifactId>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<!-- The embedded Cassandra server used for integration testing requires a
newer
version of Guava. Since we can't have different versions of the
artifacts in
the compile and test scope, we use a newer version here, and mark it as
provided -->
<version>19.0</version>
<scope>provided</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.opennms</groupId>
<artifactId>opennms-dao</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.db</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.newts</groupId>
<artifactId>newts-cassandra-test</artifactId>
<version>${newtsVersion}</version>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
</exclusion>
<exclusion>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
</exclusion>
<exclusion>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
</exclusion>
<exclusion>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-core</artifactId>
</exclusion>
<exclusion>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
</exclusion>
<exclusion>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-library</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.github.stefanbirkner</groupId>
<artifactId>system-rules</artifactId>
<version>1.5.0</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifest>
<addClasspath>true</addClasspath>
<mainClass>org.opennms.features.newts.converter.NewtsConverter</mainClass>
</manifest>
</archive>
</configuration>
</plugin>

</plugins>
</build>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>org.opennms.features</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.newts</artifactId>
<name>OpenNMS :: Features :: Newts</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>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<!-- APIs we implement -->
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.measurements</groupId>
<artifactId>org.opennms.features.measurements.api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.persistence.osgi</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.sysprops</artifactId>
<version>${project.version}</version>
</dependency>

<!-- Dependencies used -->


<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>newts-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>com.googlecode.concurrent-trees</groupId>
<artifactId>concurrent-trees</artifactId>
<version>${concurrentTreesVersion}</version>
</dependency>
<dependency>
<groupId>com.lmax</groupId>
<artifactId>disruptor</artifactId>
<version>${lmaxDisruptorVersion}</version>
</dependency>
<dependency>
<groupId>args4j</groupId>
<artifactId>args4j</artifactId>
<version>${args4jVersion}</version>
</dependency>
<dependency>
<groupId>redis.clients</groupId>
<artifactId>jedis</artifactId>
<version>2.8.1</version>
</dependency>
<dependency>
<groupId>de.ruedigermoeller</groupId>
<artifactId>fst</artifactId>
<version>${fstVersion}</version>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.swrve</groupId>
<artifactId>rate-limited-logger</artifactId>
</dependency>

<!-- Testing -->


<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.lib</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.newts</groupId>
<artifactId>newts-cassandra-test</artifactId>
<version>${newtsVersion}</version>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
</exclusion>
<exclusion>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
</exclusion>
<exclusion>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
</exclusion>
<exclusion>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-core</artifactId>
</exclusion>
<exclusion>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
</exclusion>
<exclusion>
<groupId>io.netty</groupId>
<artifactId>netty-all</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-test-dependencies</artifactId>
<type>pom</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.notifications</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.notifications</groupId>
<artifactId>org.opennms.features.notifications.api</artifactId>
<name>OpenNMS :: Features :: Notifications :: API</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>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>org.opennms.features</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.notifications</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Features :: Notification</name>
<modules>
<module>api</module>
<module>ticket-strategy</module>
</modules>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.notifications</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms</groupId>
<artifactId>org.opennms.features.notifications.sms-strategy</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Features :: Notifications :: SMS</name>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.0-beta-9</version>
<configuration>

<tagBase>https://opennms.svn.sourceforge.net/svnroot/opennms/opennms/tags</tagBase>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>smslib-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>hibernate-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-util</artifactId>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.notifications</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.notifications</groupId>
<artifactId>org.opennms.features.notifications.ticket-strategy</artifactId>
<name>OpenNMS :: Features :: Notifications :: Ticket</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.core</groupId>
<artifactId>org.opennms.core.api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.lib</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-services</artifactId>
<scope>compile</scope>
</dependency>

<dependency>
<groupId>org.opennms.tests</groupId>
<artifactId>org.opennms.tests.mock-elements</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-mock</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.services</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.easymock</groupId>
<artifactId>easymock</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?xml version="1.0"?>
<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.opennms.features</groupId>
<artifactId>nrtg</artifactId>
<version>27.0.5</version>
</parent>
<groupId>org.opennms.features.nrtg</groupId>
<artifactId>nrtg-api</artifactId>
<packaging>bundle</packaging>
<properties>
<bundle.symbolicName>org.opennms.features.nrtg.api</bundle.symbolicName>
<!-- TODO refactor code so namespace matches symbolic name -->
<bundle.namespace>org.opennms.nrtg.api</bundle.namespace>
</properties>
<name>OpenNMS :: Features :: NRTG :: API</name>
<description>The API contains the models for the NRTG projects. It has models for
collection jobs, measurements and protocol collectors.</description>
<dependencies>
<!-- Logging -->

<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<scope>provided</scope>
</dependency>

<!-- <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-


classic</artifactId>
<version>1.0.4</version> </dependency> -->
<!-- Testing -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?xml version="1.0"?>
<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.opennms.features</groupId>
<artifactId>nrtg</artifactId>
<version>27.0.5</version>
</parent>
<groupId>org.opennms.features.nrtg</groupId>
<artifactId>nrtg-broker</artifactId>
<packaging>bundle</packaging>
<properties>
<bundle.symbolicName>org.opennms.features.nrtg.broker</bundle.symbolicName>
<bundle.namespace>org.opennms.nrtg.nrtcollector.broker</bundle.namespace>
</properties>
<name>OpenNMS :: Features :: NRTG :: ActiveMQ Broker</name>
<description>
This bundle creates an activemq broker for use by NRTG
</description>
</project>
<?xml version="1.0"?>
<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.opennms.features</groupId>
<artifactId>nrtg</artifactId>
<version>27.0.5</version>
</parent>
<groupId>org.opennms.features.nrtg</groupId>
<artifactId>nrtg-commander</artifactId>
<packaging>bundle</packaging>
<properties>
<bundle.symbolicName>org.opennms.features.nrtg.commander</bundle.symbolicName>
<!-- refactor code so namespace matches symbolic name -->
<bundle.namespace>org.opennms.nrtg.commander</bundle.namespace>
</properties>
<name>OpenNMS :: Features :: NRTG :: Commander</name>
<description>
The Commander is a dummy implementation to generate CollectionJobs
and publish them via JMS-Queues. It's able to run in parallel and
in multiple instances. A appropriate implementation would be a schedule
based system. That interpretes the datacollection configuration and
generates corresponding CollectionJobs. The CollectionJobs would be
published in the same way this dummy implementation does.
</description>

<dependencies>
<!-- OpenNMS NRTCollector -->
<dependency>
<groupId>org.opennms.features.nrtg</groupId>
<artifactId>nrtg-api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.nrtg.protocolcollector</groupId>
<artifactId>nrtg-protocolcollector-snmp</artifactId>
<version>${project.version}</version>
</dependency>
<!-- JMS -->
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>activemq-dependencies</artifactId>
<version>${project.version}</version>
<type>pom</type>
</dependency>
<!-- Logging -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<!--<scope>provided</scope>-->
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.0.4</version>
<!--<scope>test</scope>-->
</dependency>
<!-- Spring -->
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-dependencies</artifactId>
<type>pom</type>
</dependency>

<!-- CGLIB -->


<dependency>
<groupId>cglib</groupId>
<artifactId>cglib-nodep</artifactId>
</dependency>
<!-- Testing -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<archive>
<manifest>

<mainClass>org.opennms.nrtg.commander.internal.CollectionCommanderStarter</mainClas
s>
</manifest>
</archive>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
<overrideUid>0</overrideUid>
<overrideGid>0</overrideGid>
<tarLongFileMode>posix</tarLongFileMode>
</configuration>
</plugin>
</plugins>
</build>
</project>
<?xml version="1.0"?>
<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.opennms.features.nrtg</groupId>
<artifactId>jar</artifactId>
<version>27.0.5</version>
</parent>
<artifactId>nrtg-collector-standalone</artifactId>
<name>OpenNMS :: Features :: NRTG :: NRTCollector JAR</name>
<description>
Simple JAR to start a NRT collector
</description>
<url>http://www.OpenNMS.org</url>
<dependencies>
<!-- OpenNMS NRTCollector -->
<dependency>
<groupId>org.opennms.features.nrtg</groupId>
<artifactId>nrtg-api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.nrtg</groupId>
<artifactId>nrtg-collector</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.nrtg.protocolcollector</groupId>
<artifactId>nrtg-protocolcollector-snmp</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>activemq-dependencies</artifactId>
<version>${project.version}</version>
<type>pom</type>
</dependency>

<!-- Logging -->


<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<!--scope>provided</scope-->
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.0.4</version>
<!--<scope>provided</scope>-->
</dependency>
<dependency>
<groupId>net.sf.flexjson</groupId>
<artifactId>flexjson</artifactId>
</dependency>
<!-- Spring -->
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-dependencies</artifactId>
<type>pom</type>
</dependency>

<dependency>
<groupId>org.opennms.core.snmp</groupId>
<artifactId>org.opennms.core.snmp.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core.snmp</groupId>
<artifactId>org.opennms.core.snmp.implementations.snmp4j</artifactId>
<version>${project.version}</version>
</dependency>

<!-- Testing -->


<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<archive>
<manifest>

<mainClass>org.opennms.nrtg.jar.nrtcollector.NrtCollectorStarter</mainClass>
</manifest>
</archive>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
<overrideUid>0</overrideUid>
<overrideGid>0</overrideGid>
<tarLongFileMode>posix</tarLongFileMode>
</configuration>
</plugin>
</plugins>
</build>
</project>
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features</groupId>
<artifactId>nrtg</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.nrtg</groupId>
<artifactId>jar</artifactId>
<name>OpenNMS :: Features :: NRTG :: JAR</name>
<url>http://www.OpenNMS.org</url>
<packaging>pom</packaging>
<modules>
<module>nrtcollector</module>
</modules>
</project>
<?xml version="1.0"?>
<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.opennms.features</groupId>
<artifactId>nrtg</artifactId>
<version>27.0.5</version>
</parent>
<groupId>org.opennms.features.nrtg</groupId>
<artifactId>nrtg-nrtbroker-jms</artifactId>
<packaging>bundle</packaging>
<properties>

<bundle.symbolicName>org.opennms.features.nrtg.nrtbroker.jms</bundle.symbolicName>
<bundle.namespace>org.opennms.nrtg.nrtbroker.jms</bundle.namespace>
</properties>
<name>OpenNMS :: Features :: NRTG :: JMS Broker Impl</name>
<description>
An NRT Broker implementation using JMS, Spring and ActiveMQ
</description>
<dependencies>
<!-- OpenNMS NRTCollector -->
<dependency>
<groupId>org.opennms.features.nrtg</groupId>
<artifactId>nrtg-api</artifactId>
<version>${project.version}</version>
</dependency>
<!-- JMS -->
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>activemq-dependencies</artifactId>
<version>${project.version}</version>
<type>pom</type>
<scope>provided</scope>
</dependency>
<!-- Logging -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.0.4</version>
<scope>test</scope>
</dependency>
<!-- Spring -->
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-dependencies</artifactId>
<type>pom</type>
<scope>provided</scope>
</dependency>
<!-- Testing -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.easymock</groupId>
<artifactId>easymock</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?xml version="1.0"?>
<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.opennms.features</groupId>
<artifactId>nrtg</artifactId>
<version>27.0.5</version>
</parent>
<groupId>org.opennms.features.nrtg</groupId>
<artifactId>nrtg-nrtbroker-local</artifactId>
<packaging>bundle</packaging>
<properties>

<bundle.symbolicName>org.opennms.features.nrtg.nrtbroker.local</bundle.symbolicName
>
<bundle.namespace>org.opennms.nrtg.nrtbroker.local</bundle.namespace>
</properties>
<name>OpenNMS :: Features :: NRTG :: Local Implementation</name>
<description>
An NRT Broker implementation using that uses queues. This is local only to a
single JVM.
</description>

<dependencies>
<!-- OpenNMS NRTCollector -->
<dependency>
<groupId>org.opennms.features.nrtg</groupId>
<artifactId>nrtg-api</artifactId>
<version>${project.version}</version>
</dependency>

<!-- Logging -->


<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.0.4</version>
<scope>test</scope>
</dependency>

<!-- Testing -->


<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.easymock</groupId>
<artifactId>easymock</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?xml version="1.0"?>
<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.opennms.features</groupId>
<artifactId>nrtg</artifactId>
<version>27.0.5</version>
</parent>
<groupId>org.opennms.features.nrtg</groupId>
<artifactId>nrtg-collector</artifactId>
<packaging>bundle</packaging>
<properties>
<bundle.symbolicName>org.opennms.features.nrtg.collector</bundle.symbolicName>
<bundle.namespace>org.opennms.nrtg.nrtcollector</bundle.namespace>
</properties>
<name>OpenNMS :: Features :: NRTG :: NRTCollector</name>
<description>
The Collector module represents a system that will consume
CollectionJobs and handles them by running ProtocolCollectors. A
Collector is meant to run and listen permanently on a JMS-Queue for
CollectionJobs and handle / run them. Many CollectionJobs can be
handled in parallel by one Collector by using massive multithreading
of ProtocolCollectors. It is possible to run many Collectors in
parallel to handle a massive amount of CollectionJobs in a parallel
and distributed manner. The Collected data from the ProtocolCollectors
is published to a set of JMS-Queues for results.
</description>
<url>http://www.OpenNMS.org</url>
<dependencies>
<!-- OpenNMS NRTCollector -->
<dependency>
<groupId>org.opennms.features.nrtg</groupId>
<artifactId>nrtg-api</artifactId>
<version>${project.version}</version>
</dependency>
<!-- JMS -->
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>activemq-dependencies</artifactId>
<version>${project.version}</version>
<type>pom</type>
<scope>provided</scope>
</dependency>
<!-- Logging -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.0.4</version>
<scope>test</scope>
</dependency>
<!-- Spring -->
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-dependencies</artifactId>
<type>pom</type>
</dependency>
<!-- Testing -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?xml version="1.0"?>
<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</groupId>
<artifactId>org.opennms.features</artifactId>
<version>27.0.5</version>
</parent>

<modelVersion>4.0.0</modelVersion>

<groupId>org.opennms.features</groupId>
<artifactId>nrtg</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Features :: NRTG</name>
<description>
Near Real Time Graphing (NRTG) is the main module which contains the
parts of the NRTG project. NRTG is a distributable scalable system to
perform performance data collection. The meaning of near real time
means it is just a polling for performance metrics in inverval of
seconds instead of minutes. It is displayed in the OpenNMS web
application and used to help to diagnose problems. To run this project
a running JMS/AMPQ message broker is required on localhost. The
recommended system is version 5.6 of ActiveMQ.
</description>
<properties>
<jdkLevel>1.6</jdkLevel>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<cglib.version>2.2.2</cglib.version>
<flexjson.version>2.0</flexjson.version>
</properties>
<modules>
<module>system-exports</module>
<module>commander</module>
<module>api</module>
<module>broker</module>
<module>nrtbroker-jms</module>
<module>nrtbroker-local</module>
<module>nrtcollector</module>
<module>protocolcollector</module>
<module>web</module>
<module>jar</module>
</modules>
<build>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<configuration>
<instructions>
<Bundle-SymbolicName>${bundle.symbolicName}</Bundle-SymbolicName>
<Bundle-Version>${project.version}</Bundle-Version>
<!-- assume public classes are in the top package, and private classes
are under ".internal" -->
<Export-Package>!${bundle.namespace}.standalone.*,!$
{bundle.namespace}.internal.*,${bundle.namespace}.*;version="$
{project.version}"</Export-Package>
<Private-Package>${bundle.namespace}.internal.*</Private-Package>
<!-- | each module can override these defaults in their osgi.bnd file
-->
<_include>-osgi.bnd</_include>
<Bundle-RequiredExecutionEnvironment>JavaSE-1.8</Bundle-
RequiredExecutionEnvironment>
<Bundle-Activator>${bundle.activator}</Bundle-Activator>
</instructions>
</configuration>
<extensions>true</extensions>
</plugin>
</plugins>
</build>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>net.sf.flexjson</groupId>
<artifactId>flexjson</artifactId>
<version>${flexjson.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
</project>
<?xml version="1.0"?>
<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.opennms.features</groupId>
<artifactId>nrtg</artifactId>
<version>27.0.5</version>
</parent>
<groupId>org.opennms.features.nrtg</groupId>
<artifactId>protocol-collectors</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Features :: NRTG :: Collectors</name>
<description>
The ProtocolCollectors module contains ProtocolCollectors. These
ProtocolCollectors are able to request values for metrics from agents
on nodes.
</description>

<modules>
<module>snmp</module>
<module>tca</module>
</modules>
</project>
<?xml version="1.0"?>
<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.opennms.features.nrtg</groupId>
<artifactId>protocol-collectors</artifactId>
<version>27.0.5</version>
</parent>
<groupId>org.opennms.features.nrtg.protocolcollector</groupId>
<artifactId>nrtg-protocolcollector-snmp</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Features :: NRTG :: Collectors :: SNMP</name>
<properties>

<bundle.symbolicName>org.opennms.nrtg.protocolcollector.snmp</bundle.symbolicName>
<bundle.namespace>org.opennms.nrtg.protocolcollector.snmp</bundle.namespace>
</properties>
<description>
Contains the SnmpProtocolCollector, it's able to request values for metrics
(oids) from snmp agents on nodes.
</description>

<dependencies>
<!-- OpenNMS NRTCollector -->
<dependency>
<groupId>org.opennms.features.nrtg</groupId>
<artifactId>nrtg-api</artifactId>
<version>${project.version}</version>
</dependency>
<!-- OpenNMS SNMP -->
<dependency>
<groupId>org.opennms.core.snmp</groupId>
<artifactId>org.opennms.core.snmp.api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-api</artifactId>
<scope>provided</scope>
</dependency>
<!-- Logging -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<scope>provided</scope>
</dependency>
<!-- Testing -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.lib</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.snmp</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.snmp</groupId>
<artifactId>org.opennms.core.snmp.implementations.snmp4j</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-mock</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?xml version="1.0"?>
<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.opennms.features.nrtg</groupId>
<artifactId>protocol-collectors</artifactId>
<version>27.0.5</version>
</parent>
<groupId>org.opennms.features.nrtg.protocolcollector</groupId>
<artifactId>nrtg-protocolcollector-tca</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Features :: NRTG :: Collectors :: TCA</name>
<properties>

<bundle.symbolicName>org.opennms.nrtg.protocolcollector.tca</bundle.symbolicName>
<bundle.namespace>org.opennms.nrtg.protocolcollector.tca</bundle.namespace>
</properties>
<description>
Contains the TcaProtocolCollector, it's a SNMP based collector to handle
TCA specific data inside of SNMP
</description>

<dependencies>
<!-- OpenNMS NRTCollector -->
<dependency>
<groupId>org.opennms.features.nrtg</groupId>
<artifactId>nrtg-api</artifactId>
<version>${project.version}</version>
</dependency>
<!-- OpenNMS SNMP -->
<dependency>
<groupId>org.opennms.core.snmp</groupId>
<artifactId>org.opennms.core.snmp.api</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
<!-- Logging -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<scope>provided</scope>
</dependency>
<!-- Testing -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.lib</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.snmp</artifactId>
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.opennms.core.snmp</groupId>
<artifactId>org.opennms.core.snmp.implementations.snmp4j</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-mock</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.0.4</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?xml version="1.0"?>
<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.opennms.features</groupId>
<artifactId>nrtg</artifactId>
<version>27.0.5</version>
</parent>
<groupId>org.opennms.features.nrtg</groupId>
<artifactId>nrtg-system-exports</artifactId>
<packaging>bundle</packaging>
<properties>

<bundle.symbolicName>org.opennms.features.nrtg.systemexports</bundle.symbolicName>
<bundle.namespace>org.opennms.features.nrtg.systemexports</bundle.namespace>
</properties>
<name>OpenNMS :: Features :: NRTG :: System Exports</name>
<description>
The API contains the models for the NRTG projects. It has models for
collection jobs, measurements and protocol collectors.
</description>

<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>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifestEntries>
<Bundle-ManifestVersion>2</Bundle-ManifestVersion>
<Bundle-Name>${project.name}</Bundle-Name>
<Bundle-Description>${project.description}</Bundle-Description>
<Bundle-SymbolicName>${bundle.symbolicName}</Bundle-SymbolicName>
<Fragment-Host>system.bundle; extension:=framework</Fragment-Host>
<Export-Package>
org.opennms.nrtg.api;org.opennms.nrtg.api.model;version=$
{opennms.osgi.version},
</Export-Package>
</manifestEntries>
</archive>
</configuration>
</plugin>
</plugins>
</build>
</project>
<?xml version="1.0"?>
<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.opennms.features</groupId>
<artifactId>nrtg</artifactId>
<version>27.0.5</version>
</parent>
<groupId>org.opennms.features.nrtg</groupId>
<artifactId>nrtg-web</artifactId>
<packaging>bundle</packaging>
<properties>
<bundle.symbolicName>org.opennms.features.nrtg.web</bundle.symbolicName>
<bundle.namespace>org.opennms.nrtg.web</bundle.namespace>
</properties>
<name>OpenNMS :: Features :: NRTG :: Web Interface</name>
<description>
The Web Interfaces for NRTG data collection. This provides the
servlets used to generate the web ui. This provides two
functionalities, a servlet to creating and publishing collection
jobs. A second for receiving and visualizing the corresponding
measurments.
</description>

<dependencies>
<!-- OpenNMS NRTCollector -->
<dependency>
<groupId>org.opennms.features.nrtg</groupId>
<artifactId>nrtg-api</artifactId>
<version>${project.version}</version>
</dependency>

<!-- OpenNMS dependencies -->


<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-model</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.snmp</groupId>
<artifactId>org.opennms.core.snmp.api</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>

<!-- Servlet API -->


<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<scope>provided</scope>
</dependency>

<!-- Logging -->


<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.0.4</version>
<scope>test</scope>
</dependency>

<!-- Spring -->


<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-dependencies</artifactId>
<type>pom</type>
<scope>provided</scope>
</dependency>

<!-- Testing -->


<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.easymock</groupId>
<artifactId>easymock</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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>
<artifactId>org.opennms.features.openconfig</artifactId>
<groupId>org.opennms.features</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>

<groupId>org.opennms.features.openconfig</groupId>
<artifactId>org.opennms.features.openconfig.api</artifactId>
<name>OpenNMS :: Features :: OpenConfig :: API</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>

</project>
<?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>
<artifactId>org.opennms.features.openconfig</artifactId>
<groupId>org.opennms.features</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>

<groupId>org.opennms.features.openconfig</groupId>
<artifactId>org.opennms.features.openconfig.common</artifactId>
<name>OpenNMS :: Features :: OpenConfig :: Common</name>
<packaging>bundle</packaging>

<build>
<!-- Enable below extension and plugin when you need to generate java source
files from proto -->
<extensions>
<extension>
<groupId>kr.motd.maven</groupId>
<artifactId>os-maven-plugin</artifactId>
<version>1.6.2</version>
</extension>
</extensions>
<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>
<!-- <plugin>
<groupId>org.xolstice.maven.plugins</groupId>
<artifactId>protobuf-maven-plugin</artifactId>
<version>0.6.1</version>
<configuration>
<protocArtifact>com.google.protobuf:protoc:3.9.0:exe:$
{os.detected.classifier}</protocArtifact>
<pluginId>grpc-java</pluginId>
<pluginArtifact>io.grpc:protoc-gen-grpc-java:1.24.0:exe:$
{os.detected.classifier}</pluginArtifact>
</configuration>
<executions>
<execution>
<goals>
<goal>compile</goal>
<goal>compile-custom</goal>
</goals>
</execution>
</executions>
</plugin>-->
</plugins>
</build>

<dependencies>
<dependency>
<groupId>com.google.protobuf</groupId>
<artifactId>protobuf-java</artifactId>
<version>${protobufVersion}</version>
</dependency>
<dependency>
<groupId>io.grpc</groupId>
<artifactId>grpc-protobuf</artifactId>
<version>${grpcVersion}</version>
</dependency>
<dependency>
<groupId>io.grpc</groupId>
<artifactId>grpc-stub</artifactId>
<version>${grpcVersion}</version>
</dependency>
</dependencies>

</project>
<?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>
<artifactId>org.opennms.features</artifactId>
<groupId>org.opennms</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>

<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.openconfig</artifactId>
<packaging>pom</packaging>
<modules>
<module>api</module>
<module>common</module>
<module>telemetry-client</module>
</modules>

</project>
<?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>
<artifactId>org.opennms.features.openconfig</artifactId>
<groupId>org.opennms.features</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>

<groupId>org.opennms.features.openconfig</groupId>
<artifactId>org.opennms.features.openconfig.telemetry-client</artifactId>
<name>OpenNMS :: OpenConfig :: Telemetry Client</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.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.lib</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core.grpc</groupId>
<artifactId>org.opennms.core.grpc.common</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.google.protobuf</groupId>
<artifactId>protobuf-java</artifactId>
<version>${protobufVersion}</version>
</dependency>
<dependency>
<groupId>io.grpc</groupId>
<artifactId>grpc-protobuf</artifactId>
<version>${grpcVersion}</version>
</dependency>
<dependency>
<groupId>io.grpc</groupId>
<artifactId>grpc-stub</artifactId>
<version>${grpcVersion}</version>
</dependency>
<dependency>
<groupId>io.grpc</groupId>
<artifactId>grpc-netty-shaded</artifactId>
<version>${grpcVersion}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.openconfig</groupId>
<artifactId>org.opennms.features.openconfig.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.openconfig</groupId>
<artifactId>org.opennms.features.openconfig.common</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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</groupId>
<artifactId>org.opennms.features</artifactId>
<version>27.0.5</version>
</parent>

<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.opennms-es-rest</artifactId>
<name>OpenNMS :: Features :: ElasticSearch Rest</name>
<description>${project.name}</description>
<packaging>bundle</packaging>

<properties>
<json-simpleVersion>1.1.1</json-simpleVersion>
</properties>

<dependencyManagement>
<dependencies>
<dependency>
<groupId>io.searchbox</groupId>
<artifactId>jest</artifactId>
<version>${jestVersion}</version>
</dependency>
</dependencies>
</dependencyManagement>

<build>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<instructions>
<Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
<Bundle-Version>${project.version}</Bundle-Version>
<Karaf-Commands>*</Karaf-Commands>
</instructions>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<skip>${skipSurefire}</skip>
<excludes>
<!-- prevent tests running in this package. These are manual one off
development tests -->
<exclude>**/manual/*.java</exclude>
</excludes>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>

<configuration>
<skip>${skipSurefire}</skip>
<excludes>
<!-- prevent tests running in this package. These are manual one off
development tests -->
<exclude>**/manual/*.java</exclude>
</excludes>
</configuration>
</plugin>
</plugins>
</build>

<dependencies>
<!-- actual dependencies (get added to features.xml) -->
<dependency>
<groupId>com.googlecode.json-simple</groupId>
<artifactId>json-simple</artifactId>
<version>${json-simpleVersion}</version>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.cache</artifactId>
<version>${project.version}</version>
</dependency>

<!-- Provided Scope -->


<dependency>
<groupId>org.apache.karaf.shell</groupId>
<artifactId>org.apache.karaf.shell.core</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.karaf.shell</groupId>
<artifactId>org.apache.karaf.shell.console</artifactId>
<version>${karafVersion}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.compendium</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>jcl-over-slf4j</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.osgi</groupId>
<artifactId>opennms-osgi-core</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.sink</groupId>
<artifactId>org.opennms.core.ipc.sink.common</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-model</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.jest</groupId>
<artifactId>org.opennms.features.jest.client</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>io.searchbox</groupId>
<artifactId>jest-complete-osgi</artifactId>
<version>${jestVersion}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>${jestGsonVersion}</version>
<scope>provided</scope>
</dependency>

<!-- Test Scope -->


<!--
A parent module defines netty-all with a specific verison, but Elastic
requires
a different version. We overwrite it here manually so that the proper
dependencies
are pulled in.
-->
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-all</artifactId>
<version>${elasticsearchNettyVersion}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-codec</artifactId>
<version>${elasticsearchNettyVersion}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-codec-http</artifactId>
<version>${elasticsearchNettyVersion}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-transport</artifactId>
<version>${elasticsearchNettyVersion}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-resolver</artifactId>
<version>${elasticsearchNettyVersion}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-handler</artifactId>
<version>${elasticsearchNettyVersion}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-buffer</artifactId>
<version>${elasticsearchNettyVersion}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-common</artifactId>
<version>${elasticsearchNettyVersion}</version>
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.elasticsearch</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpasyncclient</artifactId>
<version>${httpasyncclientVersion}</version>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-api</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-1.2-api</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-slf4j-impl</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/maven-v4_0_0.xsd">
<parent>
<relativePath>../topology-map/poms/compiled/</relativePath>
<groupId>org.opennms.features.topology.build</groupId>
<artifactId>compiled-bundle-settings</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.osgi</groupId>
<artifactId>opennms-osgi-core-rest</artifactId>
<name>OpenNMS :: Features :: OSGI :: Core :: Rest</name>
<description>
Core module which provides features to install to listen for rest related
services,
such as @Path annotated interfaces.
</description>
<packaging>bundle</packaging>
<properties>
<bundle.namespace>org.opennms.osgi.core.rest</bundle.namespace>
<bundle.symbolicName>${bundle.namespace}</bundle.symbolicName>
</properties>
<dependencies>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.compendium</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.eclipsesource.jaxrs</groupId>
<artifactId>features</artifactId>
<classifier>features</classifier>
<type>xml</type>
<version>${osgiJaxRsVersion}</version>
</dependency>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.rest-provider</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.container.bridge</groupId>
<artifactId>org.opennms.container.bridge.rest</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>

<!-- Required for com.eclipsesource.jaxrs/* -->


<repositories>
<repository>
<snapshots><enabled>false</enabled></snapshots>
<releases><enabled>true</enabled></releases>
<id>opennms-repo</id>
<name>OpenNMS Maven Repository</name>
<url>http://maven.opennms.org/content/groups/opennms.org-release</url>
</repository>
<repository>
<snapshots><enabled>true</enabled></snapshots>
<releases><enabled>false</enabled></releases>
<id>opennms-snapshots</id>
<name>OpenNMS Snapshot Maven Repository</name>
<url>http://maven.opennms.org/content/groups/opennms.org-snapshot</url>
</repository>
</repositories>
</project>
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/maven-v4_0_0.xsd">

<parent>
<relativePath>../topology-map/poms/compiled/</relativePath>
<groupId>org.opennms.features.topology.build</groupId>
<artifactId>compiled-bundle-settings</artifactId>
<version>27.0.5</version>
</parent>

<properties>
<bundle.symbolicName>org.opennms.osgi.core</bundle.symbolicName>
<bundle.namespace>org.opennms.osgi</bundle.namespace>
</properties>

<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.osgi</groupId>
<artifactId>opennms-osgi-core</artifactId>
<name>${bundle.symbolicName}</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>
<Bundle-
Activator>org.opennms.osgi.internal.Activator</Bundle-Activator>
</instructions>
</configuration>
</plugin>
</plugins>
</build>

<dependencies>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.vaadin-components</groupId>
<artifactId>extender-service</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.vaadin</groupId>
<artifactId>vaadin-compatibility-server</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.compendium</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>

<repositories>
<repository>
<snapshots><enabled>false</enabled></snapshots>
<releases><enabled>true</enabled></releases>
<id>opennms-repo</id>
<name>OpenNMS Repository</name>
<url>http://maven.opennms.org/content/groups/opennms.org-release/</url>
</repository>
<repository>
<snapshots><enabled>true</enabled></snapshots>
<releases><enabled>false</enabled></releases>
<id>opennms-snapshots</id>
<name>OpenNMS Snapshot Maven Repository</name>
<url>http://maven.opennms.org/content/groups/opennms.org-
snapshot/</url>
</repository>
</repositories>

</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>org.opennms.features</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.osgi-jsr223</artifactId>
<name>OpenNMS :: Features :: OSGi JSR223</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.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
<scope>provided</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>org.opennms.features</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.perspectivepoller</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Features :: Perspective Poller</name>

<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>com.google.guava</groupId>
<artifactId>guava</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-model</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-config</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-api</artifactId>
</dependency>
<dependency>
<groupId>org.quartz-scheduler</groupId>
<artifactId>quartz</artifactId>
<version>${quartzVersion}</version>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.rpc</groupId>
<artifactId>org.opennms.core.ipc.rpc.api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.daemon</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.thresholding.api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.thresholding.impl</artifactId>
<version>${project.version}</version>
</dependency>

<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest</artifactId>
<version>2.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.spotify</groupId>
<artifactId>hamcrest-pojo</artifactId>
<version>1.2.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.jayway.awaitility</groupId>
<artifactId>awaitility</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.services</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.db</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-mock</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-services</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.rpc</groupId>
<artifactId>org.opennms.core.ipc.rpc.mock-impl</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.poller</groupId>
<artifactId>org.opennms.features.poller.client-rpc</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.distributed</groupId>
<artifactId>org.opennms.features.distributed.kv-
store.blob.postgres</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.distributed</groupId>
<artifactId>org.opennms.features.distributed.kv-store.blob.in-
memory</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.poller</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.poller</groupId>
<artifactId>org.opennms.features.poller.api</artifactId>
<name>OpenNMS :: Features :: Poller :: API</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</groupId>
<artifactId>opennms-util</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.lib</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.hibernate.javax.persistence</groupId>
<artifactId>hibernate-jpa-2.0-api</artifactId>
<scope>provided</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.poller</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.poller</groupId>
<artifactId>org.opennms.features.poller.client-rpc</artifactId>
<name>OpenNMS :: Features :: Poller :: RPC Client</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>
<Import-Package>
org.eclipse.persistence.internal.jaxb.many;resolution:=optional,
*
</Import-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms.features.poller</groupId>
<artifactId>org.opennms.features.poller.api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.rpc</groupId>
<artifactId>org.opennms.core.ipc.rpc.xml</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.rpc</groupId>
<artifactId>org.opennms.core.ipc.rpc.utils</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core.snmp</groupId>
<artifactId>org.opennms.core.snmp.api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-config-jaxb</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.xml</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features.poller</groupId>
<artifactId>org.opennms.features.poller.monitors</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.poller.monitors</groupId>
<artifactId>org.opennms.features.poller.monitors.core</artifactId>
<name>OpenNMS :: Features :: Poller :: Monitors :: Core</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>
<DynamicImport-Package>*</DynamicImport-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>dnsjava-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
</dependency>
<dependency>
<groupId>commons-net</groupId>
<artifactId>commons-net</artifactId>
</dependency>
<dependency>
<groupId>com.novell.ldap</groupId>
<artifactId>jldap</artifactId>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpcore</artifactId>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
</dependency>
<dependency>
<groupId>org.jolokia</groupId>
<artifactId>jolokia-client-java</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.dhcpd</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-util</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.web</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-icmp-api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.lib</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.sysprops</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core.snmp</groupId>
<artifactId>org.opennms.core.snmp.api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.poller</groupId>
<artifactId>org.opennms.features.poller.api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-config</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-config-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core.jmx</groupId>
<artifactId>org.opennms.core.jmx.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core.jmx</groupId>
<artifactId>org.opennms.core.jmx.impl</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-jexl</artifactId>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</dependency>
<dependency>
<groupId>bsf</groupId>
<artifactId>bsf</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-javamail-api</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jcifs-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.daemon</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.rpc</groupId>
<artifactId>org.opennms.core.ipc.rpc.common</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.rpc</groupId>
<artifactId>org.opennms.core.ipc.rpc.utils</artifactId>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-test-dependencies</artifactId>
<type>pom</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.services</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.db</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.http</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-mock</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.snmp</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.dns</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-web-dependencies</artifactId>
<type>pom</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-security-dependencies</artifactId>
<type>pom</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.activemq</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcpkix-jdk15on</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcprov-jdk15on</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.poller</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.poller</groupId>
<artifactId>org.opennms.features.poller.monitors</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Features :: Poller :: Monitors</name>
<modules>
<module>core</module>
</modules>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>org.opennms.features</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.poller</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Features :: Poller</name>
<modules>
<module>api</module>
<module>client-rpc</module>
<module>monitors</module>
<module>runtime</module>
<module>shell</module>
</modules>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.poller</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.poller</groupId>
<artifactId>org.opennms.features.poller.runtime</artifactId>
<name>OpenNMS :: Features :: Poller :: Runtime</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>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.poller</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.poller</groupId>
<artifactId>org.opennms.features.poller.shell</artifactId>
<name>OpenNMS :: Features :: Poller :: 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.apache.karaf.shell</groupId>
<artifactId>org.apache.karaf.shell.core</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.poller</groupId>
<artifactId>org.opennms.features.poller.api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-config</artifactId>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>opennms</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>org.opennms.features</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Features</name>
<modules>

<!-- Enlinkd -->


<module>enlinkd</module>

<!-- Graphs -->


<module>graph</module>

<!-- Topologies -->


<module>topologies</module>

<!-- ActiveMQ broker -->


<module>activemq</module>

<module>api-layer</module>

<!-- Alarms -->


<module>alarms</module>

<!-- AMQP Event Gateway and Alarm Northbounder -->


<module>amqp</module>

<!-- DHCP integration -->


<module>dhcpd</module>

<!-- OpenNMS Provisioning API and implementations -->


<module>provisioning</module>

<!-- OpenNMS Polling API -->


<module>poller</module>

<!-- Events -->


<module>events</module>

<!-- Flows -->


<module>flows</module>

<!-- Graphml -->


<module>graphml</module>

<module>kafka</module>

<!-- Executor factories -->


<module>executor-factory</module>
<!-- OpenNMS Collection API and implementations -->
<module>collection</module>
<module>jdbc-collector</module>
<module>juniper-tca-collector</module>
<module>prometheus-collector</module>
<module>telemetry</module>
<module>wsman</module>

<!-- Discovery -->


<module>discovery</module>

<!-- OpenNMS Reporting API and implementations -->


<module>reporting</module>

<!-- OpenNMS Ticketing API and implementations -->


<module>ticketing</module>
<module>request-tracker</module>

<!-- OpenNMS REST -->


<module>rest</module>

<!-- OpenNMS rest provider module -->


<module>rest-provider</module>

<!-- OpenNMS OSGI Core -->


<module>opennms-osgi-core</module>

<!-- OSGi Script Engine -->


<module>osgi-jsr223</module>
<module>opennms-osgi-core-rest</module>

<!-- JMX config generator -->


<module>jmx-config-generator</module>
<module>vaadin-jmxconfiggenerator</module>

<!-- SNMP MIB Parser and Event/Collection Configuration -->


<module>mib-compiler</module>
<module>vaadin-snmp-events-and-metrics</module>

<!-- Near Real Time Graphing -->


<module>nrtg</module>

<!-- Topology Map -->


<module>topology-map</module>
<module>vaadin-node-maps</module>

<!-- webapps -->


<module>root-webapp</module>

<!-- Measurements API -->


<module>measurements</module>

<!-- Newts -->


<module>newts</module>
<module>newts-repository-converter</module>

<!-- timeseries -->


<module>timeseries</module>
<!-- OpenNMS Notifications -->
<module>notifications</module>

<!-- OpenNMS Vaadin Themes -->


<module>themes</module>

<!-- Vaadin Feature -->


<module>vaadin</module>

<!-- Generic Vaadin components -->


<module>vaadin-components</module>

<!-- Dashboard and dashlet UI elements -->


<module>vaadin-dashboard</module>
<module>vaadin-dashlets</module>

<!-- OpenNMS Vaadin Surveillance Views -->


<module>vaadin-surveillance-views</module>

<!-- Data Choices -->


<module>datachoices</module>

<!-- Other projects -->


<module>distributed</module>
<module>endpoints</module>
<module>geocoder</module>
<module>geolocation</module>
<module>instrumentationLogReader</module>
<module>name-cutter</module>
<module>search</module>
<module>springframework-security</module>
<module>status</module>
<module>system-report</module>
<module>timeformat</module>
<module>timeseries-evaluate</module>

<!-- Business Service Monitor -->


<module>bsm</module>

<!-- Standalone Karaf Containers -->


<module>container</module>

<!-- Sentinel -->


<module>sentinel</module>

<!-- Minion -->


<module>minion</module>
<module>scv</module>

<!-- ReST Elasticsearch Integration -->


<module>opennms-es-rest</module>

<!-- Correlation Feedback -->


<module>situation-feedback</module>

<!-- Event Integration Facility Adapter -->


<module>eif-adapter</module>

<!-- IfTtt integration -->


<module>ifttt</module>

<module>jest</module>
<module>dnsresolver</module>
<module>karaf-health</module>
<module>perspectivepoller</module>
<module>openconfig</module>
</modules>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>org.opennms.features</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.prometheus-collector</artifactId>
<name>OpenNMS :: Features :: Prometheus Collector</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>
<Import-Package>
org.eclipse.persistence.internal.jaxb;resolution:=optional,
org.eclipse.persistence.internal.jaxb.many;resolution:=optional,
org.opennms.netmgt.collection.adapters,
*
</Import-Package>
</instructions>
</configuration>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<descriptors>
<descriptor>src/assembly/xsds.xml</descriptor>
</descriptors>
<tarLongFileMode>posix</tarLongFileMode>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- Uncomment this block to regenerate the JAXB annotated classes from the XSD.
Useful when updating the XSD.
<plugin>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-xjc-plugin</artifactId>
<version>3.1.0</version>
<configuration>
<extensions>
<extension>org.apache.cxf.xjcplugins:cxf-xjc-dv:3.1.0</extension>
</extensions>
</configuration>
<executions>
<execution>
<id>generate-sources-trans</id>
<phase>generate-sources</phase>
<goals>
<goal>xsdtojava</goal>
</goals>
<configuration>
<sourceRoot>${basedir}/src/main/java</sourceRoot>
<xsdOptions>
<xsdOption>
<packagename>org.opennms.netmgt.config.prometheus</packagename>
<xsd>src/main/resources/xsds/prometheus-datacollection.xsd</xsd>
</xsdOption>
</xsdOptions>
</configuration>
</execution>
</executions>
</plugin>
-->
</plugins>
</build>

<dependencies>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jaxb-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-config-api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.web</artifactId>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</dependency>

<!-- Test dependencies -->


<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.test-api</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.xml</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>com.github.tomakehurst</groupId>
<artifactId>wiremock</artifactId>
<!-- Use a version that is compatible with the Guava version used -->
<version>1.57</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?xml version="1.0"?>
<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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.provisioning</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.provisioning</groupId>
<artifactId>org.opennms.features.provisioning.api</artifactId>
<name>OpenNMS :: Features :: Provisioning :: API</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>
</project>
<?xml version="1.0"?>
<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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.provisioning</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.provisioning</groupId>
<artifactId>org.opennms.features.provisioning.lib</artifactId>
<name>OpenNMS :: Features :: Provisioning :: Library</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>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>org.opennms.features</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.provisioning</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Features :: Provisioning</name>
<modules>
<module>api</module>
<module>lib</module>
</modules>
</project>
<?xml version="1.0"?>
<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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.reporting</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.reporting</groupId>
<artifactId>org.opennms.features.reporting.api</artifactId>
<name>OpenNMS :: Features :: Reporting :: API</name>
<url>http://www.opennms.org/</url>
<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>
<Export-Package>
org.opennms.api.reporting.parameter.*;version="${project.version}",
org.opennms.api.reporting.*;version="${project.version}"
</Export-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>${guavaVersion}</version>
</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>
</dependencies>
</project>
<?xml version="1.0"?>
<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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.reporting</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.reporting</groupId>
<artifactId>org.opennms.features.reporting.availability</artifactId>
<name>OpenNMS :: Features :: Reporting :: Availability</name>
<url>http://www.opennms.org/</url>
<packaging>bundle</packaging>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-eclipse-plugin</artifactId>
<configuration>
<additionalBuildcommands>

<buildcommand>org.springframework.ide.eclipse.core.springbuilder</buildcommand>
</additionalBuildcommands>
<additionalProjectnatures>

<projectnature>org.springframework.ide.eclipse.core.springnature</projectnature>
</additionalProjectnatures>
</configuration>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<descriptors>
<descriptor>src/assembly/xsds.xml</descriptor>
</descriptors>
<overrideUid>0</overrideUid>
<overrideGid>0</overrideGid>
<tarLongFileMode>posix</tarLongFileMode>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
<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>
<Export-Package>
org.opennms.reporting.availability.descriptors.*;version="$
{project.version}",
org.opennms.reporting.availability.render.*;version="$
{project.version}",
org.opennms.reporting.availability.svclayer.*;version="$
{project.version}",
org.opennms.reporting.availability.*;version="${project.version}",
org.opennms.reporting.datablock.*;version="${project.version}"
</Export-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-util</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-config</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-javamail-api</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rws</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.db</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.http</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-mock</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-model</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrd-jrobin</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jrrd2-dependencies</artifactId>
<scope>test</scope>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrdtool-api</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.persistence.rrd</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.tests</groupId>
<artifactId>org.opennms.tests.mock-elements</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.services</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.reporting</groupId>
<artifactId>org.opennms.features.reporting.api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.reporting</groupId>
<artifactId>org.opennms.features.reporting.core</artifactId>
</dependency>
<dependency>
<groupId>avalon-framework</groupId>
<artifactId>avalon-framework</artifactId>
<version>4.1.3</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.apache.xmlgraphics</groupId>
<artifactId>fop</artifactId>
<version>${fopVersion}</version>
<scope>compile</scope>
<exclusions>
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.easymock</groupId>
<artifactId>easymock</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>xerces</groupId>
<artifactId>xercesImpl</artifactId>
<scope>runtime</scope>
</dependency>
</dependencies>

<pluginRepositories>
<pluginRepository>
<snapshots><enabled>false</enabled></snapshots>
<releases><enabled>true</enabled></releases>
<id>opennms-repo</id>
<name>OpenNMS Repository</name>
<url>http://maven.opennms.org/content/groups/opennms.org-release</url>
</pluginRepository>
</pluginRepositories>

</project>
<?xml version="1.0"?>
<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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.reporting</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.reporting</groupId>
<artifactId>org.opennms.features.reporting.core</artifactId>
<name>OpenNMS :: Features :: Reporting :: Core</name>
<url>http://www.opennms.org/</url>
<packaging>bundle</packaging>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-eclipse-plugin</artifactId>
<configuration>
<additionalBuildcommands>

<buildcommand>org.springframework.ide.eclipse.core.springbuilder</buildcommand>
</additionalBuildcommands>
<additionalProjectnatures>

<projectnature>org.springframework.ide.eclipse.core.springnature</projectnature>
</additionalProjectnatures>
</configuration>
</plugin>
<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>
<Export-Package>
org.opennms.reporting.core.svclayer.support.*;version="$
{project.version}",
org.opennms.reporting.core.svclayer.*;version="${project.version}",
org.opennms.reporting.core.*;version="${project.version}"
</Export-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-javamail-api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-model</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-config</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.reporting</groupId>
<artifactId>org.opennms.features.reporting.api</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.reporting</groupId>
<artifactId>org.opennms.features.reporting.model</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.reporting</groupId>
<artifactId>org.opennms.features.reporting.repository</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-test-dependencies</artifactId>
<type>pom</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.services</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.easymock</groupId>
<artifactId>easymock</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>quartz-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-library</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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.features</groupId>
<artifactId>org.opennms.features.reporting</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.reporting</groupId>
<artifactId>org.opennms.features.reporting.dao</artifactId>
<name>OpenNMS :: Features :: Reporting :: DAO</name>
<url>http://www.opennms.org/</url>
<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>
<Export-Package>
org.opennms.features.reporting.dao.jasper.*;version="$
{project.version}",
org.opennms.features.reporting.dao.remoterepository.*;version="$
{project.version}",
org.opennms.features.reporting.dao.*;version="${project.version}"
</Export-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.xml</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.reporting</groupId>
<artifactId>org.opennms.features.reporting.model</artifactId>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.0.4</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.spring</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-test-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.lib</artifactId>
</dependency>
</dependencies>
</project>
<?xml version="1.0"?>
<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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.reporting</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.reporting</groupId>
<artifactId>org.opennms.features.reporting.jasper-reports-compiler</artifactId>
<name>OpenNMS :: Features :: Reporting :: Jasper Compiler</name>
<url>http://www.opennms.org/</url>
<packaging>bundle</packaging>
<licenses>
<license>
<name>GNU Lesser General Public License</name>
<url>http://www.gnu.org/licenses/lgpl.html</url>
</license>
</licenses>
<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.dependencies</groupId>
<artifactId>jasper-dependencies</artifactId>
<type>pom</type>
</dependency>
</dependencies>
<repositories>
<repository>
<snapshots><enabled>false</enabled></snapshots>
<releases><enabled>true</enabled></releases>
<id>jasperreports</id>
<name>Jasper Reports Maven Repository</name>
<url>http://maven.opennms.org/content/repositories/jasperreports/</url>
</repository>
</repositories>
</project>
<?xml version="1.0"?>
<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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.reporting</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.reporting</groupId>
<artifactId>jasper-reports-filter</artifactId>
<name>OpenNMS :: Features :: Reporting :: Jasper Filter</name>
<url>http://www.opennms.org/</url>
<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>
<Export-Package>org.opennms.reporting.jasperreports.filter.*;version="$
{project.version}"</Export-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jasper-dependencies</artifactId>
<type>pom</type>
</dependency>
</dependencies>
</project>
<?xml version="1.0"?>
<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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.reporting</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.reporting</groupId>
<artifactId>org.opennms.features.reporting.jasper-reports</artifactId>
<name>OpenNMS :: Features :: Reporting :: Jasper</name>
<url>http://www.opennms.org/</url>
<packaging>bundle</packaging>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-eclipse-plugin</artifactId>
<configuration>
<additionalBuildcommands>

<buildcommand>org.springframework.ide.eclipse.core.springbuilder</buildcommand>
</additionalBuildcommands>
<additionalProjectnatures>

<projectnature>org.springframework.ide.eclipse.core.springnature</projectnature>
</additionalProjectnatures>
</configuration>
</plugin>
<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>
<Export-
Package>org.opennms.reporting.jasperreports.svclayer.*;version="$
{project.version}"</Export-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.db</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.tests</groupId>
<artifactId>org.opennms.tests.mock-elements</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.reporting</groupId>
<artifactId>org.opennms.features.reporting.api</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.reporting</groupId>
<artifactId>org.opennms.features.reporting.repository</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.reporting</groupId>
<artifactId>org.opennms.features.reporting.model</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.easymock</groupId>
<artifactId>easymock</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jasper-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.features.reporting</groupId>
<artifactId>jasper-reports-filter</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.reporting</groupId>
<artifactId>org.opennms.features.reporting.jasper-reports-
compiler</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-jexl</artifactId>
</dependency>
</dependencies>

<repositories>
<repository>
<snapshots><enabled>false</enabled></snapshots>
<releases><enabled>true</enabled></releases>
<id>jasperreports</id>
<name>Jasper Reports Maven Repository</name>
<url>http://maven.opennms.org/content/repositories/jasperreports/</url>
</repository>
<repository>
<snapshots><enabled>false</enabled></snapshots>
<releases><enabled>true</enabled></releases>
<id>opennms-repo</id>
<name>OpenNMS Repository</name>
<url>http://maven.opennms.org/content/groups/opennms.org-release</url>
</repository>
</repositories>

</project>
<?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.features</groupId>
<artifactId>org.opennms.features.reporting</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.reporting</groupId>
<artifactId>org.opennms.features.reporting.model</artifactId>
<name>OpenNMS :: Features :: Reporting :: Model</name>
<url>http://www.opennms.org/</url>
<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>
<Export-Package>
org.opennms.features.reporting.model.basicreport.*;version="$
{project.version}",
org.opennms.features.reporting.model.jasper.*;version="$
{project.version}",
org.opennms.features.reporting.model.jasperreport.*;version="$
{project.version}",
org.opennms.features.reporting.model.remoterepository.*;version="$
{project.version}",
org.opennms.features.reporting.model.*;version="${project.version}"
</Export-Package>
</instructions>
</configuration>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<descriptors>
<descriptor>src/assembly/xsds.xml</descriptor>
</descriptors>
<overrideUid>0</overrideUid>
<overrideGid>0</overrideGid>
<tarLongFileMode>posix</tarLongFileMode>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.xml</artifactId>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>org.opennms.features</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.reporting</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Features :: Reporting</name>
<modules>
<module>api</module>
<module>core</module>
<module>availability</module>
<module>jasper-reports</module>
<module>jasper-reports-compiler</module>
<module>jasper-reports-filter</module>
<module>repository</module>
<module>rest</module>
<module>model</module>
<module>dao</module>
<module>sdo</module>
</modules>
</project>
<?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.features</groupId>
<artifactId>org.opennms.features.reporting</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.reporting</groupId>
<artifactId>org.opennms.features.reporting.repository</artifactId>
<name>OpenNMS :: Features :: Reporting :: Repository</name>
<url>http://www.opennms.org/</url>
<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>
<Export-Package>
org.opennms.features.reporting.repository.global.*;version="$
{project.version}",
org.opennms.features.reporting.repository.local.*;version="$
{project.version}",
org.opennms.features.reporting.repository.remote.*;version="$
{project.version}",
org.opennms.features.reporting.repository.*;version="$
{project.version}"
</Export-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms.features.reporting</groupId>
<artifactId>org.opennms.features.reporting.dao</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.reporting</groupId>
<artifactId>org.opennms.features.reporting.model</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.reporting</groupId>
<artifactId>org.opennms.features.reporting.sdo</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.web</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>cxf-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.0.4</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-test-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.lib</artifactId>
</dependency>
</dependencies>
</project>
<?xml version="1.0"?>
<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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.reporting</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.reporting</groupId>
<artifactId>org.opennms.features.reporting.rest</artifactId>
<name>OpenNMS :: Features :: Reporting :: Rest</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.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-web-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.lib</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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.features</groupId>
<artifactId>org.opennms.features.reporting</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.reporting</groupId>
<artifactId>org.opennms.features.reporting.sdo</artifactId>
<name>OpenNMS :: Features :: Reporting :: SDO for Remote Repository</name>
<url>http://www.opennms.org/</url>
<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>
<Export-Package>org.opennms.features.reporting.sdo.*;version="$
{project.version}"</Export-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>commons-beanutils</groupId>
<artifactId>commons-beanutils</artifactId>
</dependency>
<!-- logging -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.0.4</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>org.opennms.features</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.request-tracker</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Features :: Request Tracker Interface</name>
<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>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.web</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-util</artifactId>
</dependency>
<dependency>
<groupId>commons-beanutils</groupId>
<artifactId>commons-beanutils</artifactId>
</dependency>
<dependency>
<groupId>commons-configuration</groupId>
<artifactId>commons-configuration</artifactId>
<exclusions>
<exclusion>
<groupId>commons-beanutils</groupId>
<artifactId>commons-beanutils-core</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
</dependency>
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.lib</artifactId>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>org.opennms.features</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.rest-provider</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Features :: REST Provider</name>
<build>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<configuration>
<instructions>
<Bundle-SymbolicName>${project.artifactId}</Bundle-
SymbolicName>
<Bundle-Version>${project.version}</Bundle-Version>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>javax.ws.rs</groupId>
<artifactId>javax.ws.rs-api</artifactId>
<scope>provided</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.rest</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.rest</groupId>
<artifactId>org.opennms.features.rest.common</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Features :: REST :: Common</name>
<build>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<configuration>
<instructions>
<Bundle-SymbolicName>${project.artifactId}</Bundle-
SymbolicName>
<Bundle-Version>${project.version}</Bundle-Version>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.codehaus.jackson</groupId>
<artifactId>jackson-mapper-asl</artifactId>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.rest</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.rest</groupId>
<artifactId>org.opennms.features.rest.mapper</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Features :: REST :: Mapper</name>

<properties>
<!-- automatically run annotation processors within the incremental compilation
-->
<m2e.apt.activation>jdt_apt</m2e.apt.activation>
</properties>
<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>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<annotationProcessorPaths>
<path>
<groupId>org.mapstruct</groupId>
<artifactId>mapstruct-processor</artifactId>
<version>${mapstructVersion}</version>
</path>
</annotationProcessorPaths>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<executions>
<execution>
<id>add-source</id>
<phase>generate-sources</phase>
<goals>
<goal>add-source</goal>
</goals>
<configuration>
<sources>
<source>${project.build.directory}/generated-
sources/annotations/</source>
</sources>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>

<dependencies>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-model</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-config-api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.rest</groupId>
<artifactId>org.opennms.features.rest.model</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.mapstruct</groupId>
<artifactId>mapstruct-jdk8</artifactId>
<version>${mapstructVersion}</version>
</dependency>

<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-mock</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.services</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.xml</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<scope>test</scope>
</dependency>
</dependencies>

</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.rest</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.rest</groupId>
<artifactId>org.opennms.features.rest.model</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Features :: REST :: Model</name>

<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>
<!-- Keep these dependencies to a minimal in order to allow 3rd party
application
to leverage this artifact in their projects. -->
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.api</artifactId>
</dependency>
<dependency>
<groupId>org.codehaus.jackson</groupId>
<artifactId>jackson-core-asl</artifactId>
</dependency>
</dependencies>
</project>
<?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</groupId>
<artifactId>org.opennms.features</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.rest</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Features :: REST</name>

<modules>
<module>common</module>
<module>model</module>
<module>mapper</module>
</modules>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>org.opennms.features</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features</groupId>
<artifactId>root-webapp</artifactId>
<packaging>war</packaging>
<name>OpenNMS :: Features :: ROOT Web Application</name>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<configuration>
<archiveClasses>true</archiveClasses>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.scv</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.scv</groupId>
<artifactId>org.opennms.features.scv.api</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Features :: SCV :: API</name>

<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>
</project>
<?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.features</groupId>
<artifactId>org.opennms.features.scv</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.scv</groupId>
<artifactId>org.opennms.features.scv.dominion-grpc-impl</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Features :: SCV :: Dominion gRPC Impl</name>
<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.features.scv</groupId>
<artifactId>org.opennms.features.scv.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.minion</groupId>
<artifactId>dominion-grpc-client</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>${guavagRPCVersion}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.grpc</groupId>
<artifactId>grpc-netty-shaded</artifactId>
<version>${grpcVersion}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-library</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.distributed</groupId>
<artifactId>core-api</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
</project><?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.scv</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.scv</groupId>
<artifactId>org.opennms.features.scv.jceks-impl</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Features :: SCV :: JCEKS Impl.</name>
<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.features.scv</groupId>
<artifactId>org.opennms.features.scv.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>org.opennms.features</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.scv</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Features :: SCV</name>
<modules>
<module>api</module>
<module>jceks-impl</module>
<module>shell</module>
<module>scvcli</module>
<module>dominion-grpc-impl</module>
</modules>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.scv</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.scv</groupId>
<artifactId>org.opennms.features.scv.cli</artifactId>
<packaging>jar</packaging>
<name>OpenNMS :: Features :: SCV :: CLI</name>

<build>
<plugins>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<id>foobar</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
<configuration>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
<archive>
<manifest>

<mainClass>org.opennms.features.scv.cli.ScvCli</mainClass>
</manifest>
</archive>
<overrideUid>0</overrideUid>
<overrideGid>0</overrideGid>
<tarLongFileMode>posix</tarLongFileMode>
</configuration>
</plugin>
</plugins>
</build>

<dependencies>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<version>${slf4jVersion}</version>
</dependency>
<dependency>
<groupId>args4j</groupId>
<artifactId>args4j</artifactId>
<version>${args4jVersion}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.scv</groupId>
<artifactId>org.opennms.features.scv.jceks-impl</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.scv</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.scv</groupId>
<artifactId>org.opennms.features.scv.shell</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Features :: SCV :: Shell</name>

<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.features.scv</groupId>
<artifactId>org.opennms.features.scv.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.apache.karaf.shell</groupId>
<artifactId>org.apache.karaf.shell.core</artifactId>
<version>${karafVersion}</version>
</dependency>
</dependencies>
</project>
<?xml version="1.0"?>
<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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.search</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.search</groupId>
<artifactId>org.opennms.features.search.api</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Features :: Search :: API</name>
<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.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${slf4jVersion}</version>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>${guavaVersion}</version>
</dependency>
</dependencies>
</project>
<?xml version="1.0"?>
<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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>org.opennms.features</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.search</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Features :: Search (Parent)</name>
<modules>
<module>api</module>
<module>providers</module>
<module>rest</module>
<module>service</module>
</modules>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-library</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?xml version="1.0"?>
<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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.search</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.search</groupId>
<artifactId>org.opennms.features.search.providers</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Features :: Search :: Providers</name>
<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>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>osgi.core</artifactId>
<version>${osgiVersion}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.search</groupId>
<artifactId>org.opennms.features.search.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-web-api</artifactId>
<scope>provided</scope>
</dependency>
</dependencies>
</project>
<?xml version="1.0"?>
<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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.search</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.search</groupId>
<artifactId>org.opennms.features.search.rest</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Features :: Search :: Rest</name>
<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>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>osgi.core</artifactId>
<version>${osgiVersion}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.search</groupId>
<artifactId>org.opennms.features.search.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.web</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-web-api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>cxf-dependencies</artifactId>
<version>${project.version}</version>
<type>pom</type>
</dependency>
</dependencies>
</project>
<?xml version="1.0"?>
<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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.search</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.search</groupId>
<artifactId>org.opennms.features.search.service</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Features :: search :: Service</name>
<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>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>osgi.core</artifactId>
<version>${osgiVersion}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.search</groupId>
<artifactId>org.opennms.features.search.api</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</project>
<?xml version="1.0"?>
<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.features.sentinel</groupId>
<artifactId>sentinel-parent</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>core</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Features :: Sentinel :: Core</name>
<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>
<Import-Package>*</Import-Package>
<Karaf-Commands>*</Karaf-Commands>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>osgi.core</artifactId>
<version>${osgiVersion}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.distributed</groupId>
<artifactId>core-api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.distributed</groupId>
<artifactId>core-impl</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.distributed</groupId>
<artifactId>shell</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.scv</groupId>
<artifactId>org.opennms.features.scv.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.8.0</version>
</dependency>
</dependencies>
</project>
<?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</groupId>
<artifactId>org.opennms.features</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.sentinel</groupId>
<artifactId>sentinel-parent</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Features :: Sentinel</name>

<modules>
<module>core</module>
<module>repository</module>
</modules>

<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>
</instructions>
</configuration>
</plugin>
</plugins>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.karaf.tooling</groupId>
<artifactId>karaf-maven-plugin</artifactId>
<version>${karafVersion}</version>
<extensions>true</extensions>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>
<?xml version="1.0"?>
<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.features.sentinel</groupId>
<artifactId>sentinel-parent</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>repository</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Features :: Sentinel :: Default Repository</name>

<build>
<plugins>
<plugin>
<groupId>org.apache.karaf.tooling</groupId>
<artifactId>karaf-maven-plugin</artifactId>
<version>${karafVersion}</version>
<executions>
<execution>
<id>features-add-to-repository</id>
<phase>process-resources</phase>
<goals>
<goal>features-add-to-repository</goal>
</goals>
<configuration>
<descriptors>
<descriptor>mvn:org.apache.karaf.features/standard/
${karafVersion}/xml/features</descriptor>
<descriptor>mvn:org.apache.karaf.features/spring/$
{karafVersion}/xml/features</descriptor>
<descriptor>mvn:org.apache.karaf.features/spring-
legacy/${karafVersion}/xml/features</descriptor>
<!-- Add OpenNMS features -->
<descriptor>mvn:org.opennms.newts/newts-karaf/$
{newtsVersion}/xml/features</descriptor>
<descriptor>mvn:org.opennms.karaf/opennms/$
{project.version}/xml/features</descriptor>
<!-- Add Sentinel features -->
<descriptor>mvn:org.opennms.karaf/opennms/$
{project.version}/xml/sentinel</descriptor>
<!-- Additional tools -->
<descriptor>mvn:io.hawt/hawtio-karaf/$
{hawtio.version}/xml/features</descriptor>
</descriptors>
<!-- To ensure that all JAR files for a feature
are included in the repository tar.gz file, add the
feature to this list. -->
<features>
<!-- OpenNMS features -->
<feature>opennms-core-ipc-rpc-jms</feature>
<feature>opennms-core-ipc-rpc-aws-sqs</feature>
<feature>opennms-core-tracing-jaeger</feature>
<feature>opennms-events-sink-dispatcher</feature>
<feature>opennms-core-ipc-sink-camel</feature>
<feature>opennms-core-ipc-sink-kafka</feature>
<feature>opennms-core-ipc-sink-camel-
server</feature>
<feature>opennms-core-ipc-sink-kafka-
server</feature>
<feature>opennms-core-ipc-sink-aws-sqs</feature>
<feature>opennms-send-event-command</feature>
<feature>opennms-syslogd-listener-javanet</feature>
<feature>opennms-syslogd-listener-camel-
netty</feature>
<feature>opennms-persistence</feature>
<feature>opennms-spring-extender</feature>
<feature>opennms-blobstore-shell</feature>
<feature>opennms-jsonstore-shell</feature>
<feature>opennms-distributed-core-impl</feature>
<feature>scv-api</feature>
<feature>scv-shell</feature>
<feature>scv-jceks-impl</feature>

<!-- Sentinel specific features -->


<feature>sentinel-core</feature>
<feature>sentinel-persistence</feature>
<feature>sentinel-jms</feature>
<feature>sentinel-telemetry</feature>
<feature>sentinel-telemetry-bmp</feature>
<feature>sentinel-telemetry-graphite</feature>
<feature>sentinel-telemetry-jti</feature>
<feature>sentinel-telemetry-nxos</feature>
<feature>sentinel-flows</feature>
<feature>sentinel-coordination-api</feature>
<feature>sentinel-coordination-common</feature>
<feature>sentinel-coordination-zookeeper</feature>
<feature>sentinel-coordination-shell</feature>
<feature>sentinel-newts</feature>
<feature>sentinel-blobstore-noop</feature>
<feature>sentinel-blobstore-cassandra</feature>
<feature>sentinel-jsonstore-postgres</feature>
<feature>sentinel-thresholding-service</feature>

<!-- Other features -->


<feature>hawtio-offline</feature>
</features>
<repository>${project.build.directory}/maven-
repo</repository>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<executions>
<execution>
<id>copy-resources</id>
<phase>generate-resources</phase>
<goals>
<goal>copy-resources</goal>
</goals>
<configuration>
<outputDirectory>${project.build.directory}/maven-
repo</outputDirectory>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<descriptors>
<descriptor>src/assembly/repo.xml</descriptor>
</descriptors>
<overrideUid>0</overrideUid>
<overrideGid>0</overrideGid>
<tarLongFileMode>posix</tarLongFileMode>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-clean-plugin</artifactId>
<executions>
<execution>
<id>cleanup-after-integration-tests</id>
<phase>post-integration-test</phase>
<goals>
<goal>clean</goal>
</goals>
<configuration>
<excludeDefaultDirectories>true</excludeDefaultDirectories>
<filesets>
<fileset>
<directory>${project.build.directory}/maven-
repo</directory>
</fileset>
</filesets>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>

<dependencies>
<dependency>
<groupId>org.opennms.karaf</groupId>
<artifactId>opennms</artifactId>
<version>${project.version}</version>
<classifier>features</classifier>
<type>xml</type>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-requisition-service</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-detector-bsf</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-detector-dhcp</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-detector-lineoriented</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-detector-generic</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-detector-simple</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-detector-datagram</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-detector-jmx</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-detector-jms</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-detector-jdbc</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-detector-ssh</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-detector-web</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.protocols</groupId>
<artifactId>org.opennms.protocols.radius</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.protocols</groupId>
<artifactId>org.opennms.protocols.xmp</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.protocols</groupId>
<artifactId>org.opennms.protocols.nsclient</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.collectors</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.wsman</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.container</groupId>
<artifactId>spring-extender</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core.health</groupId>
<artifactId>org.opennms.core.health.impl</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core.health</groupId>
<artifactId>org.opennms.core.health.shell</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.rpc</groupId>
<artifactId>org.opennms.core.ipc.rpc.jms-impl</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.rpc</groupId>
<artifactId>org.opennms.core.ipc.rpc.aws-sqs-impl</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.sink.camel</groupId>
<artifactId>org.opennms.core.ipc.sink.camel.common</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.sink.camel</groupId>
<artifactId>org.opennms.core.ipc.sink.camel.server</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.sink.kafka</groupId>
<artifactId>org.opennms.core.ipc.sink.kafka.server</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.sink.aws.sqs</groupId>
<artifactId>org.opennms.core.ipc.sink.aws.sqs.client</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.sink.aws.sqs</groupId>
<artifactId>org.opennms.core.ipc.sink.aws.sqs.server</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.sink.camel</groupId>
<artifactId>org.opennms.core.ipc.sink.camel.client</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.sink.kafka</groupId>
<artifactId>org.opennms.core.ipc.sink.kafka.client</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.events.sink</groupId>
<artifactId>org.opennms.features.events.sink.dispatcher</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.common</groupId>
<artifactId>org.opennms.core.ipc.common.kafka-shell</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.events.sink</groupId>
<artifactId>org.opennms.features.events.sink.command</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core.tracing</groupId>
<artifactId>org.opennms.core.tracing.jaeger-osgi</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core.tracing</groupId>
<artifactId>org.opennms.core.tracing.jaeger-tracer</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.flows</groupId>
<artifactId>org.opennms.features.flows.elastic</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.flows.classification</groupId>

<artifactId>org.opennms.features.flows.classification.shell</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.flows.classification.engine</groupId>

<artifactId>org.opennms.features.flows.classification.engine.impl</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.newts</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.poller</groupId>
<artifactId>org.opennms.features.poller.client-rpc</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.poller.monitors</groupId>
<artifactId>org.opennms.features.poller.monitors.core</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.sentinel</groupId>
<artifactId>core</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.telemetry.protocols.bmp</groupId>

<artifactId>org.opennms.features.telemetry.protocols.bmp.adapter</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.telemetry.protocols.netflow</groupId>

<artifactId>org.opennms.features.telemetry.protocols.netflow.adapter</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.telemetry.protocols.sflow</groupId>

<artifactId>org.opennms.features.telemetry.protocols.sflow.adapter</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.telemetry.protocols.graphite</groupId>
<artifactId>org.opennms.features.telemetry.protocols.graphite.adapter</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.telemetry.protocols.jti</groupId>

<artifactId>org.opennms.features.telemetry.protocols.jti.adapter</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.telemetry.protocols.nxos</groupId>

<artifactId>org.opennms.features.telemetry.protocols.nxos.adapter</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.jdbc-collector</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-vmware</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.protocols</groupId>
<artifactId>org.opennms.protocols.xml</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.distributed</groupId>
<artifactId>core-api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.distributed</groupId>
<artifactId>core-impl</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.distributed</groupId>
<artifactId>jms</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.distributed</groupId>
<artifactId>shell</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.distributed</groupId>
<artifactId>coordination-shell</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.distributed</groupId>
<artifactId>coordination-zookeeper</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.distributed</groupId>
<artifactId>org.opennms.features.distributed.collection</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.distributed</groupId>
<artifactId>org.opennms.features.distributed.dao-api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.distributed</groupId>
<artifactId>org.opennms.features.distributed.dao-impl</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.distributed</groupId>
<artifactId>org.opennms.features.distributed.dao-
distributed</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.distributed</groupId>
<artifactId>org.opennms.features.distributed.datasource</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.distributed</groupId>
<artifactId>org.opennms.features.distributed.dao-
healthcheck</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.distributed</groupId>
<artifactId>org.opennms.features.distributed.dao-shell</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.distributed</groupId>
<artifactId>org.opennms.features.distributed.kv-store.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.distributed</groupId>

<artifactId>org.opennms.features.distributed.serviceregistry</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.dnsresolver</groupId>
<artifactId>org.opennms.features.dnsresolver.netty</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.dnsresolver</groupId>
<artifactId>org.opennms.features.dnsresolver.shell</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.newts</groupId>
<artifactId>newts-karaf</artifactId>
<version>${newtsVersion}</version>
<classifier>features</classifier>
<type>xml</type>
</dependency>
<dependency>
<groupId>org.opennms.features.distributed</groupId>
<artifactId>org.opennms.features.distributed.kv-
store.blob.cassandra</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.distributed</groupId>
<artifactId>org.opennms.features.distributed.kv-store.blob.no-
op</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.distributed</groupId>
<artifactId>org.opennms.features.distributed.kv-
store.blob.shell</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.distributed</groupId>
<artifactId>org.opennms.features.distributed.cassandra.newts-
impl</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.distributed</groupId>
<artifactId>org.opennms.features.distributed.kv-
store.json.postgres</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.distributed</groupId>
<artifactId>org.opennms.features.distributed.kv-
store.json.shell</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.collection</groupId>

<artifactId>org.opennms.features.collection.thresholding.impl</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.collection</groupId>

<artifactId>org.opennms.features.collection.thresholding.shell</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.scv</groupId>
<artifactId>org.opennms.features.scv.jceks-impl</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.scv</groupId>
<artifactId>org.opennms.features.scv.shell</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>

<repositories>
<repository>
<snapshots><enabled>false</enabled></snapshots>
<releases><enabled>true</enabled></releases>
<id>opennms-repo</id>
<name>OpenNMS Repository</name>
<url>http://maven.opennms.org/content/groups/opennms.org-release</url>
</repository>
<repository>
<snapshots>
<enabled>false</enabled>
</snapshots>
<releases>
<enabled>true</enabled>
</releases>
<id>sonatype-public-repo</id>
<name>Sonatype Public Maven Repository</name>
<url>http://maven.opennms.org/content/repositories/sonatype-public-
repo/</url>
</repository>
<repository>
<snapshots>
<enabled>false</enabled>
<updatePolicy>${updatePolicy}</updatePolicy>
</snapshots>
<releases>
<enabled>true</enabled>
<updatePolicy>${updatePolicy}</updatePolicy>
</releases>
<id>oosnmp-repo</id>
<name>OOSNMP Repository</name>
<url>http://maven.opennms.org/content/repositories/oosnmp-repo</url>
</repository>
<repository>
<snapshots>
<enabled>false</enabled>
</snapshots>
<releases>
<enabled>true</enabled>
</releases>
<id>coova</id>
<name>Coova Repository</name>
<url>http://maven.opennms.org/content/repositories/coova/</url>
</repository>
<repository>
<id>sonatype.org-snapshot</id>
<name>Sonatype OSS Snapshots Repository</name>
<url>http://maven.opennms.org/content/groups/sonatype.org-
snapshot/</url>
<releases><enabled>false</enabled></releases>
<snapshots><enabled>true</enabled></snapshots>
</repository>
</repositories>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.situation-feedback</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.situation-feedback</groupId>
<artifactId>org.opennms.features.situation-feedback.api</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Features :: Situation-Feedback :: API</name>
<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>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>${guavaVersion}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>${jackson2Version}</version>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.situation-feedback</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.situation-feedback</groupId>
<artifactId>org.opennms.features.situation-feedback.elastic</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Features :: Situation-Feedback :: Elastic</name>
<properties>
<skipITs>true</skipITs>
</properties>
<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.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.compendium</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.jest</groupId>
<artifactId>org.opennms.features.jest.client</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>io.searchbox</groupId>
<artifactId>jest-complete-osgi</artifactId>
<version>${jestVersion}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.cache</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core.health</groupId>
<artifactId>org.opennms.core.health.api</artifactId>
<version>${project.version}</version>
</dependency>

<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.db</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.elasticsearch</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<!--
A parent module defines netty-all with a specific verison, but Elastic
requires
a different version. We overwrite it here manually so that the proper
dependencies
are pulled in.
-->
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-all</artifactId>
<version>${elasticsearchNettyVersion}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-codec</artifactId>
<version>${elasticsearchNettyVersion}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-codec-http</artifactId>
<version>${elasticsearchNettyVersion}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-transport</artifactId>
<version>${elasticsearchNettyVersion}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-resolver</artifactId>
<version>${elasticsearchNettyVersion}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-handler</artifactId>
<version>${elasticsearchNettyVersion}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-buffer</artifactId>
<version>${elasticsearchNettyVersion}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-common</artifactId>
<version>${elasticsearchNettyVersion}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.jayway.awaitility</groupId>
<artifactId>awaitility</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-mock</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>${jestGsonVersion}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.situation-feedback</groupId>
<artifactId>org.opennms.features.situation-feedback.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>

</dependencies>

</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>org.opennms.features</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.situation-feedback</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Features :: Situation-Feedback (Parent)</name>
<modules>
<module>api</module>
<module>elastic</module>
<module>rest</module>
</modules>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features.situation-feedback</groupId>
<artifactId>org.opennms.features.situation-feedback.rest</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.situation-feedback.rest</groupId>
<artifactId>org.opennms.features.situation-feedback.rest.api</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Features :: Situation-Feedback :: ReST :: API</name>
<dependencies>
<dependency>
<groupId>org.opennms.features.situation-feedback</groupId>
<artifactId>org.opennms.features.situation-feedback.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>javax.ws.rs</groupId>
<artifactId>javax.ws.rs-api</artifactId>
</dependency>

<!-- Test -->


<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.lib</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.xml</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features.situation-feedback</groupId>
<artifactId>org.opennms.features.situation-feedback.rest</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.situation-feedback.rest</groupId>
<artifactId>org.opennms.features.situation-feedback.rest.impl</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Features :: Situation-Feedback :: ReST :: Impl.</name>
<dependencies>
<dependency>
<groupId>org.opennms.features.situation-feedback.rest</groupId>
<artifactId>org.opennms.features.situation-feedback.rest.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.web</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-web-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-model</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>cxf-dependencies</artifactId>
<version>${project.version}</version>
<type>pom</type>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.situation-feedback</groupId>
<artifactId>org.opennms.features.situation-feedback.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>${gsonVersion}</version>
<scope>provided</scope>
</dependency>

<!-- test dependencies -->


<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-services</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrd-jrobin</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jrrd2-dependencies</artifactId>
<scope>test</scope>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrdtool-api</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.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.db</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.http</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.services</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.tests</groupId>
<artifactId>org.opennms.tests.mock-elements</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-mock</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.jayway.awaitility</groupId>
<artifactId>awaitility</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.situation-feedback</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.situation-feedback</groupId>
<artifactId>org.opennms.features.situation-feedback.rest</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Features :: Situation-Feedback :: ReST</name>
<modules>
<module>api</module>
<module>impl</module>
</modules>
<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>
</project>
<?xml version="1.0"?>
<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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>org.opennms.features</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.springframework-security</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Features :: Spring Framework Security</name>
<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>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
</dependency>
<dependency>
<groupId>org.apache.karaf.jaas</groupId>
<artifactId>org.apache.karaf.jaas.boot</artifactId>
<version>${karafVersion}</version>
</dependency>
<dependency>
<groupId>org.apache.karaf.jaas</groupId>
<artifactId>org.apache.karaf.jaas.config</artifactId>
<version>${karafVersion}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-bootstrap</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-model</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.sysprops</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-security-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-web-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-web-api</artifactId>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-server</artifactId>
<scope>provided</scope>
</dependency>
<!-- test dependencies -->
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.db</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.services</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.tests</groupId>
<artifactId>org.opennms.tests.mock-elements</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-mock</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrd-jrobin</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jrrd2-dependencies</artifactId>
<scope>test</scope>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrdtool-api</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-test-dependencies</artifactId>
<type>pom</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.easymock</groupId>
<artifactId>easymock</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?xml version="1.0"?>
<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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.status</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.status</groupId>
<artifactId>org.opennms.features.status.api</artifactId>
<packaging>jar</packaging>
<name>OpenNMS :: Features :: Status :: API</name>
<description>Geolocation Services</description>
<properties>
<bundle.symbolicName>org.opennms.features.status.api</bundle.symbolicName>
<bundle.namespace>org.opennms.features.status.api</bundle.namespace>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-web-api</artifactId>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.bsm</groupId>
<artifactId>org.opennms.features.bsm.persistence.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.bsm</groupId>
<artifactId>org.opennms.features.bsm.service.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-config</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrd-jrobin</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.persistence.rrd</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.services</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.db</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-mock</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.bsm</groupId>
<artifactId>org.opennms.features.bsm.persistence.impl</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.bsm</groupId>
<artifactId>org.opennms.features.bsm.service.impl</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>org.opennms.features</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.status</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Features :: Status</name>
<modules>
<module>api</module>
<module>rest</module>
</modules>
</project>
<?xml version="1.0"?>
<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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.status</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.status</groupId>
<artifactId>org.opennms.features.status.rest</artifactId>
<packaging>jar</packaging>
<name>OpenNMS :: Features :: Status :: Rest</name>
<description>Status Rest</description>
<properties>
<bundle.symbolicName>org.opennms.web.rest.v2</bundle.symbolicName>
<bundle.namespace>org.opennms.web.rest.v2</bundle.namespace>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-dependencies</artifactId>
<type>pom</type>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>cxf-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.features.status</groupId>
<artifactId>org.opennms.features.status.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-web-api</artifactId>
</dependency>

<!-- Test Dependencies -->


<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-webapp-rest</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.bsm</groupId>
<artifactId>org.opennms.features.bsm.service.impl</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.bsm</groupId>
<artifactId>org.opennms.features.bsm.persistence.api</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.bsm</groupId>
<artifactId>org.opennms.features.bsm.persistence.impl</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-config</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrd-jrobin</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.collection</groupId>

<artifactId>org.opennms.features.collection.persistence.rrd</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-mock</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.db</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.services</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.rest</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.xml</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.ticketing</groupId>
<artifactId>org.opennms.features.ticketing.daemon</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.rest</groupId>
<artifactId>org.opennms.features.rest.mapper</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.rest-provider</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.enlinkd</groupId>
<artifactId>org.opennms.features.enlinkd.service.api</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.opennms</groupId>
<artifactId>org.opennms.features</artifactId>
<version>27.0.5</version>
</parent>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.system-report</artifactId>
<name>OpenNMS :: Features :: System Report</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>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.soa</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.lib</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.sysprops</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>commons-cli</groupId>
<artifactId>commons-cli</artifactId>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-exec</artifactId>
</dependency>
<dependency>
<groupId>commons-net</groupId>
<artifactId>commons-net</artifactId>
</dependency>
<!-- needed by opennms-dao runtime :( -->
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrd-jrobin</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jrrd2-dependencies</artifactId>
<scope>test</scope>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.persistence.rrd</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrdtool-api</artifactId>
</dependency>
<!-- test dependencies -->
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.db</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.http</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.services</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-mock</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.telemetry</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.telemetry</groupId>
<artifactId>org.opennms.features.telemetry.api</artifactId>
<name>OpenNMS :: Features :: Telemetry :: API</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.features.telemetry.config</groupId>
<artifactId>org.opennms.features.telemetry.config.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.sink</groupId>
<artifactId>org.opennms.core.ipc.sink.api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>io.dropwizard.metrics</groupId>
<artifactId>metrics-core</artifactId>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.telemetry</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.telemetry</groupId>
<artifactId>org.opennms.features.telemetry.common</artifactId>
<name>OpenNMS :: Features :: Telemetry :: Common</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.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.telemetry</groupId>
<artifactId>org.opennms.features.telemetry.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.telemetry</groupId>
<artifactId>org.opennms.features.telemetry.registry</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.telemetry.config</groupId>
<artifactId>org.opennms.features.telemetry.config.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.sink</groupId>
<artifactId>org.opennms.core.ipc.sink.api</artifactId>
</dependency>
<dependency>
<groupId>com.google.protobuf</groupId>
<artifactId>protobuf-java</artifactId>
</dependency>
<dependency>
<!-- Required for the DistPollerDao -->
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-api</artifactId>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features.telemetry</groupId>
<artifactId>org.opennms.features.telemetry.config</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.telemetry.config</groupId>
<artifactId>org.opennms.features.telemetry.config.api</artifactId>
<name>OpenNMS :: Features :: Telemetry :: Config :: API</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>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features.telemetry</groupId>
<artifactId>org.opennms.features.telemetry.config</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.telemetry.config</groupId>
<artifactId>org.opennms.features.telemetry.config.jaxb</artifactId>
<name>OpenNMS :: Features :: Telemetry :: Config :: JAXB</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>
<!-- No need to generate xsds everytime, use pre-compiled one
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>jaxb2-maven-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<id>schemagen</id>
<goals>
<goal>schemagen</goal>
</goals>
</execution>
</executions>
<configuration>
<transformSchemas>
<transformSchema>
<uri>http://xmlns.opennms.org/xsd/config/telemetryd-config</uri>
<toFile>telemetryd-config.xsd</toFile>
</transformSchema>
</transformSchemas>
<outputDirectory>${project.build.directory}/xsds</outputDirectory>
<workDirectory>${project.build.directory}/jaxb2-work</workDirectory>
<includes>
<include>org/opennms/netmgt/telemetry/config/model/*.java</include>
</includes>
<verbose>true</verbose>
</configuration>
</plugin> -->
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<descriptors>
<descriptor>src/assembly/xsds.xml</descriptor>
</descriptors>
<overrideUid>0</overrideUid>
<overrideGid>0</overrideGid>
<tarLongFileMode>posix</tarLongFileMode>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.xml</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.telemetry.config</groupId>
<artifactId>org.opennms.features.telemetry.config.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.telemetry</groupId>
<artifactId>org.opennms.features.telemetry.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.xml</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.telemetry</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.telemetry</groupId>
<artifactId>org.opennms.features.telemetry.config</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Features :: Telemetry :: Config</name>
<modules>
<module>api</module>
<module>jaxb</module>
</modules>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.telemetry</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.telemetry</groupId>
<artifactId>org.opennms.features.telemetry.daemon</artifactId>
<name>OpenNMS :: Features :: Telemetry :: Daemon</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.core</groupId>
<artifactId>org.opennms.core.daemon</artifactId>
</dependency>
<dependency>
<!-- Required for the DefaultCollectionAgentFactory implementation -->
<groupId>org.opennms</groupId>
<artifactId>opennms-services</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.telemetry</groupId>
<artifactId>org.opennms.features.telemetry.common</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.telemetry.config</groupId>
<artifactId>org.opennms.features.telemetry.config.jaxb</artifactId>
<version>${project.version}</version>
</dependency>

<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.xml</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.rpc</groupId>
<artifactId>org.opennms.core.ipc.rpc.mock-impl</artifactId>
<version>${project.version}</version>
<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>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features.telemetry</groupId>
<artifactId>org.opennms.features.telemetry.distributed</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.telemetry.distributed</groupId>
<artifactId>org.opennms.features.telemetry.distributed.common</artifactId>
<name>OpenNMS :: Features :: Telemetry :: Distributed :: Common</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.features.telemetry</groupId>
<artifactId>org.opennms.features.telemetry.common</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.telemetry.config</groupId>
<artifactId>org.opennms.features.telemetry.config.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.telemetry.config</groupId>
<artifactId>org.opennms.features.telemetry.config.jaxb</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.compendium</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.xml</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features.telemetry</groupId>
<artifactId>org.opennms.features.telemetry.distributed</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.telemetry.distributed</groupId>
<artifactId>org.opennms.features.telemetry.distributed.minion</artifactId>
<name>OpenNMS :: Features :: Telemetry :: Distributed :: Minion</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.features.telemetry.distributed</groupId>
<artifactId>org.opennms.features.telemetry.distributed.common</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.compendium</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.health</groupId>
<artifactId>org.opennms.core.health.api</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
<!--<dependency>-->
<!--<groupId>org.opennms.features.telemetry</groupId>-->
<!--<artifactId>org.opennms.features.telemetry.daemon</artifactId>-->
<!--<version>${project.version}</version>-->
<!--<scope>compile</scope>-->
<!--</dependency>-->
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.telemetry</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.telemetry</groupId>
<artifactId>org.opennms.features.telemetry.distributed</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Features :: Telemetry :: Distributed</name>
<modules>
<module>common</module>
<module>minion</module>
<module>sentinel</module>
</modules>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features.telemetry</groupId>
<artifactId>org.opennms.features.telemetry.distributed</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.telemetry.distributed</groupId>
<artifactId>org.opennms.features.telemetry.distributed.sentinel</artifactId>
<name>OpenNMS :: Features :: Telemetry :: Distributed :: Sentinel</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.features.telemetry.distributed</groupId>
<artifactId>org.opennms.features.telemetry.distributed.common</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.telemetry</groupId>
<artifactId>org.opennms.features.telemetry.daemon</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.compendium</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.health</groupId>
<artifactId>org.opennms.core.health.api</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.telemetry</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.telemetry</groupId>
<artifactId>org.opennms.features.telemetry.itests</artifactId>
<name>OpenNMS :: Features :: Telemetry :: Integration Tests</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.features.telemetry</groupId>
<artifactId>org.opennms.features.telemetry.daemon</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-mock</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.jayway.awaitility</groupId>
<artifactId>awaitility</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-library</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.test-api</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.db</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.services</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrd-jrobin</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.persistence.rrd</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-icmp-jna</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-icmp-best</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.sink</groupId>
<artifactId>org.opennms.core.ipc.sink.mock-impl</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.sink</groupId>
<artifactId>org.opennms.core.ipc.sink.common</artifactId>
<version>${project.version}</version>
<type>test-jar</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.telemetry</groupId>
<artifactId>org.opennms.features.telemetry.listeners</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.telemetry.protocols.bmp</groupId>
<artifactId>org.opennms.features.telemetry.protocols.bmp.adapter</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.telemetry.protocols.bmp</groupId>
<artifactId>org.opennms.features.telemetry.protocols.bmp.parser</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.telemetry.protocols.netflow</groupId>

<artifactId>org.opennms.features.telemetry.protocols.netflow.adapter</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.telemetry.protocols.netflow</groupId>

<artifactId>org.opennms.features.telemetry.protocols.netflow.parser</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.telemetry.protocols.sflow</groupId>

<artifactId>org.opennms.features.telemetry.protocols.sflow.adapter</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.telemetry.protocols.sflow</groupId>

<artifactId>org.opennms.features.telemetry.protocols.sflow.parser</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.telemetry.protocols.jti</groupId>
<artifactId>org.opennms.features.telemetry.protocols.jti.adapter</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.telemetry.protocols.graphite</groupId>

<artifactId>org.opennms.features.telemetry.protocols.graphite.adapter</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.camel</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core.tracing</groupId>
<artifactId>org.opennms.core.tracing.registry</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.distributed</groupId>
<artifactId>org.opennms.features.distributed.opennms-identity</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.sink.camel</groupId>
<artifactId>org.opennms.core.ipc.sink.camel.client</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.sink.camel</groupId>
<artifactId>org.opennms.core.ipc.sink.camel.server</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.thresholding.impl</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.distributed</groupId>
<artifactId>org.opennms.features.distributed.kv-
store.blob.postgres</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.telemetry</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.telemetry</groupId>
<artifactId>org.opennms.features.telemetry.listeners</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Features :: Telemetry :: Listeners</name>
<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.features.telemetry</groupId>
<artifactId>org.opennms.features.telemetry.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.telemetry</groupId>
<artifactId>org.opennms.features.telemetry.common</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>org.opennms.features</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.telemetry</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Features :: Telemetry</name>
<modules>
<module>api</module>
<module>common</module>
<module>config</module>
<module>daemon</module>
<module>distributed</module>
<module>itests</module>
<module>listeners</module>
<module>protocols</module>
<module>registry</module>
</modules>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features.telemetry</groupId>
<artifactId>org.opennms.features.telemetry.protocols</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.telemetry.protocols</groupId>
<artifactId>org.opennms.features.telemetry.protocols.adapters</artifactId>
<name>OpenNMS :: Features :: Telemetry :: Protocols :: Adapters</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.features.telemetry</groupId>
<artifactId>org.opennms.features.telemetry.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</dependency>
<dependency>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy-all</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.thresholding.api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-api</artifactId>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.osgi-jsr223</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.sysprops</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.thresholding.impl</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features.telemetry.protocols</groupId>
<artifactId>org.opennms.features.telemetry.protocols.bmp</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.telemetry.protocols.bmp</groupId>
<artifactId>org.opennms.features.telemetry.protocols.bmp.adapter</artifactId>
<name>OpenNMS :: Features :: Telemetry :: Protocols :: BMP :: Adapter</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.features.telemetry</groupId>
<artifactId>org.opennms.features.telemetry.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.flows</groupId>
<artifactId>org.opennms.features.flows.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.telemetry.protocols</groupId>
<artifactId>org.opennms.features.telemetry.protocols.common</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.telemetry.protocols</groupId>
<artifactId>org.opennms.features.telemetry.protocols.adapters</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.telemetry.protocols.bmp</groupId>

<artifactId>org.opennms.features.telemetry.protocols.bmp.transport</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-all</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.common</groupId>
<artifactId>org.opennms.core.ipc.common.kafka</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
<scope>provided</scope>
</dependency>

<!-- Test -->


<dependency>
<groupId>org.opennms.features.telemetry.protocols.bmp</groupId>
<artifactId>org.opennms.features.telemetry.protocols.bmp.parser</artifactId>
<version>${project.version}</version>
<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.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.lib</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.bundles</groupId>
<artifactId>org.opennms.bundles.openbmp-api-message</artifactId>
<version>0.1.0_1</version>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features.telemetry.protocols</groupId>
<artifactId>org.opennms.features.telemetry.protocols.bmp</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.telemetry.protocols.bmp</groupId>
<artifactId>org.opennms.features.telemetry.protocols.bmp.parser</artifactId>
<name>OpenNMS :: Features :: Telemetry :: Protocols :: BMP :: Parser</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.features.telemetry</groupId>
<artifactId>org.opennms.features.telemetry.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.telemetry</groupId>
<artifactId>org.opennms.features.telemetry.listeners</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.telemetry.protocols</groupId>
<artifactId>org.opennms.features.telemetry.protocols.common</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.telemetry.protocols.bmp</groupId>

<artifactId>org.opennms.features.telemetry.protocols.bmp.transport</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-all</artifactId>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-csv</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.dnsresolver</groupId>
<artifactId>org.opennms.features.dnsresolver.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.google.protobuf</groupId>
<artifactId>protobuf-java</artifactId>
</dependency>
<dependency>
<groupId>io.github.resilience4j</groupId>
<artifactId>resilience4j-bulkhead</artifactId>
<version>${resilience4jVersion}</version>
</dependency>
<dependency>
<groupId>com.swrve</groupId>
<artifactId>rate-limited-logger</artifactId>
</dependency>

<!-- Test -->


<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.db</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-config</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.events</groupId>
<artifactId>org.opennms.features.events.daemon</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-mock</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.services</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-library</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features.telemetry</groupId>
<artifactId>org.opennms.features.telemetry.protocols</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.telemetry.protocols</groupId>
<artifactId>org.opennms.features.telemetry.protocols.bmp</artifactId>
<name>OpenNMS :: Features :: Telemetry :: Protocols :: BMP</name>
<packaging>pom</packaging>
<modules>
<module>transport</module>
<module>parser</module>
<module>adapter</module>
</modules>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features.telemetry.protocols</groupId>
<artifactId>org.opennms.features.telemetry.protocols.bmp</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.telemetry.protocols.bmp</groupId>
<artifactId>org.opennms.features.telemetry.protocols.bmp.transport</artifactId>
<name>OpenNMS :: Features :: Telemetry :: Protocols :: BMP :: Transport</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>com.google.protobuf</groupId>
<artifactId>protobuf-java</artifactId>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features.telemetry</groupId>
<artifactId>org.opennms.features.telemetry.protocols</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.telemetry.protocols</groupId>
<artifactId>org.opennms.features.telemetry.protocols.common</artifactId>
<name>OpenNMS :: Features :: Telemetry :: Protocols :: Common</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.features.telemetry</groupId>
<artifactId>org.opennms.features.telemetry.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.telemetry.config</groupId>
<artifactId>org.opennms.features.telemetry.config.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.telemetry</groupId>
<artifactId>org.opennms.features.telemetry.listeners</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.lib</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.sink</groupId>
<artifactId>org.opennms.core.ipc.sink.api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.mongodb</groupId>
<artifactId>bson</artifactId>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features.telemetry</groupId>
<artifactId>org.opennms.features.telemetry.protocols</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.telemetry.protocols</groupId>
<artifactId>org.opennms.features.telemetry.protocols.flows</artifactId>
<name>OpenNMS :: Features :: Telemetry :: Protocols :: Flows</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.features.flows</groupId>
<artifactId>org.opennms.features.flows.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.telemetry</groupId>
<artifactId>org.opennms.features.telemetry.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.telemetry.protocols</groupId>
<artifactId>org.opennms.features.telemetry.protocols.common</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</dependency>
<dependency>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy-all</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-api</artifactId>
</dependency>
<dependency>
<groupId>io.dropwizard.metrics</groupId>
<artifactId>metrics-core</artifactId>
<version>${dropwizardMetricsVersion}</version>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.osgi-jsr223</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features.telemetry.protocols</groupId>
<artifactId>org.opennms.features.telemetry.protocols.graphite</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.telemetry.protocols.graphite</groupId>

<artifactId>org.opennms.features.telemetry.protocols.graphite.adapter</artifactId>
<name>OpenNMS :: Features :: Telemetry :: Protocols :: Graphite Telemetry ::
Adapter</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.features.telemetry.protocols</groupId>
<artifactId>org.opennms.features.telemetry.protocols.adapters</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features.telemetry</groupId>
<artifactId>org.opennms.features.telemetry.protocols</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.telemetry.protocols</groupId>
<artifactId>org.opennms.features.telemetry.protocols.graphite</artifactId>
<name>OpenNMS :: Features :: Telemetry :: Protocols :: Graphite Telemetry</name>
<packaging>pom</packaging>
<modules>
<module>adapter</module>
</modules>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features.telemetry.protocols</groupId>
<artifactId>org.opennms.features.telemetry.protocols.jti</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.telemetry.protocols.jti</groupId>
<artifactId>org.opennms.features.telemetry.protocols.jti.adapter</artifactId>
<name>OpenNMS :: Features :: Telemetry :: Protocols :: JTI :: Adapter</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.features.telemetry.protocols</groupId>
<artifactId>org.opennms.features.telemetry.protocols.adapters</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.google.protobuf</groupId>
<artifactId>protobuf-java</artifactId>
<version>${protobuf2Version}</version>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
<scope>provided</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features.telemetry</groupId>
<artifactId>org.opennms.features.telemetry.protocols</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.telemetry.protocols</groupId>
<artifactId>org.opennms.features.telemetry.protocols.jti</artifactId>
<name>OpenNMS :: Features :: Telemetry :: Protocols :: JTI</name>
<packaging>pom</packaging>
<modules>
<module>adapter</module>
</modules>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features.telemetry.protocols</groupId>
<artifactId>org.opennms.features.telemetry.protocols.netflow</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.telemetry.protocols.netflow</groupId>
<artifactId>org.opennms.features.telemetry.protocols.netflow.adapter</artifactId>
<name>OpenNMS :: Features :: Telemetry :: Protocols :: Netflow :: Adapter</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.features.telemetry</groupId>
<artifactId>org.opennms.features.telemetry.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.flows</groupId>
<artifactId>org.opennms.features.flows.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.telemetry.protocols</groupId>
<artifactId>org.opennms.features.telemetry.protocols.common</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.telemetry.protocols</groupId>
<artifactId>org.opennms.features.telemetry.protocols.flows</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.telemetry.protocols.netflow</groupId>

<artifactId>org.opennms.features.telemetry.protocols.netflow.transport</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-all</artifactId>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-csv</artifactId>
</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.opennms.features.telemetry.protocols.netflow</groupId>

<artifactId>org.opennms.features.telemetry.protocols.netflow.parser</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.google.protobuf</groupId>
<artifactId>protobuf-java-util</artifactId>
<version>${protobufVersion}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.googlecode.json-simple</groupId>
<artifactId>json-simple</artifactId>
<version>1.1.1</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features.telemetry.protocols</groupId>
<artifactId>org.opennms.features.telemetry.protocols.netflow</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.telemetry.protocols.netflow</groupId>
<artifactId>org.opennms.features.telemetry.protocols.netflow.parser</artifactId>
<name>OpenNMS :: Features :: Telemetry :: Protocols :: Netflow :: Parser</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.features.telemetry</groupId>
<artifactId>org.opennms.features.telemetry.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.telemetry.protocols.netflow</groupId>

<artifactId>org.opennms.features.telemetry.protocols.netflow.transport</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.telemetry</groupId>
<artifactId>org.opennms.features.telemetry.listeners</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.telemetry.protocols</groupId>
<artifactId>org.opennms.features.telemetry.protocols.common</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-all</artifactId>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-csv</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.dnsresolver</groupId>
<artifactId>org.opennms.features.dnsresolver.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.swrve</groupId>
<artifactId>rate-limited-logger</artifactId>
</dependency>
<!-- Test -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.db</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-config</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.events</groupId>
<artifactId>org.opennms.features.events.daemon</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-mock</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.services</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-library</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
</dependency>
<dependency>
<groupId>com.jayway.awaitility</groupId>
<artifactId>awaitility</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features.telemetry</groupId>
<artifactId>org.opennms.features.telemetry.protocols</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.telemetry.protocols</groupId>
<artifactId>org.opennms.features.telemetry.protocols.netflow</artifactId>
<name>OpenNMS :: Features :: Telemetry :: Protocols :: Netflow</name>
<packaging>pom</packaging>
<modules>
<module>parser</module>
<module>adapter</module>
<module>transport</module>
</modules>
</project>
<?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>
<artifactId>org.opennms.features.telemetry.protocols.netflow</artifactId>
<groupId>org.opennms.features.telemetry.protocols</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>

<groupId>org.opennms.features.telemetry.protocols.netflow</groupId>

<artifactId>org.opennms.features.telemetry.protocols.netflow.transport</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Features :: Telemetry :: Protocols :: Netflow ::
Transport</name>
<build>

<!-- Enable below extension and plugin to generate Java objects from proto file
-->
<!-- <extensions>
<extension>
<groupId>kr.motd.maven</groupId>
<artifactId>os-maven-plugin</artifactId>
<version>1.6.2</version>
</extension>
</extensions>-->
<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>
<!-- <plugin>
<groupId>org.xolstice.maven.plugins</groupId>
<artifactId>protobuf-maven-plugin</artifactId>
<version>0.6.1</version>
<configuration>
<protocArtifact>com.google.protobuf:protoc:3.9.0:exe:$
{os.detected.classifier}</protocArtifact>
<pluginId>grpc-java</pluginId>
<pluginArtifact>io.grpc:protoc-gen-grpc-java:1.24.0:exe:$
{os.detected.classifier}</pluginArtifact>
</configuration>
<executions>
<execution>
<goals>
<goal>compile</goal>
<goal>compile-custom</goal>
</goals>
</execution>
</executions>
</plugin>-->
</plugins>
</build>

<dependencies>
<dependency>
<groupId>com.google.protobuf</groupId>
<artifactId>protobuf-java</artifactId>
<version>${protobufVersion}</version>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features.telemetry.protocols</groupId>
<artifactId>org.opennms.features.telemetry.protocols.nxos</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.telemetry.protocols.nxos</groupId>
<artifactId>org.opennms.features.telemetry.protocols.nxos.adapter</artifactId>
<name>OpenNMS :: Features :: Telemetry :: Protocols :: NX-OS Telemetry ::
Adapter</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.features.telemetry.protocols</groupId>
<artifactId>org.opennms.features.telemetry.protocols.adapters</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.google.protobuf</groupId>
<artifactId>protobuf-java</artifactId>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features.telemetry</groupId>
<artifactId>org.opennms.features.telemetry.protocols</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.telemetry.protocols</groupId>
<artifactId>org.opennms.features.telemetry.protocols.nxos</artifactId>
<name>OpenNMS :: Features :: Telemetry :: Protocols :: NX-OS Telemetry</name>
<packaging>pom</packaging>
<modules>
<module>adapter</module>
</modules>
</project>
<?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>
<artifactId>org.opennms.features.telemetry.protocols.openconfig</artifactId>
<groupId>org.opennms.features.telemetry.protocols</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>

<groupId>org.opennms.features.telemetry.protocols.openconfig</groupId>
<artifactId>org.opennms.features.telemetry.protocols.openconfig.adapter</artifactId
>
<name>OpenNMS :: Features :: Telemetry :: Protocols :: OpenConfig ::
Adapter</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.features.telemetry.protocols</groupId>
<artifactId>org.opennms.features.telemetry.protocols.adapters</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.google.protobuf</groupId>
<artifactId>protobuf-java</artifactId>
<version>${protobufVersion}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.openconfig</groupId>
<artifactId>org.opennms.features.openconfig.common</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
<scope>provided</scope>
</dependency>
</dependencies>
</project>
<?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>
<artifactId>org.opennms.features.telemetry.protocols.openconfig</artifactId>
<groupId>org.opennms.features.telemetry.protocols</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>

<groupId>org.opennms.features.telemetry.protocols.openconfig</groupId>
<artifactId>org.opennms.features.telemetry.protocols.openconfig.connector</artifact
Id>
<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.core.ipc.rpc</groupId>
<artifactId>org.opennms.core.ipc.rpc.utils</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.openconfig</groupId>
<artifactId>org.opennms.features.openconfig.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.telemetry</groupId>
<artifactId>org.opennms.features.telemetry.api</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>

</project>
<?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>
<artifactId>org.opennms.features.telemetry.protocols.openconfig</artifactId>
<groupId>org.opennms.features.telemetry.protocols</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>

<groupId>org.opennms.features.telemetry.protocols.openconfig</groupId>

<artifactId>org.opennms.features.telemetry.protocols.openconfig.itests</artifactId>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.jayway.awaitility</groupId>
<artifactId>awaitility</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.telemetry</groupId>
<artifactId>org.opennms.features.telemetry.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.openconfig</groupId>
<artifactId>org.opennms.features.openconfig.telemetry-client</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>${guavagRPCVersion}</version>
</dependency>
<dependency>
<groupId>com.google.protobuf</groupId>
<artifactId>protobuf-java</artifactId>
<version>${protobufVersion}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-mock</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.telemetry</groupId>
<artifactId>org.opennms.features.telemetry.daemon</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-mock</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.jayway.awaitility</groupId>
<artifactId>awaitility</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-library</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.test-api</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.db</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.services</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrd-jrobin</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.persistence.rrd</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-icmp-jna</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-icmp-best</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.sink</groupId>
<artifactId>org.opennms.core.ipc.sink.mock-impl</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.sink</groupId>
<artifactId>org.opennms.core.ipc.sink.common</artifactId>
<version>${project.version}</version>
<type>test-jar</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.tracing</groupId>
<artifactId>org.opennms.core.tracing.registry</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.distributed</groupId>
<artifactId>org.opennms.features.distributed.opennms-identity</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.camel</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.sink.camel</groupId>
<artifactId>org.opennms.core.ipc.sink.camel.client</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.sink.camel</groupId>
<artifactId>org.opennms.core.ipc.sink.camel.server</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.thresholding.impl</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.distributed</groupId>
<artifactId>org.opennms.features.distributed.kv-
store.blob.postgres</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.telemetry.protocols.openconfig</groupId>

<artifactId>org.opennms.features.telemetry.protocols.openconfig.adapter</artifactId
>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.telemetry.protocols.openconfig</groupId>

<artifactId>org.opennms.features.telemetry.protocols.openconfig.connector</artifact
Id>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
</dependencies>

</project>
<?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>
<artifactId>org.opennms.features.telemetry.protocols</artifactId>
<groupId>org.opennms.features.telemetry</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.telemetry.protocols</groupId>
<artifactId>org.opennms.features.telemetry.protocols.openconfig</artifactId>
<packaging>pom</packaging>
<modules>
<module>adapter</module>
<module>connector</module>
<module>itests</module>
</modules>

</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.telemetry</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.telemetry</groupId>
<artifactId>org.opennms.features.telemetry.protocols</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Features :: Telemetry :: Protocols</name>
<modules>
<module>adapters</module>
<module>bmp</module>
<module>common</module>
<module>flows</module>
<module>graphite</module>
<module>jti</module>
<module>nxos</module>
<module>sflow</module>
<module>netflow</module>
<module>openconfig</module>
</modules>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features.telemetry.protocols</groupId>
<artifactId>org.opennms.features.telemetry.protocols.sflow</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.telemetry.protocols.sflow</groupId>
<artifactId>org.opennms.features.telemetry.protocols.sflow.adapter</artifactId>
<name>OpenNMS :: Features :: Telemetry :: Protocols :: SFlow :: Adapter</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.features.telemetry</groupId>
<artifactId>org.opennms.features.telemetry.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.telemetry</groupId>
<artifactId>org.opennms.features.telemetry.common</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.telemetry.protocols</groupId>
<artifactId>org.opennms.features.telemetry.protocols.common</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.telemetry.protocols</groupId>
<artifactId>org.opennms.features.telemetry.protocols.flows</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.telemetry.protocols</groupId>
<artifactId>org.opennms.features.telemetry.protocols.adapters</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.mongodb</groupId>
<artifactId>bson</artifactId>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features.telemetry.protocols</groupId>
<artifactId>org.opennms.features.telemetry.protocols.sflow</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.telemetry.protocols.sflow</groupId>
<artifactId>org.opennms.features.telemetry.protocols.sflow.parser</artifactId>
<name>OpenNMS :: Features :: Telemetry :: Protocols :: SFlow :: Parser</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.features.telemetry</groupId>
<artifactId>org.opennms.features.telemetry.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.telemetry</groupId>
<artifactId>org.opennms.features.telemetry.common</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.telemetry.protocols</groupId>
<artifactId>org.opennms.features.telemetry.protocols.common</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-all</artifactId>
</dependency>
<dependency>
<groupId>org.mongodb</groupId>
<artifactId>bson</artifactId>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.dnsresolver</groupId>
<artifactId>org.opennms.features.dnsresolver.api</artifactId>
<version>${project.version}</version>
</dependency>

<!-- Test -->


<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.telemetry.protocols.sflow</groupId>

<artifactId>org.opennms.features.telemetry.protocols.sflow.adapter</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features.telemetry</groupId>
<artifactId>org.opennms.features.telemetry.protocols</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.telemetry.protocols</groupId>
<artifactId>org.opennms.features.telemetry.protocols.sflow</artifactId>
<name>OpenNMS :: Features :: Telemetry :: Protocols :: SFlow</name>
<packaging>pom</packaging>
<modules>
<module>parser</module>
<module>adapter</module>
</modules>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.telemetry</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.telemetry</groupId>
<artifactId>org.opennms.features.telemetry.registry</artifactId>
<name>OpenNMS :: Features :: Telemetry :: Registry</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.features.telemetry</groupId>
<artifactId>org.opennms.features.telemetry.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.soa</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-dependencies</artifactId>
<type>pom</type>
</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>com.google.guava</groupId>
<artifactId>guava</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.soa</artifactId>
<version>${project.version}</version>
<type>test-jar</type>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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">
<modelVersion>4.0.0</modelVersion>

<parent>
<artifactId>themes</artifactId>
<groupId>org.opennms.features</groupId>
<version>27.0.5</version>
</parent>

<groupId>org.opennms.features.themes</groupId>
<artifactId>dashboard-theme</artifactId>
<packaging>bundle</packaging>

<name>OpenNMS :: Features :: Vaadin :: Theme :: Dashboard</name>

<properties>
<bundle.symbolicname>org.opennms.features.topology.themes.dashboard-
theme</bundle.symbolicname>
</properties>

<dependencies>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
<scope>provided</scope>
</dependency>
</dependencies>

<build>
<resources>
<resource>
<directory>src/main/java</directory>
</resource>
</resources>

<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>
<Fragment-Host>com.vaadin.themes;bundle-version=$
{vaadinVersion}</Fragment-Host>
</instructions>
</configuration>
</plugin>
</plugins>
</build>

</project>
<?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">
<modelVersion>4.0.0</modelVersion>
<parent>
<artifactId>themes</artifactId>
<groupId>org.opennms.features</groupId>
<version>27.0.5</version>
</parent>
<groupId>org.opennms.features.themes</groupId>
<artifactId>jmxconfiggenerator-theme</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Features :: Vaadin :: Theme :: JMX Configuration
Generator</name>
<properties>

<bundle.symbolicname>org.opennms.features.topology.themes.jmxconfiggenerator-
theme</bundle.symbolicname>
</properties>
<dependencies>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
<scope>provided</scope>
</dependency>
</dependencies>
<build>
<resources>
<resource>
<directory>src/main/filtered</directory>
<filtering>true</filtering>
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>buildnumber-maven-plugin</artifactId>
<executions>
<execution>
<phase>generate-sources</phase>
<goals>
<goal>create</goal>
</goals>
</execution>
</executions>
<configuration>
<scmDirectory>../../..</scmDirectory>
<shortRevisionLength>8</shortRevisionLength>
<doCheck>false</doCheck>
<doUpdate>false</doUpdate>
<revisionOnScmFailure>0</revisionOnScmFailure>
</configuration>
</plugin>
<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>
<Fragment-Host>com.vaadin.themes;bundle-version=$
{vaadinVersion}</Fragment-Host>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
</project>
<?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">

<modelVersion>4.0.0</modelVersion>

<parent>
<artifactId>themes</artifactId>
<groupId>org.opennms.features</groupId>
<version>27.0.5</version>
</parent>

<groupId>org.opennms.features.themes</groupId>
<artifactId>onms-default-theme</artifactId>
<packaging>bundle</packaging>

<name>OpenNMS :: Features :: Vaadin :: Theme :: Default</name>

<properties>
<bundle.symbolicname>org.opennms.features.topology.themes.default-
theme</bundle.symbolicname>
</properties>

<dependencies>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.web-assets</artifactId>
<version>${project.version}</version>
<classifier>dist</classifier>
<scope>provided</scope>
</dependency>
</dependencies>

<build>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
<resource>
<directory>${project.build.outputDirectory}</directory>
</resource>
</resources>

<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>buildnumber-maven-plugin</artifactId>
<executions>
<execution>
<phase>generate-sources</phase>
<goals>
<goal>create</goal>
</goals>
</execution>
</executions>
<configuration>
<scmDirectory>../../..</scmDirectory>
<shortRevisionLength>8</shortRevisionLength>
<doCheck>false</doCheck>
<doUpdate>false</doUpdate>
<revisionOnScmFailure>0</revisionOnScmFailure>
</configuration>
</plugin>
<plugin>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<phase>generate-sources</phase>
<goals>
<goal>unpack</goal>
</goals>
</execution>
</executions>
<configuration>
<outputDirectory>$
{project.build.outputDirectory}/VAADIN/themes/opennms</outputDirectory>
<artifactItems>
<artifactItem>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.web-assets</artifactId>
<classifier>dist</classifier>
<overWrite>true</overWrite>
<excludes>WEB-INF/**</excludes>
</artifactItem>
</artifactItems>
</configuration>
</plugin>
<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>
<Fragment-Host>com.vaadin.themes;bundle-version=$
{vaadinVersion}</Fragment-Host>
</instructions>
</configuration>
</plugin>
</plugins>
</build>

</project>
<?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/maven-v4_0_0.xsd">

<parent>
<groupId>org.opennms</groupId>
<artifactId>org.opennms.features</artifactId>
<version>27.0.5</version>
</parent>

<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features</groupId>
<artifactId>themes</artifactId>

<name>OpenNMS :: Features :: Vaadin :: Themes</name>

<packaging>pom</packaging>

<modules>
<module>jmxconfiggenerator-theme</module>
<module>onms-default-theme</module>
<module>dashboard-theme</module>
</modules>
</project>
<?xml version="1.0"?>
<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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.ticketing</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.ticketing</groupId>
<artifactId>org.opennms.features.ticketing.api</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Features :: Ticketing :: API</name>

<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>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?xml version="1.0"?>
<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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.ticketing</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.ticketing</groupId>
<artifactId>org.opennms.features.ticketing.daemon</artifactId>
<name>OpenNMS :: Features :: Ticketing :: Daemon</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.core</groupId>
<artifactId>org.opennms.core.daemon</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.ticketing</groupId>
<artifactId>org.opennms.features.ticketing.api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-api</artifactId>
</dependency>

<!-- Test Dependencies -->


<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-config</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.events</groupId>
<artifactId>org.opennms.features.events.daemon</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrd-jrobin</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.persistence.rrd</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.services</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.db</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-mock</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?xml version="1.0"?>
<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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.ticketing</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.ticketing</groupId>
<artifactId>org.opennms.features.ticketing.drools-integration</artifactId>
<name>OpenNMS :: Features :: Ticketing :: Drools Integration</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.dependencies</groupId>
<artifactId>drools-dependencies</artifactId>
<scope>provided</scope>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.features.ticketing</groupId>
<artifactId>org.opennms.features.ticketing.api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.ticketing</groupId>
<artifactId>org.opennms.features.ticketing.daemon</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>commons-beanutils</groupId>
<artifactId>commons-beanutils</artifactId>
</dependency>
<dependency>
<groupId>commons-configuration</groupId>
<artifactId>commons-configuration</artifactId>
<exclusions>
<exclusion>
<groupId>commons-beanutils</groupId>
<artifactId>commons-beanutils-core</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-services</artifactId>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.services</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-mock</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.ticketing</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<packaging>bundle</packaging>
<artifactId>jira-client</artifactId>
<name>OpenNMS :: Features :: Ticketing :: JIRA Client</name>
<description>OSGi wrapper for the Jira Client API.</description>

<properties>
<jiraClientVersion>3.0.0</jiraClientVersion>
</properties>

<build>
<defaultGoal>install</defaultGoal>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>${maven.shade.plugin.version}</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<artifactSet>
<excludes>
<exclude>org.springframework:*</exclude>
<exclude>javax.xml.bind:jaxb-api</exclude>
<exclude>com.sun.xml.bind:jaxb-impl</exclude>
<exclude>commons-logging:commons-logging</exclude>
<exclude>joda-time:joda-time</exclude>
</excludes>
</artifactSet>
<filters>
<filter>
<artifact>*:*</artifact>
<excludes>
<exclude>javax/ws/rs/**</exclude>
</excludes>
</filter>
</filters>

<createDependencyReducedPom>true</createDependencyReducedPom>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<instructions>
<Import-
Package>javax.security.auth,javax.security.auth.x500,org.joda.time,org.joda.time.fo
rmat;version=$
{jodaTimeVersion},javax.ws.rs,javax.ws.rs.core,javax.ws.rs.ext,javax.net.ssl,javax.
naming,javax.naming.ldap,javax.naming.directory,org.apache.commons.logging,org.spri
ngframework.beans.factory</Import-Package>
<Export-
Package>com.atlassian.jira.rest.client.api,com.atlassian.jira.rest.client.auth,com.
atlassian.jira.rest.client.api.domain,com.atlassian.jira.rest.client.api.domain.inp
ut,com.atlassian.jira.rest.client.internal.async,com.atlassian.util.concurrent,com.
atlassian.httpclient.apache.httpcomponents</Export-Package>
</instructions>
<unpackBundle>true</unpackBundle>
</configuration>
</plugin>
</plugins>
</build>

<dependencies>
<dependency>
<groupId>org.glassfish.jersey.core</groupId>
<artifactId>jersey-common</artifactId>
<version>2.4.1</version>
</dependency>
<dependency>
<groupId>com.atlassian.jira</groupId>
<artifactId>jira-rest-java-client-api</artifactId>
<version>${jiraClientVersion}</version>
<exclusions>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
</exclusion>
<exclusion>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
</exclusion>
<exclusion>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
</exclusion>
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.atlassian.jira</groupId>
<artifactId>jira-rest-java-client-core</artifactId>
<version>${jiraClientVersion}</version>
<exclusions>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
</exclusion>
<exclusion>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
</exclusion>
<exclusion>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
</exclusion>
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>

<repositories>
<repository>
<id>atlassian-public</id>
<name>Atlassian public repo</name>
<url>http://maven.atlassian.com/content/repositories/atlassian-
public/</url>
</repository>
<repository>
<id>atlassian-public-mirror</id>
<name>Atlassian public repo</name>
<url>http://maven.opennms.org/content/repositories/atlassian-
public/</url>
</repository>
</repositories>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.ticketing</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>jira-troubleticketer</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Features :: Ticketing :: JIRA</name>
<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>
<Karaf-Commands>*</Karaf-Commands>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.compendium</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.karaf.shell</groupId>
<artifactId>org.apache.karaf.shell.console</artifactId>
<version>${karafVersion}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.karaf.shell</groupId>
<artifactId>org.apache.karaf.shell.core</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.ticketing</groupId>
<artifactId>org.opennms.features.ticketing.api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.lib</artifactId>
</dependency>
<dependency>
<groupId>joda-time</groupId>
<artifactId>joda-time</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>jira-client</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-dependencies</artifactId>
<type>pom</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.glassfish.jersey.core</groupId>
<artifactId>jersey-common</artifactId>
<version>2.4.1</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.ticketing</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>opennms-integration-otrs-31</artifactId>
<name>OpenNMS :: Features :: Ticketing :: OTRS 3.1</name>
<packaging>bundle</packaging>
<build>
<plugins>
<plugin>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-codegen-plugin</artifactId>
<version>${cxfVersion}</version>
<executions>
<execution>
<id>generate-sources</id>
<phase>generate-sources</phase>
<configuration>
<wsdlOptions>
<wsdlOption>

<wsdl>src/main/resources/GenericTicketConnectorSOAP.wsdl</wsdl>

<wsdlLocation>classpath:/GenericTicketConnectorSOAP.wsdl</wsdlLocation>
<frontEnd>jaxws21</frontEnd>

<faultSerialVersionUID>1</faultSerialVersionUID>
<bindingFiles>

<bindingFile>src/main/resources/customBinding.xml</bindingFile>
</bindingFiles>
</wsdlOption>
</wsdlOptions>
</configuration>
<goals>
<goal>wsdl2java</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<instructions>
<Bundle-RequiredExecutionEnvironment>JavaSE-
1.6</Bundle-RequiredExecutionEnvironment>
<Bundle-SymbolicName>${project.groupId}.$
{project.artifactId}</Bundle-SymbolicName>
<Bundle-Version>${project.version}</Bundle-
Version>
</instructions>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<executions>
<execution>
<id>add-source</id>
<phase>generate-sources</phase>
<goals>
<goal>add-source</goal>
</goals>
<configuration>
<sources>
<source>$
{project.build.directory}/generated-sources/cxf</source>
</sources>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms.features.ticketing</groupId>
<artifactId>org.opennms.features.ticketing.api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-util</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.ticketing</groupId>
<artifactId>opennms-integration-otrs-common</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
<version>${cxfVersion}</version>
<exclusions>
<exclusion>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-core</artifactId>
</exclusion>
<exclusion>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
</exclusion>
<exclusion>
<groupId>org.ow2.asm</groupId>
<artifactId>asm</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
<version>${cxfVersion}</version>
</dependency>
<dependency>
<groupId>org.apache.cxf.xjc-utils</groupId>
<artifactId>cxf-xjc-runtime</artifactId>
<version>${cxfXjcVersion}</version>
<exclusions>
<exclusion>
<groupId>jakarta.xml.bind</groupId>
<artifactId>jakarta.xml.bind-api</artifactId>
</exclusion>
<exclusion>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jaxb-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm-all</artifactId>
</dependency>
<dependency>
<groupId>commons-beanutils</groupId>
<artifactId>commons-beanutils</artifactId>
</dependency>
<dependency>
<groupId>commons-configuration</groupId>
<artifactId>commons-configuration</artifactId>
<exclusions>
<exclusion>
<groupId>commons-beanutils</groupId>
<artifactId>commons-beanutils-core</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.ticketing</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.ticketing</groupId>
<artifactId>opennms-integration-otrs-common</artifactId>
<name>OpenNMS :: Features :: Ticketing :: OTRS :: Common</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.6</Bundle-RequiredExecutionEnvironment>
<Bundle-SymbolicName>${project.groupId}.$
{project.artifactId}</Bundle-SymbolicName>
<Bundle-Version>${project.version}</Bundle-
Version>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-util</artifactId>
</dependency>
<dependency>
<groupId>commons-beanutils</groupId>
<artifactId>commons-beanutils</artifactId>
</dependency>
<dependency>
<groupId>commons-configuration</groupId>
<artifactId>commons-configuration</artifactId>
<exclusions>
<exclusion>
<groupId>commons-beanutils</groupId>
<artifactId>commons-beanutils-core</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>jcl-over-slf4j</artifactId>
</dependency>
</dependencies>
</project>
<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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.ticketing</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>opennms-integration-otrs</artifactId>
<name>OpenNMS :: Features :: Ticketing :: OTRS</name>
<packaging>bundle</packaging>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>axistools-maven-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>wsdl2java</goal>
</goals>
</execution>
</executions>
<configuration>
<urls>
<url>
file:///$
{project.basedir}/src/main/wsdl/TicketService.wsdl
</url>
</urls>
<packageSpace>
org.opennms.integration.otrs.ticketservice
</packageSpace>
<testCases>false</testCases>
<serverSide>false</serverSide>
</configuration>
</plugin>
<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>
</instructions>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<executions>
<execution>
<id>add-source</id>
<phase>generate-sources</phase>
<goals>
<goal>add-source</goal>
</goals>
<configuration>
<sources>
<source>$
{project.build.directory}/generated-sources/axistools/wsdl2java</source>
</sources>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms.features.ticketing</groupId>
<artifactId>org.opennms.features.ticketing.api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.ticketing</groupId>
<artifactId>opennms-integration-otrs-common</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-util</artifactId>
</dependency>
<dependency>
<groupId>axis</groupId>
<artifactId>axis</artifactId>
<exclusions>
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
<exclusion>
<groupId>axis</groupId>
<artifactId>axis-wsdl4j</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>commons-beanutils</groupId>
<artifactId>commons-beanutils</artifactId>
</dependency>
<dependency>
<groupId>commons-configuration</groupId>
<artifactId>commons-configuration</artifactId>
<exclusions>
<exclusion>
<groupId>commons-beanutils</groupId>
<artifactId>commons-beanutils-core</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>wsdl4j</groupId>
<artifactId>wsdl4j</artifactId>
</dependency>
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>jcl-over-slf4j</artifactId>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>org.opennms.features</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.ticketing</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Features :: Ticketing</name>
<modules>
<module>api</module>
<module>daemon</module>
<module>drools-integration</module>
<module>jira-integration</module>
<module>jira-client</module>
<module>otrs-integration-common</module>
<module>otrs-integration</module>
<module>otrs-integration-31</module>
<module>rt-integration</module>
<module>remedy-integration</module>
<module>tsrm-integration</module>
</modules>
</project>
<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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.ticketing</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>opennms-integration-remedy</artifactId>
<name>OpenNMS :: Features :: Ticketing :: Remedy</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>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>axistools-maven-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>wsdl2java</goal>
</goals>
</execution>
</executions>
<configuration>
<packageSpace>
org.opennms.integration.remedy.ticketservice
</packageSpace>
<testCases>false</testCases>
<serverSide>false</serverSide>
<!--subPackageByFileName>true</subPackageByFileName
-->
</configuration>
</plugin>
<!-- Mark all wsdl2java-generated classes with @SuppressWarnings
-->
<plugin>
<groupId>com.google.code.maven-replacer-plugin</groupId>
<artifactId>maven-replacer-plugin</artifactId>
<version>1.4.1</version>
<executions>
<execution>
<phase>process-sources</phase>
<goals>
<goal>replace</goal>
</goals>
</execution>
</executions>
<configuration>
<includes>
<include>target/generated-
sources/axistools/wsdl2java/org/opennms/integration/remedy/ticketservice/*.java</in
clude>
</includes>
<regex>true</regex>
<regexFlags>
<regexFlag>MULTILINE</regexFlag>
</regexFlags>
<replacements>
<replacement>
<token>^public class</token>
<value>@SuppressWarnings("all") public
class</value>
</replacement>
</replacements>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms.features.ticketing</groupId>
<artifactId>org.opennms.features.ticketing.api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-util</artifactId>
</dependency>
<dependency>
<groupId>axis</groupId>
<artifactId>axis</artifactId>
<exclusions>
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
<exclusion>
<groupId>axis</groupId>
<artifactId>axis-wsdl4j</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>commons-beanutils</groupId>
<artifactId>commons-beanutils</artifactId>
</dependency>
<dependency>
<groupId>commons-configuration</groupId>
<artifactId>commons-configuration</artifactId>
<exclusions>
<exclusion>
<groupId>commons-beanutils</groupId>
<artifactId>commons-beanutils-core</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>wsdl4j</groupId>
<artifactId>wsdl4j</artifactId>
</dependency>
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>jcl-over-slf4j</artifactId>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.ticketing</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>opennms-integration-rt</artifactId>
<name>OpenNMS :: Features :: Ticketing :: RT</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>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpcore</artifactId>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.ticketing</groupId>
<artifactId>org.opennms.features.ticketing.api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.request-tracker</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-util</artifactId>
</dependency>
<dependency>
<groupId>commons-beanutils</groupId>
<artifactId>commons-beanutils</artifactId>
</dependency>
<dependency>
<groupId>commons-configuration</groupId>
<artifactId>commons-configuration</artifactId>
<exclusions>
<exclusion>
<groupId>commons-beanutils</groupId>
<artifactId>commons-beanutils-core</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.lib</artifactId>
</dependency>
</dependencies>
</project>
<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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.ticketing</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>opennms-integration-tsrm</artifactId>
<name>OpenNMS :: Features :: Ticketing :: Tivoli Service Request Manager
(TSRM)</name>
<packaging>bundle</packaging>
<build>
<plugins>
<plugin>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-codegen-plugin</artifactId>
<version>${cxfVersion}</version>
<dependencies>
<dependency>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
<version>2.2.11</version>
</dependency>
<dependency>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-xjc</artifactId>
<version>2.2.11</version>
</dependency>
</dependencies>
<executions>
<execution>
<id>generate-sources</id>
<phase>generate-sources</phase>
<configuration>
<wsdlOptions>
<wsdlOption>

<wsdl>src/main/resources/SHSIMPINC.wsdl</wsdl>

<wsdlLocation>classpath:/SHSIMPINC.wsdl</wsdlLocation>
<frontEnd>jaxws21</frontEnd>

<faultSerialVersionUID>1</faultSerialVersionUID>
</wsdlOption>
</wsdlOptions>
</configuration>
<goals>
<goal>wsdl2java</goal>
</goals>
</execution>
</executions>
</plugin>
<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>
</instructions>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<executions>
<execution>
<id>add-source</id>
<phase>generate-sources</phase>
<goals>
<goal>add-source</goal>
</goals>
<configuration>
<sources>
<source>$
{project.build.directory}/generated-sources/cxf</source>
</sources>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.lib</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.ticketing</groupId>
<artifactId>org.opennms.features.ticketing.api</artifactId>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
<version>${cxfVersion}</version>
<exclusions>
<exclusion>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-core</artifactId>
</exclusion>
<exclusion>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
</exclusion>
<exclusion>
<groupId>org.ow2.asm</groupId>
<artifactId>asm</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
<version>${cxfVersion}</version>
</dependency>
<dependency>
<groupId>org.apache.cxf.xjc-utils</groupId>
<artifactId>cxf-xjc-runtime</artifactId>
<version>${cxfXjcVersion}</version>
<exclusions>
<exclusion>
<groupId>jakarta.xml.bind</groupId>
<artifactId>jakarta.xml.bind-api</artifactId>
</exclusion>
<exclusion>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jaxb-dependencies</artifactId>
<type>pom</type>
</dependency>
<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.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.services</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?xml version="1.0"?>
<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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.timeformat</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.timeformat</groupId>
<artifactId>org.opennms.features.timeformat.api</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Features :: Timeformat :: API</name>
<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>

</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.timeformat</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.timeformat</groupId>
<artifactId>org.opennms.features.timeformat.impl</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Features :: Timeformat :: Impl</name>
<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.features.timeformat</groupId>
<artifactId>org.opennms.features.timeformat.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.lib</artifactId>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>org.opennms.features</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.timeformat</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Features :: Timeformat (Parent)</name>
<modules>
<module>api</module>
<module>impl</module>
</modules>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>org.opennms.features</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.timeseries-evaluate</artifactId>
<name>OpenNMS :: Features :: Timeseries Evaluate</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>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<!-- APIs we implement -->
<dependency>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-api</artifactId>
</dependency>
<!-- Dependencies used -->
<dependency>
<groupId>io.dropwizard.metrics</groupId>
<artifactId>metrics-core</artifactId>
<version>${dropwizardMetricsVersion}</version>
</dependency>

<!-- Test dependencies -->


<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.lib</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.collection</artifactId>
<scope>test</scope>
</dependency>
</dependencies>

</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>org.opennms.features</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.timeseries</artifactId>
<name>OpenNMS :: Features :: Timeseries</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>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<!-- APIs we implement -->
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.measurements</groupId>
<artifactId>org.opennms.features.measurements.api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.persistence.osgi</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.sysprops</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.cache</artifactId>
<version>${project.version}</version>
</dependency>

<!-- Dependencies used -->


<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>newts-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.integration.api</groupId>
<artifactId>api</artifactId>
<version>${opennmsApiVersion}</version>
</dependency>
<dependency>
<groupId>org.opennms.integration.api</groupId>
<artifactId>common</artifactId>
<version>${opennmsApiVersion}</version>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.rpc</groupId>
<artifactId>org.opennms.core.ipc.rpc.utils</artifactId>
</dependency>
<dependency>
<groupId>com.lmax</groupId>
<artifactId>disruptor</artifactId>
<version>${lmaxDisruptorVersion}</version>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.swrve</groupId>
<artifactId>rate-limited-logger</artifactId>
</dependency>

<!-- Testing -->


<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.lib</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-test-dependencies</artifactId>
<type>pom</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.db</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-mock</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<repositories>
<repository>
<id>sonatype.org-snapshot</id>
<name>Sonatype OSS Snapshots Repository</name>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
<releases><enabled>false</enabled></releases>
<snapshots><enabled>true</enabled></snapshots>
</repository>
</repositories>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>org.opennms.features</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.topologies</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Features :: Topologies</name>
<modules>
<module>service</module>
</modules>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features.topologies</groupId>
<artifactId>org.opennms.features.topologies.service</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>org.opennms.features.topologies.service.api</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Features :: Topologies :: Service :: API</name>
<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>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>test-jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-model</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</dependency>
<dependency>
<groupId>net.sf.jung</groupId>
<artifactId>jung-api</artifactId>
</dependency>
<!-- Test Dependencies -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features.topologies</groupId>
<artifactId>org.opennms.features.topologies.service</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>org.opennms.features.topologies.service.impl</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Features :: Topologies :: Service :: Impl</name>
<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.features.topologies</groupId>
<artifactId>org.opennms.features.topologies.service.api</artifactId>
<version>${project.version}</version>
</dependency>
<!-- Test Dependencies -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.topologies</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.topologies</groupId>
<artifactId>org.opennms.features.topologies.service</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Features :: Topologies :: Service</name>
<modules>
<module>api</module>
<module>impl</module>
</modules>
</project>
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/maven-v4_0_0.xsd">

<parent>
<relativePath>../poms/compiled/</relativePath>
<groupId>org.opennms.features.topology.build</groupId>
<artifactId>compiled-bundle-settings</artifactId>
<version>27.0.5</version>
</parent>

<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.topology</groupId>
<artifactId>features</artifactId>

<name>OpenNMS :: Features :: Topology :: Features</name>

<packaging>pom</packaging>

<modules>
<module>runtime-base</module>
<module>runtime-graphml</module>
</modules>

</project>
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/maven-v4_0_0.xsd">

<parent>
<groupId>org.opennms.features.topology</groupId>
<artifactId>features</artifactId>
<version>27.0.5</version>
</parent>

<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.osgi.features.topology</groupId>
<artifactId>opennms-topology-runtime-base</artifactId>
<name>OpenNMS :: Features :: Topology :: Features :: Base</name>

<description>Base runtime and plugins for the OpenNMS topology web


app.</description>

<packaging>pom</packaging>

<dependencies>
<!-- main topology app -->
<dependency>
<groupId>org.opennms.features.topology</groupId>
<artifactId>org.opennms.features.topology.app</artifactId>
<version>${project.version}</version>
</dependency>
<!-- topology HistoryManager -->
<dependency>
<groupId>org.opennms.features.topology.plugins.topo</groupId>
<artifactId>org.opennms.features.topology.plugins.topo.history</artifactId>
<version>${project.version}</version>
</dependency>
<!-- is required to build topology links -->
<dependency>
<groupId>org.opennms.features.topology</groupId>
<artifactId>org.opennms.features.topology.link</artifactId>
<version>${project.version}</version>
</dependency>
<!-- plugins -->
<dependency>
<groupId>org.opennms.features.topology.plugins</groupId>
<artifactId>org.opennms.features.topology.plugins.layout</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.topology</groupId>
<artifactId>org.opennms.features.topology.netutils</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.topology.themes</groupId>
<artifactId>org.opennms.features.topology.themes.default-theme</artifactId>
<version>${project.version}</version>
</dependency>

<dependency>
<groupId>org.opennms.features.vaadin-components</groupId>
<artifactId>core</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.vaadin-components</groupId>
<artifactId>graph</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>

</project>
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features.topology</groupId>
<artifactId>features</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.osgi.features.topology</groupId>
<artifactId>opennms-topology-runtime-graphml</artifactId>
<name>OpenNMS :: Features :: Topology :: Features :: GraphML</name>
<description>GraphML runtime and plugins for the OpenNMS topology web
app.</description>
<packaging>pom</packaging>
<dependencies>
<dependency>
<groupId>org.opennms.features.topology.plugins.topo</groupId>
<artifactId>graphml</artifactId>
<version>${project.version}</version>
</dependency>
<!-- At the moment this is provided by the system bundle -->
<!--<dependency>-->
<!--<groupId>org.opennms.features</groupId>-->
<!--<artifactId>org.opennms.features.graphml</artifactId>-->
<!--<version>${project.version}</version>-->
<!--</dependency>-->
<dependency>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy-all</artifactId>
<version>${groovyVersion}</version>
</dependency>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.osgi-jsr223</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</project>
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/maven-v4_0_0.xsd">

<parent>
<relativePath>../poms/compiled/</relativePath>
<groupId>org.opennms.features.topology.build</groupId>
<artifactId>compiled-bundle-settings</artifactId>
<version>27.0.5</version>
</parent>

<properties>
<bundle.symbolicName>org.opennms.features.topology.api</bundle.symbolicName>
<bundle.namespace>org.opennms.features.topology.api</bundle.namespace>
</properties>

<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.topology</groupId>
<artifactId>org.opennms.features.topology.api</artifactId>
<name>${bundle.symbolicName}</name>

<packaging>bundle</packaging>

<dependencies>
<!--
| uncomment to add all imported (non-local) bundles to your compilation
classpath
<dependency>
<type>pom</type>
<groupId>${parent.groupId}</groupId>
<artifactId>provision</artifactId>
<optional>true</optional>
</dependency>
-->
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-dependencies</artifactId>
<scope>provided</scope>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jaxb-dependencies</artifactId>
<type>pom</type>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>vaadin</artifactId>
<type>pom</type>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.criteria</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.measurements</groupId>
<artifactId>org.opennms.features.measurements.api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.compendium</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.lib</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.xml</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>

</dependencies>

</project>
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/maven-v4_0_0.xsd">

<parent>
<relativePath>../poms/compiled/</relativePath>
<groupId>org.opennms.features.topology.build</groupId>
<artifactId>compiled-bundle-settings</artifactId>
<version>27.0.5</version>
</parent>

<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.topology</groupId>
<artifactId>org.opennms.features.topology.app</artifactId>

<name>${bundle.symbolicName}</name>

<packaging>bundle</packaging>

<properties>

<bundle.symbolicName>org.opennms.features.topology.app</bundle.symbolicName>
<bundle.namespace>org.opennms.features.topology.app</bundle.namespace>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

<build>
<resources>
<resource>
<directory>src/main/java</directory>
</resource>
<resource>
<directory>src/main/resources</directory>
</resource>
</resources>
<plugins>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<skip>${skipSurefire}</skip>
<excludes>
<exclude>**/*GwtTest.java</exclude>
</excludes>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<configuration>
<instructions>
<Vaadin-Package-Version>1</Vaadin-Package-Version>
<Vaadin-
Widgetsets>org.opennms.features.topology.app.internal.gwt.TopologyAppWidgetSet</Vaa
din-Widgetsets>
<Include-Resource>{maven-resources},target/gwt</Include-
Resource>
</instructions>
</configuration>
</plugin>
<plugin>
<groupId>com.vaadin</groupId>
<artifactId>vaadin-maven-plugin</artifactId>
<version>${vaadin.plugin.version}</version>
<configuration>
<extraJvmArgs>-XX:MaxMetaspaceSize=256m -Xmx$
{vaadinJavaMaxMemory} -Xss1024k</extraJvmArgs>
<webappDirectory>$
{basedir}/target/gwt/VAADIN/widgetsets</webappDirectory>
<hostedWebapp>$
{basedir}/target/gwt/VAADIN/widgetsets</hostedWebapp>
<noServer>true</noServer>
<draftCompile>false</draftCompile>
<compileReport>false</compileReport>
<style>OBF</style>
<strict>true</strict>
<runTarget>http://localhost:8980/opennms/topology</runTarget>
<gwtSdkFirstInClasspath>true</gwtSdkFirstInClasspath>
<localWorkers>${vaadinLocalWorkers}</localWorkers>
</configuration>
<executions>
<execution>
<id>goals</id>
<configuration>
<!-- if you don't specify any modules, the plugin will
find them -->
<!-- <modules>
<module>com.vaadin.demo.mobilemail.gwt.ColorPickerWidgetSet</module>
</modules> -->
</configuration>
<goals>
<goal>resources</goal>
<goal>update-widgetset</goal>
<goal>compile</goal>
</goals>
</execution>
</executions>
<dependencies>
<dependency>
<groupId>com.google.gwt</groupId>
<artifactId>gwt-dev</artifactId>
<version>${gwtVersion}</version>
</dependency>
<dependency>
<groupId>com.google.gwt</groupId>
<artifactId>gwt-user</artifactId>
<version>${gwtVersion}</version>
</dependency>
</dependencies>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>vaadin</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.features.vaadin-components</groupId>
<artifactId>core</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.vaadin-components</groupId>
<artifactId>graph</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.vaadin-components</groupId>
<artifactId>header</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.topology</groupId>
<artifactId>org.opennms.features.topology.link</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.topology</groupId>
<artifactId>org.opennms.features.topology.api</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.topology</groupId>
<artifactId>org.opennms.features.topology.persistence.api</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>net.sf.jung</groupId>
<artifactId>jung-api</artifactId>
</dependency>
<dependency>
<groupId>net.sf.jung</groupId>
<artifactId>jung-graph-impl</artifactId>
</dependency>
<dependency>
<groupId>net.sf.jung</groupId>
<artifactId>jung-algorithms</artifactId>
</dependency>
<dependency>
<groupId>net.sf.jung</groupId>
<artifactId>jung-visualization</artifactId>
</dependency>
<dependency>
<groupId>javax.validation</groupId>
<artifactId>validation-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>javax.validation</groupId>
<artifactId>validation-api</artifactId>
<classifier>sources</classifier>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.geolocation</groupId>
<artifactId>org.opennms.features.geolocation.api</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
<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.easymock</groupId>
<artifactId>easymock</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.lib</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-slf4j-impl</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.compendium</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-web-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.hubspot.jinjava</groupId>
<artifactId>jinjava</artifactId>
<version>2.1.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.sysprops</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
<repositories>
<repository>
<snapshots><enabled>false</enabled></snapshots>
<releases><enabled>true</enabled></releases>
<id>opennms-repo</id>
<name>OpenNMS Maven Repository</name>
<url>http://maven.opennms.org/content/groups/opennms.org-release</url>
</repository>
</repositories>
</project>
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/maven-v4_0_0.xsd">
<parent>
<relativePath>../poms/compiled/</relativePath>
<groupId>org.opennms.features.topology.build</groupId>
<artifactId>compiled-bundle-settings</artifactId>
<version>27.0.5</version>
</parent>
<properties>
<bundle.symbolicName>org.opennms.features.topology.link</bundle.symbolicName>
<bundle.namespace>org.opennms.features.topology.link</bundle.namespace>
</properties>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.topology</groupId>
<artifactId>org.opennms.features.topology.link</artifactId>
<name>${bundle.symbolicName}</name>
<packaging>bundle</packaging>
<dependencies>
<!--
| uncomment to add all imported (non-local) bundles to your compilation
classpath
<dependency>
<type>pom</type>
<groupId>${parent.groupId}</groupId>
<artifactId>provision</artifactId>
<optional>true</optional>
</dependency>
-->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<relativePath>../../poms/compiled/</relativePath>
<groupId>org.opennms.features.topology.build</groupId>
<artifactId>compiled-bundle-settings</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.topology</groupId>
<artifactId>org.opennms.features.topology.persistence.api</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Features :: Topology :: Persistence :: API</name>
<properties>
<bundle.symbolicName>${project.artifactId}</bundle.symbolicName>

<bundle.namespace>org.opennms.netmgt.topology.persistence.api</bundle.namespace>
</properties>
<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</groupId>
<artifactId>opennms-dao-api</artifactId>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<relativePath>../../poms/compiled/</relativePath>
<groupId>org.opennms.features.topology.build</groupId>
<artifactId>compiled-bundle-settings</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.topology</groupId>
<artifactId>org.opennms.features.topology.persistence.impl</artifactId>
<packaging>jar</packaging>
<name>OpenNMS :: Features :: Topology :: Persistence :: Impl</name>
<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.features.topology</groupId>
<artifactId>org.opennms.features.topology.persistence.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>hibernate-dependencies</artifactId>
<type>pom</type>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-dependencies</artifactId>
<type>pom</type>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.soa</artifactId>
<scope>provided</scope>
</dependency>

<!-- Test dependencies -->


<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-config</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrd-jrobin</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.persistence.rrd</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.services</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.db</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-mock</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.topology</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.topology</groupId>
<artifactId>org.opennms.features.topology.persistence</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Features :: Topology :: Persistence</name>
<modules>
<module>org.opennms.features.topology.persistence.api</module>
<module>org.opennms.features.topology.persistence.impl</module>
</modules>
</project>
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/maven-v4_0_0.xsd">

<parent>
<relativePath>../poms/compiled/</relativePath>
<groupId>org.opennms.features.topology.build</groupId>
<artifactId>compiled-bundle-settings</artifactId>
<version>27.0.5</version>
</parent>
<properties>
<bundle.symbolicName>org.opennms.features.topology.shell</bundle.symbolicName>
<bundle.namespace>org.opennms.features.topology.shell</bundle.namespace>
</properties>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.topology</groupId>
<artifactId>org.opennms.features.topology.shell</artifactId>
<name>OpenNMS :: Features :: Topology :: Shell Commands</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>
<Karaf-Commands>*</Karaf-Commands>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<!--
| uncomment to add all imported (non-local) bundles to your compilation
classpath
<dependency>
<type>pom</type>
<groupId>${parent.groupId}</groupId>
<artifactId>provision</artifactId>
<optional>true</optional>
</dependency>
-->
<dependency>
<groupId>org.opennms.features.topology</groupId>
<artifactId>org.opennms.features.topology.api</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.karaf.shell</groupId>
<artifactId>org.apache.karaf.shell.core</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.aries.blueprint</groupId>
<artifactId>org.apache.aries.blueprint.core</artifactId>
<version>1.4.4</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.enterprise</artifactId>
<scope>provided</scope>
</dependency>
</dependencies>

</project>
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/maven-v4_0_0.xsd">
<parent>
<relativePath>../../poms/compiled/</relativePath>
<groupId>org.opennms.features.topology.build</groupId>
<artifactId>compiled-bundle-settings</artifactId>
<version>27.0.5</version>
</parent>
<properties>

<bundle.symbolicName>org.opennms.features.topology.plugins.browsers</bundle.symboli
cName>
<bundle.namespace>org.opennms.features.topology.plugins.browsers</bundle.namespace>
</properties>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.topology.plugins</groupId>
<artifactId>org.opennms.features.topology.plugins.browsers</artifactId>
<name>OpenNMS :: Features :: Topology :: Plugins :: Browsers</name>
<packaging>bundle</packaging>
<dependencies>
<!--
| uncomment to add all imported (non-local) bundles to your compilation
classpath
<dependency>
<type>pom</type>
<groupId>${parent.groupId}</groupId>
<artifactId>provision</artifactId>
<optional>true</optional>
</dependency>
-->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.compendium</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-web-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.lib</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.timeformat</groupId>
<artifactId>org.opennms.features.timeformat.api</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.vaadin-components</groupId>
<artifactId>core</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.topology</groupId>
<artifactId>org.opennms.features.topology.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>vaadin</artifactId>
<type>pom</type>
</dependency>
<!-- Test Dependencies -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-config</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrd-jrobin</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.collection</groupId>

<artifactId>org.opennms.features.collection.persistence.rrd</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.services</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.db</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-mock</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/maven-v4_0_0.xsd">

<parent>
<relativePath>../../poms/compiled/</relativePath>
<groupId>org.opennms.features.topology.build</groupId>
<artifactId>compiled-bundle-settings</artifactId>
<version>27.0.5</version>
</parent>

<properties>

<bundle.symbolicName>org.opennms.features.topology.plugins.layout</bundle.symbolicN
ame>

<bundle.namespace>org.opennms.features.topology.plugins.layout</bundle.namespace>
</properties>

<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.topology.plugins</groupId>
<artifactId>org.opennms.features.topology.plugins.layout</artifactId>

<name>OpenNMS :: Features :: Topology :: Plugins :: Layout</name>

<packaging>bundle</packaging>

<dependencies>
<!--
| uncomment to add all imported (non-local) bundles to your compilation
classpath
<dependency>
<type>pom</type>
<groupId>${parent.groupId}</groupId>
<artifactId>provision</artifactId>
<optional>true</optional>
</dependency>
-->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.compendium</artifactId>
<scope>provided</scope>
</dependency>
</dependencies>

</project>
<?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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>

<parent>
<relativePath>../../poms/compiled/</relativePath>
<groupId>org.opennms.features.topology.build</groupId>
<artifactId>compiled-bundle-settings</artifactId>
<version>27.0.5</version>
</parent>

<groupId>org.opennms.features.topology</groupId>
<artifactId>org.opennms.features.topology.netutils</artifactId>
<packaging>${packaging.type}</packaging>
<name>OpenNMS :: Features :: Topology :: Plugins :: Net Utils</name>

<properties>
<packaging.type>bundle</packaging.type>

<bundle.symbolicName>org.opennms.features.topology.netutils</bundle.symbolicName>

<bundle.namespace>org.opennms.features.topology.netutils</bundle.namespace>
</properties>
<dependencies>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>vaadin</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.features.topology</groupId>
<artifactId>org.opennms.features.topology.api</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>javax.validation</groupId>
<artifactId>validation-api</artifactId>
<classifier>sources</classifier>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-icmp-api</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.easymock</groupId>
<artifactId>easymock</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-icmp-jni</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-icmp-jna</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-icmp-jni6</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-icmp-best</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/maven-v4_0_0.xsd">

<parent>
<relativePath>../../poms/compiled/</relativePath>
<groupId>org.opennms.features.topology.build</groupId>
<artifactId>compiled-bundle-settings</artifactId>
<version>27.0.5</version>
</parent>
<properties>

<bundle.symbolicName>org.opennms.features.topology.plugins.topo.application</bundle
.symbolicName>

<bundle.namespace>org.opennms.features.topology.plugins.topo.application</bundle.na
mespace>
</properties>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.topology.plugins.topo</groupId>
<artifactId>org.opennms.features.topology.plugins.topo.application</artifactId>
<name>OpenNMS :: Features :: Topology :: Plugins :: Application</name>
<packaging>bundle</packaging>

<dependencies>
<dependency>
<groupId>org.opennms.features.topology</groupId>
<artifactId>org.opennms.features.topology.api</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.vaadin-components</groupId>
<artifactId>core</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.topology.plugins</groupId>
<artifactId>org.opennms.features.topology.plugins.browsers</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.graph</groupId>
<artifactId>org.opennms.features.graph.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.graph.provider</groupId>
<artifactId>org.opennms.features.graph.provider.application</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>vaadin</artifactId>
<type>pom</type>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.compendium</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
<scope>provided</scope>
</dependency>
<!-- Test dependencies -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.easymock</groupId>
<artifactId>easymock</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.lib</artifactId>
<scope>test</scope>
</dependency>

</dependencies>
</project>
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/maven-v4_0_0.xsd">
<parent>
<relativePath>../../poms/compiled/</relativePath>
<groupId>org.opennms.features.topology.build</groupId>
<artifactId>compiled-bundle-settings</artifactId>
<version>27.0.5</version>
</parent>
<properties>

<bundle.symbolicName>org.opennms.features.topology.plugins.topo.asset</bundle.symbo
licName>

<bundle.namespace>org.opennms.features.topology.plugins.topo.asset</bundle.namespac
e>
</properties>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.topology.plugins.topo</groupId>
<artifactId>asset</artifactId>
<name>OpenNMS :: Features :: Topology :: Plugins :: Asset</name>
<packaging>bundle</packaging>
<build>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<configuration>
<instructions>
<Bundle-SymbolicName>${bundle.symbolicName}</Bundle-SymbolicName>
<Bundle-Version>${project.version}</Bundle-Version>
<Karaf-Commands>*</Karaf-Commands>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<!-- | uncomment to add all imported (non-local) bundles to your compilation
classpath <dependency> <type>pom</type> <groupId>${parent.groupId}</groupId>
<artifactId>provision</artifactId>
<optional>true</optional> </dependency> -->
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jaxb-dependencies</artifactId>
<type>pom</type>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.topology</groupId>
<artifactId>org.opennms.features.topology.api</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.criteria</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.graphml</groupId>
<artifactId>org.opennms.features.graphml.api</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.topology.plugins.topo</groupId>
<artifactId>graphml</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.compendium</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.karaf.shell</groupId>
<artifactId>org.apache.karaf.shell.console</artifactId>
<version>${karafVersion}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.karaf.shell</groupId>
<artifactId>org.apache.karaf.shell.core</artifactId>
<scope>provided</scope>
</dependency>

<!-- Test Dependencies -->


<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-slf4j-impl</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.lib</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.db</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.services</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.persistence.rrd</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrd-jrobin</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/maven-v4_0_0.xsd">

<parent>
<relativePath>../../poms/compiled/</relativePath>
<groupId>org.opennms.features.topology.build</groupId>
<artifactId>compiled-bundle-settings</artifactId>
<version>27.0.5</version>
</parent>
<properties>

<bundle.symbolicName>org.opennms.features.topology.plugins.topo.bsm</bundle.symboli
cName>

<bundle.namespace>org.opennms.features.topology.plugins.topo.bsm</bundle.namespace>
</properties>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.topology.plugins.topo</groupId>
<artifactId>org.opennms.features.topology.plugins.topo.bsm</artifactId>
<name>OpenNMS :: Features :: Topology :: Plugins :: BSM</name>
<packaging>bundle</packaging>
<dependencies>
<dependency>
<groupId>org.opennms.features.topology</groupId>
<artifactId>org.opennms.features.topology.api</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.topology.plugins</groupId>
<artifactId>org.opennms.features.topology.plugins.browsers</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.bsm</groupId>
<artifactId>org.opennms.features.bsm.service.api</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.vaadin-components</groupId>
<artifactId>core</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>vaadin</artifactId>
<type>pom</type>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.compendium</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-dependencies</artifactId>
<scope>provided</scope>
<type>pom</type>
</dependency>
<!-- Test dependencies -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.easymock</groupId>
<artifactId>easymock</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.lib</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.services</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-validator</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.db</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-config</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrd-jrobin</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.persistence.rrd</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-mock</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.bsm</groupId>
<artifactId>org.opennms.features.bsm.persistence.impl</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.bsm</groupId>
<artifactId>org.opennms.features.bsm.service.impl</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.bsm</groupId>
<artifactId>test-util</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/maven-v4_0_0.xsd">
<parent>
<relativePath>../../poms/compiled/</relativePath>
<groupId>org.opennms.features.topology.build</groupId>
<artifactId>compiled-bundle-settings</artifactId>
<version>27.0.5</version>
</parent>
<properties>

<bundle.symbolicName>org.opennms.features.topology.plugins.topo.graphml</bundle.sym
bolicName>

<bundle.namespace>org.opennms.features.topology.plugins.topo.graphml</bundle.namesp
ace>
</properties>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.topology.plugins.topo</groupId>
<artifactId>graphml</artifactId>
<name>OpenNMS :: Features :: Topology :: Plugins :: GraphML</name>
<packaging>bundle</packaging>
<build>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<configuration>
<instructions>
<Bundle-SymbolicName>${bundle.symbolicName}</Bundle-SymbolicName>
<Bundle-Version>${project.version}</Bundle-Version>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<!--
| uncomment to add all imported (non-local) bundles to your compilation
classpath
<dependency>
<type>pom</type>
<groupId>${parent.groupId}</groupId>
<artifactId>provision</artifactId>
<optional>true</optional>
</dependency>
-->
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jaxb-dependencies</artifactId>
<type>pom</type>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.topology</groupId>
<artifactId>org.opennms.features.topology.api</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>vaadin</artifactId>
<type>pom</type>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.criteria</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.graphml</groupId>
<artifactId>org.opennms.features.graphml.api</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.measurements</groupId>
<artifactId>org.opennms.features.measurements.api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.measurements</groupId>
<artifactId>org.opennms.features.measurements.impl</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.compendium</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.osgi-jsr223</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>

<!-- Test Dependencies -->


<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-config</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.topology</groupId>
<artifactId>org.opennms.features.topology.app</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrd-jrobin</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.persistence.rrd</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.services</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.db</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-mock</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.easymock</groupId>
<artifactId>easymock</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy-all</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-validator</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-library</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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">

<modelVersion>4.0.0</modelVersion>

<parent>
<artifactId>org.opennms.features.topology.plugins</artifactId>
<groupId>org.opennms.features.topology</groupId>
<version>27.0.5</version>
</parent>

<groupId>org.opennms.features.topology.plugins.topo</groupId>
<artifactId>org.opennms.features.topology.plugins.topo.history</artifactId>
<packaging>bundle</packaging>

<name>OpenNMS :: Features :: Topology :: Plugins :: History</name>

<properties>

<bundle.symbolicName>org.opennms.features.topology.plugins.topo.history</bundle.sym
bolicName>

<bundle.namespace>org.opennms.features.topology.plugins.topo.history</bundle.namesp
ace>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.topology</groupId>
<artifactId>org.opennms.features.topology.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>vaadin</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.easymock</groupId>
<artifactId>easymock</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.topology</groupId>
<artifactId>org.opennms.features.topology.app</artifactId>
<version>${project.version}</version>
<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>
</dependencies>

<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>

</project>
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/maven-v4_0_0.xsd">

<parent>
<relativePath>../../poms/compiled/</relativePath>
<groupId>org.opennms.features.topology.build</groupId>
<artifactId>compiled-bundle-settings</artifactId>
<version>27.0.5</version>
</parent>

<properties>

<bundle.symbolicName>org.opennms.features.topology.plugins.topo.linkd</bundle.symbo
licName>

<bundle.namespace>org.opennms.features.topology.plugins.topo.linkd</bundle.namespac
e>
</properties>

<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.topology.plugins.topo</groupId>
<artifactId>org.opennms.features.topology.plugins.topo.linkd</artifactId>

<name>OpenNMS :: Features :: Topology :: Plugins :: Linkd</name>

<packaging>bundle</packaging>

<dependencies>
<!--
| uncomment to add all imported (non-local) bundles to your compilation
classpath
<dependency>
<type>pom</type>
<groupId>${parent.groupId}</groupId>
<artifactId>provision</artifactId>
<optional>true</optional>
</dependency>
-->
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.topologies</groupId>
<artifactId>org.opennms.features.topologies.service.api</artifactId>
<version>${project.version}</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.enlinkd</groupId>
<artifactId>org.opennms.features.enlinkd.service.api</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>xalan</groupId>
<artifactId>xalan</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.events</groupId>
<artifactId>org.opennms.features.events.api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.topology</groupId>
<artifactId>org.opennms.features.topology.api</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>vaadin</artifactId>
<type>pom</type>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>io.dropwizard.metrics</groupId>
<artifactId>metrics-core</artifactId>
<version>${dropwizardMetricsVersion}</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-test-dependencies</artifactId>
<type>pom</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.easymock</groupId>
<artifactId>easymock</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.lib</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.db</artifactId>
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-slf4j-impl</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.compendium</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.topologies</groupId>
<artifactId>org.opennms.features.topologies.service.impl</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.enlinkd</groupId>
<artifactId>org.opennms.features.enlinkd.persistence.impl</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.enlinkd</groupId>
<artifactId>org.opennms.features.enlinkd.service.impl</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.enlinkd</groupId>
<artifactId>org.opennms.features.enlinkd.adapters.common</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.enlinkd</groupId>
<artifactId>org.opennms.features.enlinkd.adapters.updaters.nodes</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.enlinkd</groupId>
<artifactId>org.opennms.features.enlinkd.adapters.updaters.lldp</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.enlinkd</groupId>
<artifactId>org.opennms.features.enlinkd.adapters.updaters.cdp</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.enlinkd</groupId>
<artifactId>org.opennms.features.enlinkd.adapters.updaters.isis</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.enlinkd</groupId>
<artifactId>org.opennms.features.enlinkd.adapters.updaters.ospf</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.enlinkd</groupId>

<artifactId>org.opennms.features.enlinkd.adapters.updaters.bridge</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.enlinkd</groupId>
<artifactId>org.opennms.features.enlinkd.generator</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
</dependencies>

<repositories>
<repository>
<snapshots><enabled>false</enabled></snapshots>
<releases><enabled>true</enabled></releases>
<id>opennms-repo</id>
<name>OpenNMS Maven Repository</name>
<url>http://maven.opennms.org/content/groups/opennms.org-release</url>
</repository>
</repositories>

</project>
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/maven-v4_0_0.xsd">

<parent>
<relativePath>../../poms/compiled/</relativePath>
<groupId>org.opennms.features.topology.build</groupId>
<artifactId>compiled-bundle-settings</artifactId>
<version>27.0.5
</version>
</parent>
<properties>

<bundle.symbolicName>org.opennms.features.topology.plugins.topo.pathoutage</bundle.
symbolicName>

<bundle.namespace>org.opennms.features.topology.plugins.topo.pathoutage</bundle.nam
espace>
</properties>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.topology.plugins.topo</groupId>
<artifactId>org.opennms.features.topology.plugins.topo.pathoutage</artifactId>
<name>OpenNMS :: Features :: Topology :: Plugins :: PathOutage</name>
<packaging>bundle</packaging>
<dependencies>

<!-- Embedded in jar (not provided) -->


<dependency>
<groupId>net.sf.jung</groupId>
<artifactId>jung-api</artifactId>
</dependency>
<dependency>
<groupId>net.sf.jung</groupId>
<artifactId>jung-graph-impl</artifactId>
</dependency>

<!-- Provided by runtime environment -->


<dependency>
<groupId>org.opennms.features.topology</groupId>
<artifactId>org.opennms.features.topology.api</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>vaadin</artifactId>
<type>pom</type>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-api</artifactId>
<scope>provided</scope>
</dependency>

<!-- Test dependencies -->


<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-config</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.lib</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.db</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.services</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrd-jrobin</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.persistence.rrd</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-mock</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-validator</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/maven-v4_0_0.xsd">
<parent>
<relativePath>../../poms/compiled/</relativePath>
<groupId>org.opennms.features.topology.build</groupId>
<artifactId>compiled-bundle-settings</artifactId>
<version>27.0.5</version>
</parent>
<properties>

<bundle.symbolicName>org.opennms.features.topology.plugins.topo.vmware</bundle.symb
olicName>

<bundle.namespace>org.opennms.features.topology.plugins.topo.vmware</bundle.namespa
ce>
</properties>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.topology.plugins.topo</groupId>
<artifactId>org.opennms.features.topology.plugins.topo.vmware</artifactId>
<name>OpenNMS :: Features :: Topology :: Plugins :: VMware</name>
<packaging>bundle</packaging>
<dependencies>
<!--
| uncomment to add all imported (non-local) bundles to your compilation
classpath
<dependency>
<type>pom</type>
<groupId>${parent.groupId}</groupId>
<artifactId>provision</artifactId>
<optional>true</optional>
</dependency>
-->
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.topology</groupId>
<artifactId>org.opennms.features.topology.api</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>vaadin</artifactId>
<type>pom</type>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.easymock</groupId>
<artifactId>easymock</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">

<parent>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.topology</artifactId>
<version>27.0.5</version>
</parent>

<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.topology</groupId>
<artifactId>org.opennms.features.topology.plugins</artifactId>

<name>OpenNMS :: Features :: Topology :: Plugins</name>

<packaging>pom</packaging>

<modules>
<module>org.opennms.features.topology.plugins.browsers</module>
<module>org.opennms.features.topology.plugins.layout</module>
<module>org.opennms.features.topology.plugins.netutils</module>
<module>org.opennms.features.topology.plugins.topo.application</module>
<module>org.opennms.features.topology.plugins.topo.asset</module>
<module>org.opennms.features.topology.plugins.topo.bsm</module>
<module>org.opennms.features.topology.plugins.topo.pathoutage</module>
<module>org.opennms.features.topology.plugins.topo.graphml</module>
<module>org.opennms.features.topology.plugins.topo.history</module>
<module>org.opennms.features.topology.plugins.topo.linkd</module>
<module>org.opennms.features.topology.plugins.topo.vmware</module>
</modules>

<repositories>
<repository>
<snapshots><enabled>false</enabled></snapshots>
<releases><enabled>true</enabled></releases>
<id>opennms-repo</id>
<name>OpenNMS Maven Repository</name>
<url>http://maven.opennms.org/content/groups/opennms.org-release</url>
</repository>
</repositories>

</project>
<?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/maven-v4_0_0.xsd">

<parent>
<groupId>org.opennms</groupId>
<artifactId>org.opennms.features</artifactId>
<version>27.0.5</version>
</parent>

<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.topology</artifactId>

<name>OpenNMS :: Features :: Topology (OSGi project)</name>

<!--
| describe your project here
-->

<description>Generated using Pax-Construct</description>

<properties>
<!--
| some example OSGi runtime properties
-->
<org.osgi.service.http.port>8080</org.osgi.service.http.port>
<org.osgi.service.http.port.secure>8443</org.osgi.service.http.port.secure>
</properties>

<packaging>pom</packaging>

<modules>
<module>features</module>
<module>poms</module>
<module>provision</module>
<module>org.opennms.features.topology.api</module>
<module>org.opennms.features.topology.app</module>
<module>org.opennms.features.topology.link</module>
<module>org.opennms.features.topology.persistence</module>
<module>org.opennms.features.topology.shell</module>
<module>plugins</module>
<module>themes</module>
</modules>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.ops4j</groupId>
<artifactId>maven-pax-plugin</artifactId>
<inherited>false</inherited>
<configuration>
<!--
| some example Pax-Runner settings
-->
<provision>
<param>--platform=equinox</param>
<param>scan-
bundle:mvn:org.apache.karaf.jaas/org.apache.karaf.jaas.boot/${karafVersion}</param>
<param>scan-features:mvn:org.apache.karaf.features/standard/$
{karafVersion}/xml/features!/http-whiteboard</param>
<param>--noConsole</param>
</provision>
</configuration>
<executions>
<!--
| uncomment to auto-generate IDE files
<execution>
<id>ide-support</id>
<goals>
<goal>eclipse</goal>
</goals>
</execution>
-->
</executions>
</plugin>
</plugins>
</build>

</project>
<?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/maven-v4_0_0.xsd">

<parent>
<groupId>org.opennms.features.topology.build</groupId>
<artifactId>shared-plugin-settings</artifactId>
<version>27.0.5</version>
</parent>

<modelVersion>4.0.0</modelVersion>
<artifactId>compiled-bundle-settings</artifactId>

<name>OpenNMS :: Features :: Topology POMs compiled - bundle instructions</name>

<packaging>pom</packaging>

<build>
<resources>
<resource>
<directory>src/main/resources</directory>
</resource>
<!--
| example additional resource entries, useful when building Eclipse RCP
applications
<resource>
<directory>.</directory>
<includes>
<include>plugin.xml</include>
<include>plugin.properties</include>
<include>icons/**</include>
</includes>
</resource>
-->
</resources>
<plugins>
<plugin>
<!--
| the following instructions build a simple set of public/private classes
into an OSGi bundle
-->
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<configuration>
<instructions>
<Bundle-SymbolicName>${bundle.symbolicName}</Bundle-SymbolicName>
<Bundle-Version>${project.version}</Bundle-Version>
<!--
| assume public classes are in the top package, and private classes
are under ".internal"
-->
<Export-Package>!${bundle.namespace}.internal.*,$
{bundle.namespace}.*;version="${project.version}"</Export-Package>
<Private-Package>${bundle.namespace}.internal.*</Private-Package>
<!--
| each module can override these defaults in their osgi.bnd file
-->
<_include>-osgi.bnd</_include>

<!-- bnd doesn't create valid Export-Service entries for some of our
blueprint services so remove them -->
<_removeheaders>Export-Service</_removeheaders>
</instructions>
</configuration>
</plugin>
</plugins>
</build>

</project>
<?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/maven-v4_0_0.xsd">

<parent>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.topology</artifactId>
<version>27.0.5</version>
</parent>

<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.topology.build</groupId>
<artifactId>shared-plugin-settings</artifactId>

<name>org.opennms.features.topology - plugin configuration</name>

<packaging>pom</packaging>

<modules>
<module>wrappers</module>
<module>compiled</module>
</modules>

<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<extensions>true</extensions>
</plugin>
</plugins>
</pluginManagement>
</build>

<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.apache.karaf.shell</groupId>
<artifactId>org.apache.karaf.shell.core</artifactId>
<version>${karafVersion}</version>
</dependency>
</dependencies>
</dependencyManagement>

<pluginRepositories>
<pluginRepository>
<snapshots><enabled>true</enabled></snapshots>
<releases><enabled>false</enabled></releases>
<id>opennms-snapshots</id>
<name>OpenNMS Snapshot Maven Repository</name>
<url>http://maven.opennms.org/content/groups/opennms.org-snapshot/</url>
</pluginRepository>
</pluginRepositories>

</project>
<?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/maven-v4_0_0.xsd">

<parent>
<groupId>org.opennms.features.topology.build</groupId>
<artifactId>shared-plugin-settings</artifactId>
<version>27.0.5</version>
</parent>

<modelVersion>4.0.0</modelVersion>
<artifactId>wrapper-bundle-settings</artifactId>

<name>OpenNMS :: Features :: Topology POMs Wrapper - wrapper instructions</name>

<!--
| don't apply project details to wrapped jars
-->
<organization/>
<description>
Simple OSGi wrapper around third-party jar(s)
</description>

<packaging>pom</packaging>

<build>
<plugins>
<plugin>
<!--
| the following instructions are optimized for wrapping third-party
libraries as OSGi bundles
-->
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<configuration>
<instructions>
<Bundle-SymbolicName>${bundle.symbolicName}</Bundle-SymbolicName>
<Bundle-Version>${wrapped.version}</Bundle-Version>
<!--
| export wrapped contents: don't use Export-Package:* as this bundles
everything on the classpath
-->
<_exportcontents>*</_exportcontents>
<Private-Package>!*</Private-Package>
<!--
| each module can override these defaults in their osgi.bnd file
-->
<_include>-osgi.bnd</_include>
</instructions>
</configuration>
</plugin>
</plugins>
</build>

</project>
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/maven-v4_0_0.xsd">

<parent>
<relativePath>../poms/compiled/</relativePath>
<groupId>org.opennms.features.topology.build</groupId>
<artifactId>compiled-bundle-settings</artifactId>
<version>27.0.5</version>
</parent>

<modelVersion>4.0.0</modelVersion>
<artifactId>provision</artifactId>

<name>org.opennms.features.topology - imported bundles</name>

<packaging>pom</packaging>

<!--
| imported (non-local) bundles are listed here as dependencies
| and will be deployed by pax:provision unless they are marked
| with <optional>true</optional>
-->

<dependencies>
<dependency>
<groupId>org.opennms.features.vaadin-components</groupId>
<artifactId>extender-service</artifactId>
</dependency>
</dependencies>

<repositories>
<repository>
<snapshots><enabled>false</enabled></snapshots>
<releases><enabled>true</enabled></releases>
<id>opennms-repo</id>
<name>OpenNMS Repository</name>
<url>http://maven.opennms.org/content/groups/opennms.org-release</url>
</repository>
<repository>
<snapshots><enabled>true</enabled></snapshots>
<releases><enabled>false</enabled></releases>
<id>opennms-snapshots</id>
<name>OpenNMS Snapshot Maven Repository</name>
<url>http://maven.opennms.org/content/groups/opennms.org-snapshot</url>
</repository>
</repositories>

</project>
<?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">
<modelVersion>4.0.0</modelVersion>
<parent>
<artifactId>org.opennms.features.topology.themes</artifactId>
<groupId>org.opennms.features.topology</groupId>
<version>27.0.5</version>
</parent>
<groupId>org.opennms.features.topology.themes</groupId>
<artifactId>org.opennms.features.topology.themes.default-theme</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Features :: Topology :: Default Theme</name>
<properties>
<bundle.symbolicname>org.opennms.features.topology.themes.default-
theme</bundle.symbolicname>
</properties>
<description>This is an OSGi bundle created with the OpenNMS Operation
archetype</description>
<build>
<resources>
<resource>
<directory>src/main/filtered</directory>
<filtering>true</filtering>
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>buildnumber-maven-plugin</artifactId>
<executions>
<execution>
<phase>generate-sources</phase>
<goals>
<goal>create</goal>
</goals>
</execution>
</executions>
<configuration>
<scmDirectory>../../../..</scmDirectory>
<shortRevisionLength>8</shortRevisionLength>
<doCheck>false</doCheck>
<doUpdate>false</doUpdate>
<revisionOnScmFailure>0</revisionOnScmFailure>
</configuration>
</plugin>
<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>
<Fragment-Host>com.vaadin.themes;bundle-version=$
{vaadinVersion}</Fragment-Host>
<Include-Resource>
{maven-resources},
{maven-dependencies}
</Include-Resource>
</instructions>
</configuration>
</plugin>
</plugins>
</build>

</project>
<?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/maven-v4_0_0.xsd">

<parent>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.topology</artifactId>
<version>27.0.5</version>
</parent>

<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.topology</groupId>
<artifactId>org.opennms.features.topology.themes</artifactId>

<name>OpenNMS :: Features :: Topology :: Themes</name>

<packaging>pom</packaging>

<modules>
<module>default-theme</module>
</modules>
</project>
<?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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.opennms.features</groupId>
<artifactId>vaadin-components</artifactId>
<version>27.0.5</version>
</parent>
<groupId>org.opennms.features.vaadin-components</groupId>
<artifactId>core</artifactId>
<properties>

<bundle.symbolicName>org.opennms.features.vaadin.components.core</bundle.symbolicNa
me>
<bundle.namespace>org.opennms.features.vaadin.components.core</bundle.namespace>
</properties>
<name>OpenNMS :: Features :: Vaadin :: Components :: Core</name>
<packaging>bundle</packaging>
<build>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<configuration>
<instructions>
<Bundle-SymbolicName>${bundle.symbolicName}</Bundle-
SymbolicName>
<Bundle-Version>${project.version}</Bundle-Version>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-web-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>vaadin</artifactId>
<version>${project.version}</version>
<type>pom</type>
</dependency>
<!-- Test dependencies -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-mock</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrd-jrobin</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.db</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.collection</groupId>

<artifactId>org.opennms.features.collection.persistence.rrd</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<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.opennms.features</groupId>
<artifactId>vaadin-components</artifactId>
<version>27.0.5</version>
</parent>
<groupId>org.opennms.features.vaadin-components</groupId>
<artifactId>extender-service</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Features :: Vaadin :: Extender Service</name>
<description>Vaadin Extender bootstrapping Vaadin apps</description>
<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-
Activator>org.opennms.vaadin.extender.internal.Activator</Bundle-Activator>
<Embed-Dependency>*; scope=compile; type=!pom;
inline=true</Embed-Dependency>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.compendium</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.vaadin</groupId>
<artifactId>vaadin-compatibility-server</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.vaadin</groupId>
<artifactId>vaadin-compatibility-client</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.vaadin</groupId>
<artifactId>vaadin-compatibility-client-compiled</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.vaadin</groupId>
<artifactId>vaadin-compatibility-themes</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<scope>provided</scope>
</dependency>

<!-- Embeded dependencies (not transitive) -->


<dependency>
<groupId>org.ops4j.pax.swissbox</groupId>
<artifactId>pax-swissbox-core</artifactId>
<version>1.8.0</version>
<scope>compile</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.ops4j.pax.swissbox</groupId>
<artifactId>pax-swissbox-optional-jcl</artifactId>
<version>1.8.0</version>
<scope>compile</scope>
<optional>true</optional>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>

<parent>
<relativePath>../../topology-map/poms/compiled/</relativePath>
<groupId>org.opennms.features.topology.build</groupId>
<artifactId>compiled-bundle-settings</artifactId>
<version>27.0.5</version>
</parent>

<groupId>org.opennms.features.vaadin-components</groupId>
<artifactId>graph</artifactId>

<properties>
<bundle.symbolicName>org.opennms.features.vaadin.components.graph</bundle.symbolicN
ame>

<bundle.namespace>org.opennms.features.vaadin.components.graph</bundle.namespace>
</properties>

<name>OpenNMS :: Features :: Vaadin :: Components :: Graph</name>


<packaging>bundle</packaging>

<build>
<resources>
<resource>
<directory>src/main/resources</directory>
</resource>
</resources>
</build>

<dependencies>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>vaadin</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.lib</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.themes</groupId>
<artifactId>dashboard-theme</artifactId>
<version>${project.version}</version>
</dependency>

</dependencies>

</project>
<?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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<relativePath>../../topology-map/poms/compiled/</relativePath>
<groupId>org.opennms.features.topology.build</groupId>
<artifactId>compiled-bundle-settings</artifactId>
<version>27.0.5</version>
</parent>
<groupId>org.opennms.features.vaadin-components</groupId>
<artifactId>header</artifactId>
<properties>

<bundle.symbolicName>org.opennms.features.vaadin.components.header</bundle.symbolic
Name>

<bundle.namespace>org.opennms.features.vaadin.components.header</bundle.namespace>
</properties>
<name>OpenNMS :: Features :: Vaadin :: Components :: Header</name>
<packaging>bundle</packaging>
<build>
<resources>
<resource>
<directory>src/main/resources</directory>
</resource>
</resources>
</build>
<dependencies>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>vaadin</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.lib</artifactId>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">

<parent>
<groupId>org.opennms</groupId>
<artifactId>org.opennms.features</artifactId>
<version>27.0.5</version>
</parent>

<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features</groupId>
<artifactId>vaadin-components</artifactId>

<name>OpenNMS :: Features :: Vaadin :: Components</name>

<packaging>pom</packaging>
<modules>
<module>core</module>
<module>graph</module>
<module>header</module>
<module>extender-service</module>
<module>widgetset</module>
</modules>
</project>
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.features</groupId>
<artifactId>vaadin-components</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features.vaadin-components</groupId>
<artifactId>widgetset</artifactId>
<packaging>bundle</packaging>
<name>${bundle.symbolicName}</name>
<properties>
<bundle.symbolicName>${project.groupId}.$
{project.artifactId}</bundle.symbolicName>
<bundle.namespace>${bundle.symbolicName}</bundle.namespace>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<configuration>
<instructions>
<Bundle-SymbolicName>${bundle.symbolicName}</Bundle-
SymbolicName>
<Bundle-Version>${project.version}</Bundle-Version>
<Vaadin-Package-Version>1</Vaadin-Package-Version>
<Include-Resource>{maven-resources},target/gwt</Include-
Resource>
</instructions>
</configuration>
</plugin>
<plugin>
<groupId>com.vaadin</groupId>
<artifactId>vaadin-maven-plugin</artifactId>
<version>${vaadin.plugin.version}</version>
<configuration>
<extraJvmArgs>-XX:MaxMetaspaceSize=256m -Xmx$
{vaadinJavaMaxMemory} -Xss1024k</extraJvmArgs>
<webappDirectory>$
{basedir}/target/gwt/VAADIN/widgetsets</webappDirectory>
<hostedWebapp>$
{basedir}/target/gwt/VAADIN/widgetsets</hostedWebapp>
<noServer>true</noServer>
<draftCompile>false</draftCompile>
<compileReport>false</compileReport>
<style>OBF</style>
<strict>true</strict>
<gwtSdkFirstInClasspath>true</gwtSdkFirstInClasspath>
<localWorkers>${vaadinLocalWorkers}</localWorkers>
</configuration>
<executions>
<execution>
<id>goals</id>
<configuration>
<!-- if you don't specify any modules, the plugin will
find them -->
<!-- <modules>
<module>com.vaadin.demo.mobilemail.gwt.ColorPickerWidgetSet</module>
</modules> -->
</configuration>
<goals>
<goal>resources</goal>
<goal>update-widgetset</goal>
<goal>compile</goal>
</goals>
</execution>
</executions>
<dependencies>
<dependency>
<groupId>com.google.gwt</groupId>
<artifactId>gwt-dev</artifactId>
<version>${gwtVersion}</version>
</dependency>
<dependency>
<groupId>com.google.gwt</groupId>
<artifactId>gwt-user</artifactId>
<version>${gwtVersion}</version>
</dependency>
</dependencies>
</plugin>

</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>vaadin</artifactId>
<type>pom</type>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<relativePath>../topology-map/poms/compiled/</relativePath>
<groupId>org.opennms.features.topology.build</groupId>
<artifactId>compiled-bundle-settings</artifactId>
<version>27.0.5</version>
</parent>
<groupId>org.opennms.features</groupId>
<artifactId>vaadin-dashboard</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Features :: Dashboard</name>
<description>
OpenNMS Vaadin Dashboard
</description>
<properties>
<bundle.symbolicName>org.opennms.features.vaadin-
dashboard</bundle.symbolicName>
<bundle.namespace>org.opennms.features.vaadin.dashboard</bundle.namespace>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<guava.version>${guavaVersion}</guava.version>
</properties>

<build>
<resources>
<resource>
<directory>src/main/resources</directory>
</resource>
<resource>
<directory>src/main/java</directory>
<includes>

<include>org/opennms/features/vaadin/dashboard/internal/gwt/public/**</include>
</includes>
</resource>
</resources>
<plugins>

<plugin>
<!--
| the following instructions build a simple set of public/private
classes into an OSGi bundle
-->
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<configuration>
<instructions>
<Bundle-SymbolicName>${bundle.symbolicName}</Bundle-
SymbolicName>
<Bundle-Version>${project.version}</Bundle-Version>
<Vaadin-Package-Version>1</Vaadin-Package-Version>
<Vaadin-
Widgetsets>org.opennms.features.vaadin.dashboard.DashboardWidgetSet</Vaadin-
Widgetsets>
<Include-Resource>{maven-resources},target/gwt/</Include-
Resource>
</instructions>
</configuration>
</plugin>

<plugin>
<groupId>com.vaadin</groupId>
<artifactId>vaadin-maven-plugin</artifactId>
<version>${vaadin.plugin.version}</version>
<configuration>
<extraJvmArgs>-XX:MaxMetaspaceSize=256m -Xmx$
{vaadinJavaMaxMemory} -Xss1024k</extraJvmArgs>
<webappDirectory>$
{basedir}/target/gwt/VAADIN/widgetsets</webappDirectory>
<hostedWebapp>$
{basedir}/target/gwt/VAADIN/widgetsets</hostedWebapp>
<noServer>true</noServer>
<draftCompile>false</draftCompile>
<compileReport>false</compileReport>
<style>OBF</style>
<strict>true</strict>
<runTarget>http://localhost:8980/opennms/dashboard</runTarget>
<gwtSdkFirstInClasspath>true</gwtSdkFirstInClasspath>
<localWorkers>${vaadinLocalWorkers}</localWorkers>
</configuration>
<executions>
<execution>
<configuration>
<!-- if you don't specify any modules, the plugin will
find them -->
<!-- <modules>
<module>com.vaadin.demo.mobilemail.gwt.ColorPickerWidgetSet</module>
</modules> -->
</configuration>
<goals>
<goal>resources</goal>
<goal>update-widgetset</goal>
<goal>compile</goal>
</goals>
</execution>
</executions>
<dependencies>
<dependency>
<groupId>com.google.gwt</groupId>
<artifactId>gwt-dev</artifactId>
<version>${gwtVersion}</version>
</dependency>
<dependency>
<groupId>com.google.gwt</groupId>
<artifactId>gwt-user</artifactId>
<version>${gwtVersion}</version>
</dependency>
</dependencies>
</plugin>
</plugins>

</build>

<repositories>
<repository>
<snapshots><enabled>true</enabled></snapshots>
<releases><enabled>false</enabled></releases>
<id>opennms-snapshots</id>
<name>OpenNMS Snapshot Maven Repository</name>
<url>http://maven.opennms.org/content/groups/opennms.org-
snapshot/</url>
</repository>
<repository>
<id>vaadin-snapshots</id>
<releases><enabled>false</enabled></releases>
<snapshots><enabled>true</enabled></snapshots>
<url>http://maven.opennms.org/content/repositories/vaadin-
snapshots/</url>
</repository>
<repository>
<id>vaadin-addons</id>
<url>http://maven.opennms.org/content/repositories/vaadin-addons/</url>
</repository>
</repositories>

<pluginRepositories>
<pluginRepository>
<id>vaadin-snapshots</id>
<snapshots><enabled>true</enabled></snapshots>
<releases><enabled>false</enabled></releases>
<url>http://maven.opennms.org/content/repositories/vaadin-
snapshots/</url>
</pluginRepository>
</pluginRepositories>

<dependencies>
<!-- OSGi Dependencies -->
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
<scope>provided</scope>
</dependency>

<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.compendium</artifactId>
<scope>provided</scope>
</dependency>
<!-- Vaadin Dependencies -->

<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>vaadin</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.features.vaadin-components</groupId>
<artifactId>core</artifactId>
<version>${project.version}</version>
</dependency>

<!-- Other dependencies -->


<dependency>
<groupId>org.opennms.features.themes</groupId>
<artifactId>dashboard-theme</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.vaadin.addons</groupId>
<artifactId>dragdroplayouts</artifactId>
<version>1.4.2</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-web-api</artifactId>
<scope>provided</scope>
</dependency>

<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.criteria</artifactId>
<scope>provided</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>

</dependencies>

</project>
<?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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<relativePath>../../topology-map/poms/compiled/</relativePath>
<groupId>org.opennms.features.topology.build</groupId>
<artifactId>compiled-bundle-settings</artifactId>
<version>27.0.5</version>
</parent>

<groupId>org.opennms.features.vaadin-dashlets</groupId>
<artifactId>dashlet-alarms</artifactId>

<properties>
<bundle.symbolicName>org.opennms.features.vaadin-dashlets.dashlet-
alarms</bundle.symbolicName>

<bundle.namespace>org.opennms.features.vaadin.dashboard.dashlets</bundle.namespace>
</properties>

<name>OpenNMS :: Features :: Dashlets :: Alarms</name>

<packaging>bundle</packaging>
<dependencies>

<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>vaadin-dashboard</artifactId>
<version>${project.version}</version>
</dependency>

<dependency>
<groupId>org.opennms.features.topology.plugins</groupId>
<artifactId>org.opennms.features.topology.plugins.browsers</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>

<!-- Vaadin Dependencies -->

<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>vaadin</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.features.themes</groupId>
<artifactId>dashboard-theme</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.timeformat</groupId>
<artifactId>org.opennms.features.timeformat.api</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>

</dependencies>

</project>
<?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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<relativePath>../../topology-map/poms/compiled/</relativePath>
<groupId>org.opennms.features.topology.build</groupId>
<artifactId>compiled-bundle-settings</artifactId>
<version>27.0.5</version>
</parent>

<groupId>org.opennms.features.vaadin-dashlets</groupId>
<artifactId>dashlet-bsm</artifactId>

<properties>
<bundle.symbolicName>org.opennms.features.vaadin-dashlets.dashlet-
bsm</bundle.symbolicName>

<bundle.namespace>org.opennms.features.vaadin.dashboard.dashlets</bundle.namespace>
</properties>

<name>OpenNMS :: Features :: Dashlets :: BSM</name>

<packaging>bundle</packaging>
<dependencies>

<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>vaadin-dashboard</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.vaadin-components</groupId>
<artifactId>core</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.bsm</groupId>
<artifactId>org.opennms.features.bsm.service.api</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>

<!-- Vaadin Dependencies -->


<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>vaadin</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.features.themes</groupId>
<artifactId>dashboard-theme</artifactId>
<version>${project.version}</version>
</dependency>

<!-- Test Dependencies -->


<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>

<parent>
<relativePath>../../topology-map/poms/compiled/</relativePath>
<groupId>org.opennms.features.topology.build</groupId>
<artifactId>compiled-bundle-settings</artifactId>
<version>27.0.5</version>
</parent>

<groupId>org.opennms.features.vaadin-dashlets</groupId>
<artifactId>dashlet-charts</artifactId>

<properties>
<bundle.symbolicName>org.opennms.features.vaadin-dashlets.dashlet-
charts</bundle.symbolicName>

<bundle.namespace>org.opennms.features.vaadin.dashboard.dashlets</bundle.namespace>
</properties>

<name>OpenNMS :: Features :: Dashlets :: Charts</name>

<packaging>bundle</packaging>
<dependencies>

<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>vaadin-dashboard</artifactId>
<version>${project.version}</version>
</dependency>

<!-- Vaadin Dependencies -->

<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>vaadin</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.features.themes</groupId>
<artifactId>dashboard-theme</artifactId>
<version>${project.version}</version>
</dependency>

<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-web-api</artifactId>
<scope>provided</scope>
</dependency>

</dependencies>

</project>
<?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">

<modelVersion>4.0.0</modelVersion>
<parent>
<relativePath>../../topology-map/poms/compiled/</relativePath>
<groupId>org.opennms.features.topology.build</groupId>
<artifactId>compiled-bundle-settings</artifactId>
<version>27.0.5</version>
</parent>

<groupId>org.opennms.features.vaadin-dashlets</groupId>
<artifactId>dashlet-features</artifactId>
<name>OpenNMS :: Features :: Dashlets :: Features</name>
<packaging>pom</packaging>

<build>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<executions>
<execution>
<id>filter</id>
<phase>generate-resources</phase>
<goals>
<goal>resources</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<executions>
<execution>
<id>attach-artifacts</id>
<phase>package</phase>
<goals>
<goal>attach-artifact</goal>
</goals>
<configuration>
<artifacts>
<artifact>
<file>target/classes/features.xml</file>
<type>xml</type>
</artifact>
</artifacts>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>

</project>
<?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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>

<parent>
<relativePath>../../topology-map/poms/compiled/</relativePath>
<groupId>org.opennms.features.topology.build</groupId>
<artifactId>compiled-bundle-settings</artifactId>
<version>27.0.5</version>
</parent>

<groupId>org.opennms.features.vaadin-dashlets</groupId>
<artifactId>dashlet-grafana</artifactId>

<properties>
<bundle.symbolicName>org.opennms.features.vaadin-dashlets.dashlet-
grafana</bundle.symbolicName>

<bundle.namespace>org.opennms.features.vaadin.dashboard.dashlets</bundle.namespace>
</properties>

<name>OpenNMS :: Features :: Dashlets :: Grafana</name>

<packaging>bundle</packaging>
<dependencies>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>vaadin-dashboard</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>vaadin</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.features.themes</groupId>
<artifactId>dashboard-theme</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>${httpclientVersion}</version>
<exclusions>
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>${commonsIoVersion}</version>
</dependency>
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
<version>${commonsLangVersion}</version>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>

<parent>
<relativePath>../../topology-map/poms/compiled/</relativePath>
<groupId>org.opennms.features.topology.build</groupId>
<artifactId>compiled-bundle-settings</artifactId>
<version>27.0.5</version>
</parent>

<groupId>org.opennms.features.vaadin-dashlets</groupId>
<artifactId>dashlet-image</artifactId>

<properties>
<bundle.symbolicName>org.opennms.features.vaadin-dashlets.dashlet-
image</bundle.symbolicName>

<bundle.namespace>org.opennms.features.vaadin.dashboard.dashlets</bundle.namespace>
</properties>

<name>OpenNMS :: Features :: Dashlets :: Image</name>

<packaging>bundle</packaging>
<dependencies>

<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>vaadin-dashboard</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>vaadin</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.features.themes</groupId>
<artifactId>dashboard-theme</artifactId>
<version>${project.version}</version>
</dependency>

</dependencies>

</project>
<?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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>

<parent>
<relativePath>../../topology-map/poms/compiled/</relativePath>
<groupId>org.opennms.features.topology.build</groupId>
<artifactId>compiled-bundle-settings</artifactId>
<version>27.0.5</version>
</parent>

<groupId>org.opennms.features.vaadin-dashlets</groupId>
<artifactId>dashlet-ksc</artifactId>

<properties>
<bundle.symbolicName>org.opennms.features.vaadin-dashlets.dashlet-
ksc</bundle.symbolicName>

<bundle.namespace>org.opennms.features.vaadin.dashboard.dashlets</bundle.namespace>
</properties>

<name>OpenNMS :: Features :: Dashlets :: KSC</name>

<packaging>bundle</packaging>
<dependencies>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-config</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-web-api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-webapp</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-dependencies</artifactId>
<scope>provided</scope>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>vaadin-dashboard</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.vaadin-components</groupId>
<artifactId>graph</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>vaadin</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.features.themes</groupId>
<artifactId>dashboard-theme</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.timeformat</groupId>
<artifactId>org.opennms.features.timeformat.api</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<scope>test</scope>
</dependency>

</dependencies>

</project>
<?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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<relativePath>../../topology-map/poms/compiled/</relativePath>
<groupId>org.opennms.features.topology.build</groupId>
<artifactId>compiled-bundle-settings</artifactId>
<version>27.0.5</version>
</parent>

<groupId>org.opennms.features.vaadin-dashlets</groupId>
<artifactId>dashlet-map</artifactId>

<properties>
<bundle.symbolicName>org.opennms.features.vaadin-dashlets.dashlet-
map</bundle.symbolicName>

<bundle.namespace>org.opennms.features.vaadin.dashboard.dashlets</bundle.namespace>
</properties>

<name>OpenNMS :: Features :: Dashlets :: Map</name>

<packaging>bundle</packaging>
<dependencies>

<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>vaadin-dashboard</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>vaadin</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.features.themes</groupId>
<artifactId>dashboard-theme</artifactId>
<version>${project.version}</version>
</dependency>

</dependencies>

</project>
<?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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>

<parent>
<relativePath>../../topology-map/poms/compiled/</relativePath>
<groupId>org.opennms.features.topology.build</groupId>
<artifactId>compiled-bundle-settings</artifactId>
<version>27.0.5</version>
</parent>

<groupId>org.opennms.features.vaadin-dashlets</groupId>
<artifactId>dashlet-rrd</artifactId>
<properties>
<bundle.symbolicName>org.opennms.features.vaadin-dashlets.dashlet-
rrd</bundle.symbolicName>

<bundle.namespace>org.opennms.features.vaadin.dashboard.dashlets</bundle.namespace>
</properties>

<name>OpenNMS :: Features :: Dashlets :: RRD</name>

<packaging>bundle</packaging>
<dependencies>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-config</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-web-api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-webapp</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-dependencies</artifactId>
<scope>provided</scope>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>vaadin-dashboard</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.vaadin-components</groupId>
<artifactId>graph</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>vaadin</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.features.themes</groupId>
<artifactId>dashboard-theme</artifactId>
<version>${project.version}</version>
</dependency>

</dependencies>

</project>
<?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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>

<parent>
<relativePath>../../topology-map/poms/compiled/</relativePath>
<groupId>org.opennms.features.topology.build</groupId>
<artifactId>compiled-bundle-settings</artifactId>
<version>27.0.5</version>
</parent>

<groupId>org.opennms.features.vaadin-dashlets</groupId>
<artifactId>dashlet-rtc</artifactId>

<properties>
<bundle.symbolicName>org.opennms.features.vaadin-dashlets.dashlet-
rtc</bundle.symbolicName>

<bundle.namespace>org.opennms.features.vaadin.dashboard.dashlets</bundle.namespace>
</properties>

<name>OpenNMS :: Features :: Dashlets :: RTC</name>

<packaging>bundle</packaging>
<dependencies>

<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>vaadin-dashboard</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>vaadin</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.features.themes</groupId>
<artifactId>dashboard-theme</artifactId>
<version>${project.version}</version>
</dependency>

</dependencies>

</project>
<?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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<relativePath>../../topology-map/poms/compiled/</relativePath>
<groupId>org.opennms.features.topology.build</groupId>
<artifactId>compiled-bundle-settings</artifactId>
<version>27.0.5</version>
</parent>
<groupId>org.opennms.features.vaadin-dashlets</groupId>
<artifactId>dashlet-summary</artifactId>

<properties>
<bundle.symbolicName>org.opennms.features.vaadin-dashlets.dashlet-
summary</bundle.symbolicName>

<bundle.namespace>org.opennms.features.vaadin.dashboard.dashlets</bundle.namespace>
</properties>

<name>OpenNMS :: Features :: Dashlets :: Summary</name>

<packaging>bundle</packaging>
<dependencies>

<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>vaadin-dashboard</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>vaadin</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.features.themes</groupId>
<artifactId>dashboard-theme</artifactId>
<version>${project.version}</version>
</dependency>

<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao</artifactId>
<scope>provided</scope>
</dependency>

</dependencies>

</project>
<?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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>

<parent>
<relativePath>../../topology-map/poms/compiled/</relativePath>
<groupId>org.opennms.features.topology.build</groupId>
<artifactId>compiled-bundle-settings</artifactId>
<version>27.0.5</version>
</parent>

<groupId>org.opennms.features.vaadin-dashlets</groupId>
<artifactId>dashlet-surveillance</artifactId>

<properties>
<bundle.symbolicName>org.opennms.features.vaadin-dashlets.dashlet-
surveillance</bundle.symbolicName>

<bundle.namespace>org.opennms.features.vaadin.dashboard.dashlets</bundle.namespace>
</properties>

<name>OpenNMS :: Features :: Dashlets :: Surveillance</name>

<packaging>bundle</packaging>
<dependencies>

<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>vaadin-dashboard</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>vaadin</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.features.themes</groupId>
<artifactId>dashboard-theme</artifactId>
<version>${project.version}</version>
</dependency>

</dependencies>

</project>
<?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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>

<parent>
<relativePath>../../topology-map/poms/compiled/</relativePath>
<groupId>org.opennms.features.topology.build</groupId>
<artifactId>compiled-bundle-settings</artifactId>
<version>27.0.5</version>
</parent>

<groupId>org.opennms.features.vaadin-dashlets</groupId>
<artifactId>dashlet-topology</artifactId>

<properties>
<bundle.symbolicName>org.opennms.features.vaadin-dashlets.dashlet-
topology</bundle.symbolicName>

<bundle.namespace>org.opennms.features.vaadin.dashboard.dashlets</bundle.namespace>
</properties>

<name>OpenNMS :: Features :: Dashlets :: Topology</name>

<packaging>bundle</packaging>
<dependencies>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>vaadin-dashboard</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.topology</groupId>
<artifactId>org.opennms.features.topology.link</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>vaadin</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.features.themes</groupId>
<artifactId>dashboard-theme</artifactId>
<version>${project.version}</version>
</dependency>

</dependencies>

</project>
<?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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>

<parent>
<relativePath>../../topology-map/poms/compiled/</relativePath>
<groupId>org.opennms.features.topology.build</groupId>
<artifactId>compiled-bundle-settings</artifactId>
<version>27.0.5</version>
</parent>

<groupId>org.opennms.features.vaadin-dashlets</groupId>
<artifactId>dashlet-url</artifactId>

<properties>
<bundle.symbolicName>org.opennms.features.vaadin-dashlets.dashlet-
url</bundle.symbolicName>

<bundle.namespace>org.opennms.features.vaadin.dashboard.dashlets</bundle.namespace>
</properties>

<name>OpenNMS :: Features :: Dashlets :: URL</name>

<packaging>bundle</packaging>
<dependencies>

<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>vaadin-dashboard</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>vaadin</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.features.themes</groupId>
<artifactId>dashboard-theme</artifactId>
<version>${project.version}</version>
</dependency>

</dependencies>

</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>org.opennms.features</artifactId>
<version>27.0.5</version>
</parent>

<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features</groupId>
<artifactId>vaadin-dashlets</artifactId>

<name>OpenNMS :: Features :: Dashlets</name>

<packaging>pom</packaging>

<modules>
<module>dashlet-alarms</module>
<module>dashlet-bsm</module>
<module>dashlet-map</module>
<module>dashlet-summary</module>
<module>dashlet-image</module>
<module>dashlet-charts</module>
<module>dashlet-rtc</module>
<module>dashlet-rrd</module>
<module>dashlet-ksc</module>
<module>dashlet-topology</module>
<module>dashlet-surveillance</module>
<module>dashlet-features</module>
<module>dashlet-url</module>
<module>dashlet-grafana</module>
</modules>
</project>
<?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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<artifactId>org.opennms.features</artifactId>
<groupId>org.opennms</groupId>
<version>27.0.5</version>
</parent>
<groupId>org.opennms.features</groupId>
<artifactId>vaadin-jmxconfiggenerator</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Features :: JMX Config Generator :: Web UI</name>
<url>http://www.opennms.org</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<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>
<Vaadin-Package-Version>1</Vaadin-Package-Version>
<Vaadin-
Widgetsets>org.opennms.vaadin.DefaultWidgetset</Vaadin-Widgetsets>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>vaadin</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.features.vaadin-components</groupId>
<artifactId>core</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.vaadin-components</groupId>
<artifactId>widgetset</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>javax.validation</groupId>
<artifactId>validation-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>javax.validation</groupId>
<artifactId>validation-api</artifactId>
<classifier>sources</classifier>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>jmxconfiggenerator</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jaxb-dependencies</artifactId>
<type>pom</type>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jmx-dependencies</artifactId>
<type>pom</type>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-web-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-config-jaxb</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>args4j</groupId>
<artifactId>args4j</artifactId>
<version>2.32</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.themes</groupId>
<artifactId>jmxconfiggenerator-theme</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<relativePath>../topology-map/poms/compiled/</relativePath>
<groupId>org.opennms.features.topology.build</groupId>
<artifactId>compiled-bundle-settings</artifactId>
<version>27.0.5</version>
</parent>
<groupId>org.opennms.features</groupId>
<artifactId>vaadin-node-maps</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Features :: Node Maps</name>
<description>
OpenNMS Vaadin UI for displaying nodes on geographical maps using assets
records.
</description>
<properties>
<bundle.symbolicName>org.opennms.features.vaadin-node-
maps</bundle.symbolicName>

<bundle.namespace>org.opennms.features.vaadin.nodemaps</bundle.namespace>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

<build>
<resources>
<resource>
<directory>src/main/resources</directory>
</resource>
<resource>
<directory>src/main/java</directory>
<includes>

<include>org/opennms/features/vaadin/nodemaps/internal/gwt/public/**</include>
</includes>
</resource>
</resources>
<plugins>

<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<configuration>
<instructions>
<Bundle-SymbolicName>$
{bundle.symbolicName}</Bundle-SymbolicName>
<Bundle-Version>${project.version}</Bundle-
Version>
<Export-Package>!$
{bundle.namespace}.internal.*,${bundle.namespace}.*;version="$
{project.version}"</Export-Package>
<Private-Package>$
{bundle.namespace}.internal.*</Private-Package>
<Vaadin-Package-Version>1</Vaadin-Package-
Version>
<Vaadin-
Widgetsets>org.opennms.features.vaadin.nodemaps.internal.gwt.NodeMapsWidgetset</Vaa
din-Widgetsets>
<Include-Resource>{maven-
resources},target/gwt/</Include-Resource>
</instructions>
</configuration>
</plugin>

<plugin>
<groupId>com.vaadin</groupId>
<artifactId>vaadin-maven-plugin</artifactId>
<version>${vaadin.plugin.version}</version>
<configuration>
<extraJvmArgs>-XX:MaxMetaspaceSize=256m -Xmx$
{vaadinJavaMaxMemory} -Xss1024k</extraJvmArgs>
<webappDirectory>$
{basedir}/target/gwt/VAADIN/widgetsets</webappDirectory>
<hostedWebapp>$
{basedir}/target/gwt/VAADIN/widgetsets</hostedWebapp>
<noServer>true</noServer>
<draftCompile>false</draftCompile>
<compileReport>false</compileReport>
<style>OBF</style>
<strict>true</strict>
<runTarget>http://localhost:8980/opennms/node-maps</runTarget>
<gwtSdkFirstInClasspath>true</gwtSdkFirstInClasspath>
<localWorkers>${vaadinLocalWorkers}</localWorkers>
</configuration>
<executions>
<execution>
<configuration>
<!-- if you don't specify any modules, the plugin will
find them -->
<!-- <modules>
<module>com.vaadin.demo.mobilemail.gwt.ColorPickerWidgetSet</module>
</modules> -->
</configuration>
<goals>
<goal>resources</goal>
<goal>update-widgetset</goal>
<goal>compile</goal>
</goals>
</execution>
</executions>
<dependencies>
<dependency>
<groupId>com.google.gwt</groupId>
<artifactId>gwt-dev</artifactId>
<version>${gwtVersion}</version>
</dependency>
<dependency>
<groupId>com.google.gwt</groupId>
<artifactId>gwt-user</artifactId>
<version>${gwtVersion}</version>
</dependency>
</dependencies>
</plugin>
</plugins>

</build>

<repositories>
<repository>
<id>vaadin-snapshots</id>
<releases><enabled>false</enabled></releases>
<snapshots><enabled>true</enabled></snapshots>
<url>http://maven.opennms.org/content/repositories/vaadin-
snapshots/</url>
</repository>
<repository>
<id>vaadin-addons</id>
<url>http://maven.opennms.org/content/repositories/vaadin-
addons/</url>
</repository>
<repository>
<snapshots><enabled>false</enabled></snapshots>
<releases><enabled>true</enabled></releases>
<id>opennms-repo</id>
<name>OpenNMS Repository</name>
<url>http://maven.opennms.org/content/groups/opennms.org-
release/</url>
</repository>
</repositories>

<pluginRepositories>
<pluginRepository>
<id>vaadin-snapshots</id>
<snapshots><enabled>true</enabled></snapshots>
<releases><enabled>false</enabled></releases>
<url>http://maven.opennms.org/content/repositories/vaadin-
snapshots/</url>
</pluginRepository>
</pluginRepositories>

<dependencies>
<!-- OSGi Dependencies -->

<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.compendium</artifactId>
<scope>provided</scope>
</dependency>

<!-- Vaadin Dependencies -->

<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>vaadin</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.features.vaadin-components</groupId>
<artifactId>core</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.vaadin-components</groupId>
<artifactId>header</artifactId>
<version>${project.version}</version>
</dependency>
<!-- Node Maps Dependencies -->

<dependency>
<groupId>org.opennms.features.topology</groupId>
<artifactId>org.opennms.features.topology.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.topology.plugins</groupId>

<artifactId>org.opennms.features.topology.plugins.browsers</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.geolocation</groupId>
<artifactId>org.opennms.features.geolocation.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.discotools.gwt.leaflet</groupId>
<artifactId>gwtl-core</artifactId>
<version>0.3-ONMS-20131014-1</version>
<optional>true</optional>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-dependencies</artifactId>
<scope>provided</scope>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.lib</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.sysprops</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-config</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-web-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<scope>provided</scope>
</dependency>
<!-- Tests Dependencies -->

<dependency>
<groupId>org.easymock</groupId>
<artifactId>easymock</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.geocoder</groupId>
<artifactId>org.opennms.features.geocoder.nominatim</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.powermock</groupId>
<artifactId>powermock-module-junit4</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.powermock</groupId>
<artifactId>powermock-api-easymock</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.powermock</groupId>
<artifactId>powermock-api-mockito2</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>commons-beanutils</groupId>
<artifactId>commons-beanutils</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.googlecode.gwt-test-utils</groupId>
<artifactId>gwt-test-utils</artifactId>
<version>0.47</version>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
<exclusion>
<groupId>commons-beanutils</groupId>
<artifactId>commons-beanutils-core</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.google.gwt</groupId>
<artifactId>gwt-servlet</artifactId>
<version>${gwtVersion}</version>
<scope>test</scope>
</dependency>
</dependencies>

</project>
<?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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<relativePath>../topology-map/poms/compiled/</relativePath>
<groupId>org.opennms.features.topology.build</groupId>
<artifactId>compiled-bundle-settings</artifactId>
<version>27.0.5</version>
</parent>
<groupId>org.opennms.features</groupId>
<artifactId>vaadin-snmp-events-and-metrics</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Features :: SNMP Events and Metrics Admin UI</name>
<description>
OpenNMS Vaadin Administration UI for handling SNMP related configuration files
for events and data collection.
</description>
<properties>
<bundle.symbolicName>org.opennms.features.vaadin-snmp-events-and-
metrics</bundle.symbolicName>
<bundle.namespace>org.opennms.features.vaadin</bundle.namespace>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

<build>
<resources>
<resource>
<directory>src/main/java</directory>
</resource>
<resource>
<directory>src/main/resources</directory>
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<configuration>
<instructions>
<Bundle-SymbolicName>${bundle.symbolicName}</Bundle-SymbolicName>
<Bundle-Version>${project.version}</Bundle-Version>
<Export-Package>!${bundle.namespace}.internal.*,$
{bundle.namespace}.*;version="${project.version}"</Export-Package>
<Private-Package>${bundle.namespace}.internal.*</Private-Package>
<Vaadin-Package-Version>1</Vaadin-Package-Version>
<Vaadin-Widgetsets>org.opennms.vaadin.DefaultWidgetset</Vaadin-
Widgetsets>
<Include-Resource>{maven-resources}</Include-Resource>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<!-- Vaadin and OSGI dependencies -->
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>vaadin</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.features.vaadin-components</groupId>
<artifactId>core</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.vaadin-components</groupId>
<artifactId>widgetset</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.themes</groupId>
<artifactId>onms-default-theme</artifactId>
<version>${project.version}</version>
</dependency>

<!-- UI Dependencies -->


<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-dependencies</artifactId>
<scope>provided</scope>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.lib</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-config</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-web-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.mib-compiler</artifactId>
</dependency>
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.timeformat</groupId>
<artifactId>org.opennms.features.timeformat.api</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>

<!-- Tests Dependencies -->


<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.lib</artifactId>
<scope>test</scope>
</dependency>

</dependencies>

</project>
<?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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<relativePath>../topology-map/poms/compiled/</relativePath>
<groupId>org.opennms.features.topology.build</groupId>
<artifactId>compiled-bundle-settings</artifactId>
<version>27.0.5</version>
</parent>
<groupId>org.opennms.features</groupId>
<artifactId>vaadin-surveillance-views</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Features :: Surveillance Views</name>
<description>
OpenNMS Vaadin Surveillance Views
</description>
<properties>

<bundle.symbolicName>org.opennms.features.vaadin.surveillanceviews</bundle.symbolic
Name>

<bundle.namespace>org.opennms.features.vaadin.surveillanceviews</bundle.namespace>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<guava.version>${guavaVersion}</guava.version>
</properties>

<build>
<resources>
<resource>
<directory>src/main/resources</directory>
</resource>
</resources>
<plugins>

<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<configuration>
<instructions>
<Bundle-SymbolicName>${bundle.symbolicName}</Bundle-
SymbolicName>
<Bundle-Version>${project.version}</Bundle-Version>
<Vaadin-Package-Version>1</Vaadin-Package-Version>
<Vaadin-
Widgetsets>org.opennms.vaadin.DefaultWidgetset</Vaadin-Widgetsets>
<Include-Resource>{maven-resources}</Include-Resource>
</instructions>
</configuration>
</plugin>
</plugins>

</build>
<dependencies>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<scope>provided</scope>
</dependency>

<!-- OSGi Dependencies -->

<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
<scope>provided</scope>
</dependency>

<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.compendium</artifactId>
<scope>provided</scope>
</dependency>

<dependency>
<groupId>org.opennms.features.vaadin-components</groupId>
<artifactId>graph</artifactId>
<version>${project.version}</version>
</dependency>

<!-- Vaadin Dependencies -->

<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>vaadin</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.features.vaadin-components</groupId>
<artifactId>core</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.vaadin-components</groupId>
<artifactId>widgetset</artifactId>
<version>${project.version}</version>
</dependency>

<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-web-api</artifactId>
<scope>provided</scope>
</dependency>

<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.criteria</artifactId>
<scope>provided</scope>
</dependency>

<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao</artifactId>
<scope>provided</scope>
</dependency>

<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-config</artifactId>
<scope>provided</scope>
</dependency>

<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-config-model</artifactId>
<scope>provided</scope>
</dependency>

<dependency>
<groupId>org.opennms.features.topology</groupId>
<artifactId>org.opennms.features.topology.api</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>

<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.lib</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.services</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.xml</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>

</dependencies>

</project>
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>org.opennms.features</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features</groupId>
<artifactId>vaadin</artifactId>
<name>OpenNMS :: Features :: Vaadin + Dependencies</name>
<description>The Vaadin web application framework including some addons and osgi
related packages.</description>
<packaging>pom</packaging>
<properties>
<vaadinGentyrefVersion>1.2.0.vaadin1</vaadinGentyrefVersion>
<vaadinJsoupVersion>1.11.2</vaadinJsoupVersion>
</properties>
<dependencies>
<dependency>
<groupId>com.vaadin</groupId>
<artifactId>vaadin-compatibility-server</artifactId>
</dependency>
<dependency>
<groupId>com.vaadin</groupId>
<artifactId>vaadin-compatibility-client-compiled</artifactId>
</dependency>
<dependency>
<groupId>com.vaadin</groupId>
<artifactId>vaadin-compatibility-client</artifactId>
</dependency>
<dependency>
<groupId>com.vaadin</groupId>
<artifactId>vaadin-compatibility-themes</artifactId>
</dependency>
<dependency>
<groupId>com.vaadin</groupId>
<artifactId>vaadin-compatibility-shared</artifactId>
</dependency>
<dependency>
<groupId>com.google.gwt</groupId>
<artifactId>gwt-elemental</artifactId>
<version>${gwtVersion}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.google.gwt</groupId>
<artifactId>gwt-user</artifactId>
<version>${gwtVersion}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.vaadin.external</groupId>
<artifactId>gentyref</artifactId>
<version>${vaadinGentyrefVersion}</version>
</dependency>
<dependency>
<groupId>org.jsoup</groupId>
<artifactId>jsoup</artifactId>
<version>${vaadinJsoupVersion}</version> <!-- Vaadin uses a different jsoup
version than globally defined -->
</dependency>
<dependency>
<groupId>org.opennms.features.vaadin-components</groupId>
<artifactId>extender-service</artifactId>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</dependency>
<dependency>
<groupId>org.json</groupId>
<artifactId>json</artifactId>
<version>${jsonVersion}</version>
</dependency>
<!-- required by pax vaadin -->
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>servlet-dependencies</artifactId>
<type>pom</type>
</dependency>
<!-- Custom OpenNMS Osgi components shared with all vaadin applications -->
<dependency>
<groupId>org.opennms.osgi</groupId>
<artifactId>opennms-osgi-core</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.themes</groupId>
<artifactId>onms-default-theme</artifactId>
<version>${project.version}</version>
</dependency>
<!-- Additional Addons shared with all Vaadin Applications -->
<dependency>
<groupId>com.vaadin</groupId>
<artifactId>vaadin-context-menu</artifactId>
</dependency>
<dependency>
<groupId>org.vaadin.addon</groupId>
<artifactId>confirmdialog</artifactId>
</dependency>
</dependencies>
<repositories>
<repository>
<id>vaadin-addons</id>
<url>http://maven.opennms.org/content/repositories/vaadin-addons/</url>
</repository>
<repository>
<snapshots><enabled>false</enabled></snapshots>
<releases><enabled>true</enabled></releases>
<id>opennms-repo</id>
<name>OpenNMS Repository</name>
<url>http://maven.opennms.org/content/groups/opennms.org-release/</url>
</repository>
<repository>
<snapshots><enabled>true</enabled></snapshots>
<releases><enabled>false</enabled></releases>
<id>opennms-snapshots</id>
<name>OpenNMS Snapshot Maven Repository</name>
<url>http://maven.opennms.org/content/groups/opennms.org-snapshot/</url>
</repository>
</repositories>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>org.opennms.features</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.wsman</artifactId>
<name>OpenNMS :: Features :: WS-Man Integration</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>
<!-- Don't export any packages, expose services only. -->
<Export-Package></Export-Package>
<Import-Package>
org.eclipse.persistence.internal.jaxb;resolution:=optional,
org.eclipse.persistence.internal.jaxb.many;resolution:=optional,
org.opennms.core.network,
org.opennms.netmgt.collection.adapters,
*
</Import-Package>
</instructions>
</configuration>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<descriptors>
<descriptor>src/assembly/xsds.xml</descriptor>
</descriptors>
<overrideUid>0</overrideUid>
<overrideGid>0</overrideGid>
<tarLongFileMode>posix</tarLongFileMode>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>

<dependencies>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jaxb-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.db</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-model</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.api</artifactId>
</dependency>
<!-- This is needed when running wsman in non-osgi env with Java11-->
<dependency>
<groupId>org.apache.geronimo.specs</groupId>
<artifactId>geronimo-ws-metadata_2.0_spec</artifactId>
<version>1.1.3</version>
</dependency>
<dependency>
<groupId>org.opennms.features.poller.monitors</groupId>
<artifactId>org.opennms.features.poller.monitors.core</artifactId>
<type>jar</type>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-provision-api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.poller</groupId>
<artifactId>org.opennms.features.poller.api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core.wsman</groupId>
<artifactId>org.opennms.core.wsman.cxf</artifactId>
<version>${wsmanVersion}</version>
<exclusions>
<exclusion>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-bindings-soap</artifactId>
</exclusion>
<exclusion>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-databinding-jaxb</artifactId>
</exclusion>
<exclusion>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.servicemix.specs</groupId>
<artifactId>org.apache.servicemix.specs.jaxws-api-2.2</artifactId>
<version>${servicemixSpecsVersion}</version>
<exclusions>
<exclusion>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.servicemix.specs</groupId>
<artifactId>org.apache.servicemix.specs.saaj-api-1.3</artifactId>
<version>${servicemixSpecsVersion}</version>
<exclusions>
<exclusion>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>cxf-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.easymock</groupId>
<artifactId>easymock</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>xmlunit</groupId>
<artifactId>xmlunit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.persistence.rrd</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrd-jrobin</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-config</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.xml</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.collection</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.mycila</groupId>
<artifactId>mycila-xmltool</artifactId>
<version>4.4.ga</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.test-api</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>integration-tests</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>org.opennms.integration-tests.config</artifactId>
<packaging>jar</packaging>
<name>OpenNMS :: Integration Tests :: Config</name>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<!-- Copy all Pax Exam artifacts into the Karaf repository -->
<execution>
<id>copy</id>
<phase>process-test-classes</phase>
<goals>
<goal>copy-dependencies</goal>
</goals>
<configuration>
<useRepositoryLayout>true</useRepositoryLayout>
<excludeTypes>tar.gz</excludeTypes>
<!-- TODO: Remove this when we add tests for OpenNMS features -->
<excludeGroupIds>org.opennms</excludeGroupIds>
<outputDirectory>${project.build.directory}/paxexam/test-
repo</outputDirectory>
</configuration>
</execution>
</executions>
</plugin>
<!--
Generate the META-INF/maven/dependencies.properties that is required by the
Maven URL resolver.
-->
<plugin>
<groupId>org.apache.servicemix.tooling</groupId>
<artifactId>depends-maven-plugin</artifactId>
<executions>
<execution>
<id>generate-depends-file</id>
<goals>
<goal>generate-depends-file</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-clean-plugin</artifactId>
<executions>
<execution>
<id>cleanup-assembly</id>
<phase>post-integration-test</phase>
<goals>
<goal>clean</goal>
</goals>
<configuration>
<excludeDefaultDirectories>true</excludeDefaultDirectories>
<filesets>
<fileset>
<directory>${project.build.directory}/paxexam</directory>
</fileset>
</filesets>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>

<dependencies>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.lib</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.xml</artifactId>
</dependency>

<!-- Contains beans for ServiceConfigurationPublicConstructorTest -->


<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-asterisk</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-jetty</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.events</groupId>
<artifactId>org.opennms.features.events.traps</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.discovery</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.enlinkd</groupId>
<artifactId>org.opennms.features.enlinkd.daemon</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>

<!-- Contains model code for the WillItUnmarshall test -->


<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-config-model</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.jdbc-collector</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-vmware</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-alarm-northbounder-bsf</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-alarm-northbounder-drools</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-alarm-northbounder-email</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-alarm-northbounder-jms</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-alarm-northbounder-syslog</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-alarm-northbounder-snmptrap</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.search</groupId>
<artifactId>org.opennms.features.search.providers</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.ifttt</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.ticketing</groupId>
<artifactId>org.opennms.features.ticketing.daemon</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<!--
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.access-point-monitor</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
-->
<dependency>
<groupId>org.opennms.features.reporting</groupId>
<artifactId>org.opennms.features.reporting.model</artifactId>
<scope>test</scope>
</dependency>

<!-- OpenNMS Karaf container so that we can crank it up with the pax-exam-karaf
unit test framework -->
<!--
<dependency>
<groupId>org.opennms.container</groupId>
<artifactId>karaf</artifactId>
<type>tar.gz</type>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
-->
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.karaf</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.karaf.features</groupId>
<artifactId>standard</artifactId>
<version>${karafVersion}</version>
<classifier>features</classifier>
<type>xml</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.topology</groupId>
<artifactId>org.opennms.features.topology.api</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.wsman</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.flows</groupId>
<artifactId>org.opennms.features.flows.elastic</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.jest</groupId>
<artifactId>org.opennms.features.jest.client</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.telemetry.config</groupId>
<artifactId>org.opennms.features.telemetry.config.jaxb</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>xmlunit</groupId>
<artifactId>xmlunit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.prometheus-collector</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>opennms</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>integration-tests</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Integration Tests</name>
<modules>
<module>config</module>
<module>trend-configuration</module>
</modules>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>integration-tests</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>org.opennms.integration-tests.trend-configuration</artifactId>
<packaging>jar</packaging>
<name>OpenNMS :: Integration Tests :: Trend-Configuration</name>
<dependencies>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.xml</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.services</artifactId>
<scope>test</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.db</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrd-jrobin</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jrrd2-dependencies</artifactId>
<scope>test</scope>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.persistence.rrd</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-mock</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?xml version="1.0"?>
<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.opennms</groupId>
<artifactId>opennms-integrations</artifactId>
<version>27.0.5</version>
</parent>
<artifactId>opennms-R</artifactId>
<name>OpenNMS :: Integrations :: R Interface</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>
</instructions>
</configuration>
</plugin>
</plugins>
</build>

<dependencies>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-exec</artifactId>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-csv</artifactId>
<version>${commonsCsvVersion}</version>
</dependency>
<dependency>
<groupId>org.freemarker</groupId>
<artifactId>freemarker</artifactId>
<version>${freemarkerVersion}</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
</dependency>
</dependencies>

<pluginRepositories>
<pluginRepository>
<snapshots><enabled>false</enabled></snapshots>
<releases><enabled>true</enabled></releases>
<id>opennms-repo</id>
<name>OpenNMS Repository</name>
<url>http://maven.opennms.org/content/groups/opennms.org-release</url>
</pluginRepository>
</pluginRepositories>

<repositories>
<repository>
<snapshots><enabled>false</enabled></snapshots>
<releases><enabled>true</enabled></releases>
<id>opennms-repo</id>
<name>OpenNMS Repository</name>
<url>http://maven.opennms.org/content/groups/opennms.org-release</url>
</repository>
</repositories>

</project>
<?xml version="1.0"?>
<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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>opennms-integrations</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>opennms-dns-provisioning-adapter</artifactId>
<name>OpenNMS :: Integrations :: Provisioning Adaptor :: DNS</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>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-provision-api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>dnsjava-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.sysprops</artifactId>
<version>${project.version}</version>
</dependency>
<!-- test dependencies -->
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.db</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.dns</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.http</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.services</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-mock</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-services</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrd-jrobin</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jrrd2-dependencies</artifactId>
<scope>test</scope>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrdtool-api</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.tests</groupId>
<artifactId>org.opennms.tests.mock-elements</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?xml version="1.0"?>
<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.opennms</groupId>
<artifactId>opennms-integrations</artifactId>
<version>27.0.5</version>
</parent>
<!-- the name must alphabetically come before jasperreports jar -->
<artifactId>jasper-extensions</artifactId>
<name>OpenNMS :: Integrations :: Jasper Extensions</name>
<url>http://maven.apache.org</url>
<packaging>bundle</packaging>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<instructions>
<Bundle-RequiredExecutionEnvironment>JavaSE-1.6</Bundle-
RequiredExecutionEnvironment>
<Bundle-SymbolicName>${project.groupId}.${project.artifactId}</Bundle-
SymbolicName>
<Bundle-Version>${project.version}</Bundle-Version>
</instructions>
</configuration>
</plugin>
<!-- We create a key for 'localhost' for test purposes -->
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>keytool-maven-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<goals>
<goal>generateKeyPair</goal>
</goals>
<phase>generate-test-resources</phase>
</execution>
</executions>
<configuration>
<workingDirectory>${project.build.directory}</workingDirectory>
<skipIfExist>true</skipIfExist>
<alias>localhost</alias>
<keysize>1024</keysize>
<keyalg>DSA</keyalg>
<dname>CN=localhost, OU=Measurement API Wire Mock, O=The OpenNMS Group,
C=US</dname>
<keystore>${project.build.directory}/test-keystore.jks</keystore>
<storepass>password</storepass>
<validity>2</validity>
</configuration>
</plugin>
</plugins>
<pluginManagement>
<plugins>
<!--This plugin's configuration is used to store Eclipse m2e settings only.
It has no influence on the Maven build itself.-->
<plugin>
<groupId>org.eclipse.m2e</groupId>
<artifactId>lifecycle-mapping</artifactId>
<version>1.0.0</version>
<configuration>
<lifecycleMappingMetadata>
<pluginExecutions>
<pluginExecution>
<pluginExecutionFilter>
<groupId>org.codehaus.mojo</groupId>
<artifactId>keytool-maven-plugin</artifactId>
<versionRange>[1.5,)</versionRange>
<goals><goal>generateKeyPair</goal></goals>
</pluginExecutionFilter>
<action><ignore></ignore></action>
</pluginExecution>
</pluginExecutions>
</lifecycleMappingMetadata>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
<dependencies>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jasper-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.measurements</groupId>
<artifactId>org.opennms.features.measurements.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.reporting</groupId>
<artifactId>jasper-reports-filter</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.spring</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.xml</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.endpoints.grafana</groupId>
<artifactId>org.opennms.features.endpoints.grafana.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.endpoints.grafana</groupId>
<artifactId>org.opennms.features.endpoints.grafana.client</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>${gsonVersion}</version>
</dependency>

<!-- Test dependencies -->


<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-csv</artifactId>
<version>${commonsCsvVersion}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest</artifactId>
<version>2.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.github.tomakehurst</groupId>
<artifactId>wiremock-jre8</artifactId>
<version>2.23.2</version>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.lib</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.measurements</groupId>
<artifactId>org.opennms.features.measurements.impl</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<pluginRepositories>
<pluginRepository>
<snapshots><enabled>false</enabled></snapshots>
<releases><enabled>true</enabled></releases>
<id>opennms-repo</id>
<name>OpenNMS Repository</name>
<url>http://maven.opennms.org/content/groups/opennms.org-release</url>
</pluginRepository>
</pluginRepositories>
<repositories>
<repository>
<snapshots><enabled>false</enabled></snapshots>
<releases><enabled>true</enabled></releases>
<id>opennms-repo</id>
<name>OpenNMS Repository</name>
<url>http://maven.opennms.org/content/groups/opennms.org-release</url>
</repository>
</repositories>
</project>
<?xml version="1.0"?>
<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.opennms</groupId>
<artifactId>opennms-integrations</artifactId>
<version>27.0.5</version>
</parent>
<artifactId>opennms-jasperstudio-extension</artifactId>
<name>OpenNMS Integration for Jaspersoft Studio</name>
<packaging>jar</packaging>
<description>Add this jar to the Jaspersoft Studio build path in order to be
able to execute/debug/create reports for OpenNMS</description>
<build>
<plugins>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<descriptors>
<descriptor>src/assembly/assembly.xml</descriptor>
</descriptors>
<overrideUid>0</overrideUid>
<overrideGid>0</overrideGid>
<tarLongFileMode>posix</tarLongFileMode>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<!--
Transitive dependencies are excluded by default in the fat .jar. Which means
that
for dependencies to be available in the generated -jar-with-dependencies.jar"
file
they must be explicitely listed here.

This .jar is expected to contain all the dependencies required for


JasperStudio to
exercise the Jasper extensions include the Measurement API and Grafana
Renderer integrations.
-->
<dependencies>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>jasper-extensions</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.soa</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.sysprops</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.endpoints.grafana</groupId>
<artifactId>org.opennms.features.endpoints.grafana.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.endpoints.grafana</groupId>
<artifactId>org.opennms.features.endpoints.grafana.client</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>${gsonVersion}</version>
</dependency>
<dependency>
<groupId>com.squareup.okhttp3</groupId>
<artifactId>okhttp</artifactId>
<version>${okhttpVersion}</version>
</dependency>
<dependency>
<groupId>com.squareup.okio</groupId>
<artifactId>okio</artifactId>
<version>${okioVersion}</version>
</dependency>
<dependency>
<groupId>org.apache.servicemix.bundles</groupId>
<artifactId>org.apache.servicemix.bundles.spring-
expression</artifactId>
<version>${springVersion}</version>
</dependency>
<dependency>
<groupId>org.apache.servicemix.bundles</groupId>
<artifactId>org.apache.servicemix.bundles.spring-tx</artifactId>
<version>${springVersion}</version>
</dependency>
<dependency>
<groupId>org.apache.servicemix.bundles</groupId>
<artifactId>org.apache.servicemix.bundles.spring-aop</artifactId>
<version>${springVersion}</version>
</dependency>
<dependency>
<groupId>org.apache.servicemix.bundles</groupId>
<artifactId>org.apache.servicemix.bundles.spring-context</artifactId>
<version>${springVersion}</version>
</dependency>
<dependency>
<groupId>org.apache.servicemix.bundles</groupId>
<artifactId>org.apache.servicemix.bundles.spring-beans</artifactId>
<version>${springVersion}</version>
</dependency>
<dependency>
<groupId>org.apache.servicemix.bundles</groupId>
<artifactId>org.apache.servicemix.bundles.spring-core</artifactId>
<version>${springVersion}</version>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.xml</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.spring</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.eclipse.persistence</groupId>
<artifactId>org.eclipse.persistence.core</artifactId>
<version>${eclipselinkVersion}</version>
</dependency>
<dependency>
<groupId>org.eclipse.persistence</groupId>
<artifactId>org.eclipse.persistence.moxy</artifactId>
<version>${eclipselinkVersion}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-jdk14</artifactId>
<version>${slf4jVersion}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.measurements</groupId>
<artifactId>org.opennms.features.measurements.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</dependency>
</dependencies>
</project>
<?xml version="1.0"?>
<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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>opennms-integrations</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>opennms-puppet-provisioning-adapter</artifactId>
<name>OpenNMS :: Integrations :: Provisioning Adaptor :: Puppet</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>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-provision-api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-dependencies</artifactId>
<type>pom</type>
</dependency>
<!-- test dependencies -->
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrd-jrobin</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jrrd2-dependencies</artifactId>
<scope>test</scope>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrdtool-api</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?xml version="1.0"?>
<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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>opennms-integrations</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>opennms-rancid-provisioning-adapter</artifactId>
<name>OpenNMS :: Integrations :: Provisioning Adapter :: RANCID</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</groupId>
<artifactId>opennms-provision-api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-model</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.events</groupId>
<artifactId>org.opennms.features.events.api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>rancid-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rws</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-dependencies</artifactId>
<type>pom</type>
</dependency>
<!-- test dependencies -->
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-mock</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.daemon</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrd-jrobin</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jrrd2-dependencies</artifactId>
<scope>test</scope>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrdtool-api</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.tests</groupId>
<artifactId>org.opennms.tests.mock-elements</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.db</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.http</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.services</artifactId>
<scope>test</scope>
</dependency>
</dependencies>

<repositories>
<repository>
<snapshots><enabled>false</enabled></snapshots>
<releases><enabled>true</enabled></releases>
<id>opennms-repo</id>
<name>OpenNMS Repository</name>
<url>http://maven.opennms.org/content/groups/opennms.org-release</url>
</repository>
</repositories>

</project>
<?xml version="1.0"?>
<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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>opennms-integrations</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>opennms-reverse-dns-provisioning-adapter</artifactId>
<name>OpenNMS :: Integrations :: Provisioning Adaptor :: Reverse Zone DNS</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</groupId>
<artifactId>opennms-provision-api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>dnsjava-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.sysprops</artifactId>
<version>${project.version}</version>
</dependency>
<!-- test dependencies -->
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrd-jrobin</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jrrd2-dependencies</artifactId>
<scope>test</scope>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrdtool-api</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?xml version="1.0"?>
<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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>opennms-integrations</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>opennms-rws</artifactId>
<name>OpenNMS :: Integrations :: RWS Interface</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</groupId>
<artifactId>opennms-config</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>rancid-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
</dependency>
</dependencies>

<repositories>
<repository>
<snapshots><enabled>false</enabled></snapshots>
<releases><enabled>true</enabled></releases>
<id>opennms-repo</id>
<name>OpenNMS Repository</name>
<url>http://maven.opennms.org/content/groups/opennms.org-release</url>
</repository>
</repositories>

</project>
<?xml version="1.0"?>
<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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>opennms-integrations</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>opennms-snmp-asset-provisioning-adapter</artifactId>
<name>OpenNMS :: Integrations :: Provisioning Adapter :: SNMP Asset</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</groupId>
<artifactId>opennms-provision-api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-model</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.features.events</groupId>
<artifactId>org.opennms.features.events.api</artifactId>
</dependency>
<!-- test dependencies -->
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-mock</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.daemon</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrd-jrobin</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jrrd2-dependencies</artifactId>
<scope>test</scope>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrdtool-api</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.db</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.http</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.services</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.snmp</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?xml version="1.0"?>
<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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>opennms-integrations</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>opennms-snmp-hardware-inventory-provisioning-adapter</artifactId>
<name>OpenNMS :: Integrations :: Provisioning Adapter :: SNMP Hardware
Inventory</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</groupId>
<artifactId>opennms-provision-api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-model</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>snmp-dependencies</artifactId>
<type>pom</type>
</dependency>
<!-- test dependencies -->
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-library</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-mock</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.db</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.snmp</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.services</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-services</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrd-jrobin</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jrrd2-dependencies</artifactId>
<scope>test</scope>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrdtool-api</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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</groupId>
<artifactId>opennms-integrations</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>opennms-vmware</artifactId>
<name>OpenNMS :: Integrations :: VMware Integration</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>
<!-- Don't export any packages, expose services only. -->
<Export-Package></Export-Package>
<Import-Package>
org.eclipse.persistence.internal.jaxb;resolution:=optional,
org.eclipse.persistence.internal.jaxb.many;resolution:=optional,
org.opennms.core.network,
org.opennms.netmgt.collection.adapters,
*
</Import-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>commons-cli</groupId>
<artifactId>commons-cli</artifactId>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.lib</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-config</artifactId>
<scope>compile</scope>
</dependency>
<!--
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-config-utils</artifactId>
<scope>compile</scope>
</dependency>
-->
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-model</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-provision-persistence</artifactId>
<scope>compile</scope>
</dependency>
<!-- VMware Infrastructure API -->
<dependency>
<groupId>com.toastcoders</groupId>
<artifactId>yavijava</artifactId>
<version>6.0.05</version>
<exclusions>
<exclusion>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
</exclusion>
<!--
Lombok is a build dependency and should not leak into our
project.
We exclude it, otherwise it does not compile under Java 9.
Please refer to
https://github.com/rzwitserloot/lombok/issues/1629#issuecomment-376005025 for more
details
-->
<exclusion>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
</exclusion>
</exclusions>
</dependency>

<!-- Attention this is EPL license -->


<dependency>
<groupId>org.sblim.slp</groupId>
<artifactId>sblimSLPClient</artifactId>
<version>1.17</version>
</dependency>
<dependency>
<groupId>org.sblim.wbem</groupId>
<artifactId>sblimCIMClient</artifactId>
<version>1.17</version>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.lib</artifactId>
<scope>test</scope>
</dependency>
<!-- JUnit tests -->
<dependency>
<groupId>org.easymock</groupId>
<artifactId>easymock</artifactId>
</dependency>
<dependency>
<groupId>org.powermock</groupId>
<artifactId>powermock-module-junit4</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.powermock</groupId>
<artifactId>powermock-api-easymock</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrd-jrobin</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jrrd2-dependencies</artifactId>
<scope>test</scope>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrdtool-api</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.test-api</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-requisition-service</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.xml</artifactId>
</dependency>
<dependency>
<groupId>com.jayway.awaitility</groupId>
<artifactId>awaitility</artifactId>
<version>1.7.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-mock</artifactId>
<scope>test</scope>
</dependency>
</dependencies>

<repositories>
<repository>
<snapshots><enabled>false</enabled></snapshots>
<releases><enabled>true</enabled></releases>
<id>opennms-repo</id>
<name>OpenNMS Repository</name>
<url>http://maven.opennms.org/content/groups/opennms.org-release</url>
</repository>
</repositories>

</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>opennms-integrations</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>opennms-vtdxml-collector-handler</artifactId>
<name>OpenNMS XML Collector Handler based on VTD-XML</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.features.collection</groupId>
<artifactId>org.opennms.features.collection.persistence.rrd</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.protocols</groupId>
<artifactId>org.opennms.protocols.xml</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.ximpleware</groupId>
<artifactId>vtd-xml</artifactId>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.easymock</groupId>
<artifactId>easymock</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.collection</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.http</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrd-jrobin</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jrrd2-dependencies</artifactId>
<scope>test</scope>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrdtool-api</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.protocols</groupId>
<artifactId>org.opennms.protocols.xml</artifactId>
<version>${project.version}</version>
<type>test-jar</type>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?xml version="1.0"?>
<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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>opennms-integrations</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>opennms-wsman-asset-provisioning-adapter</artifactId>
<name>OpenNMS :: Integrations :: Provisioning Adapter :: WS-Man Asset</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</groupId>
<artifactId>opennms-provision-api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-model</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.daemon</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.events</groupId>
<artifactId>org.opennms.features.events.api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.wsman</artifactId>
<version>${project.version}</version>
</dependency>
<!-- test dependencies -->
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-mock</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrd-jrobin</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jrrd2-dependencies</artifactId>
<scope>test</scope>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrdtool-api</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.db</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.http</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.services</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.snmp</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.persistence.rrd</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-core</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-library</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<artifactId>opennms</artifactId>
<groupId>org.opennms</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>opennms-integrations</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Integrations</name>
<modules>
<module>opennms-dns-provisioning-adapter</module>
<module>opennms-reverse-dns-provisioning-adapter</module>
<module>opennms-puppet-provisioning-adapter</module>
<module>opennms-R</module>
<module>opennms-rancid-provisioning-adapter</module>
<module>opennms-rws</module>
<module>opennms-snmp-asset-provisioning-adapter</module>
<module>opennms-snmp-hardware-inventory-provisioning-adapter</module>
<module>opennms-wsman-asset-provisioning-adapter</module>
<module>opennms-jasper-extensions</module>
<module>opennms-jasperstudio-extension</module>
<module>opennms-vmware</module>
<module>opennms-vtdxml-collector-handler</module>
</modules>
</project>
<?xml version="1.0"?>
<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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>opennms</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>opennms-ackd</artifactId>
<name>OpenNMS :: Acknowledgements :: Daemon</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>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.daemon</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-javamail-api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-model</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-util</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.events</groupId>
<artifactId>org.opennms.features.events.api</artifactId>
</dependency>
<dependency>
<groupId>javax.mail</groupId>
<artifactId>mail</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.web</artifactId>
<scope>compile</scope>
</dependency>
<!-- test dependencies -->
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-mock</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrd-jrobin</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jrrd2-dependencies</artifactId>
<scope>test</scope>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrdtool-api</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.persistence.rrd</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.db</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.http</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.services</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.easymock</groupId>
<artifactId>easymock</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?xml version="1.0"?>
<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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>opennms-alarms</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>opennms-alarm-api</artifactId>
<name>OpenNMS :: Alarms :: API</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.netmgt.alarmd.api.support.*;version="${project.version}",
org.opennms.netmgt.alarmd.api.*;version="${project.version}"
</Export-Package>
</instructions>
</configuration>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<descriptors>
<descriptor>src/assembly/xsds.xml</descriptor>
</descriptors>
<overrideUid>0</overrideUid>
<overrideGid>0</overrideGid>
<tarLongFileMode>posix</tarLongFileMode>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-model</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao</artifactId>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.xml</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?xml version="1.0"?>
<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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>opennms-alarms</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>opennms-alarm-northbounder-bsf</artifactId>
<name>OpenNMS :: Alarms :: Northbounder :: BSF</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.netmgt.alarmd.northbounder.bsf.*;version="$
{project.version}"</Export-Package>
</instructions>
</configuration>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<descriptors>
<descriptor>src/assembly/xsds.xml</descriptor>
</descriptors>
<overrideUid>0</overrideUid>
<overrideGid>0</overrideGid>
<tarLongFileMode>posix</tarLongFileMode>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-alarm-api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao</artifactId>
</dependency>
<dependency>
<groupId>bsf</groupId>
<artifactId>bsf</artifactId>
</dependency>
<dependency>
<groupId>bsh</groupId>
<artifactId>bsh</artifactId>
</dependency>
<!-- test dependencies -->
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.db</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-mock</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<repositories>
<repository>
<snapshots><enabled>false</enabled></snapshots>
<releases><enabled>true</enabled></releases>
<id>opennms-repo</id>
<name>OpenNMS Repository</name>
<url>http://maven.opennms.org/content/groups/opennms.org-release</url>
</repository>
</repositories>
</project>
<?xml version="1.0"?>
<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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>opennms-alarms</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>opennms-alarmd</artifactId>
<name>OpenNMS :: Alarms :: Daemon</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>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-alarm-api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.daemon</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.sysprops</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-model</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.features.events</groupId>
<artifactId>org.opennms.features.events.api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.events</groupId>
<artifactId>org.opennms.features.events.daemon</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>drools-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>com.swrve</groupId>
<artifactId>rate-limited-logger</artifactId>
</dependency>

<!-- test dependencies -->


<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-services</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrd-jrobin</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jrrd2-dependencies</artifactId>
<scope>test</scope>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrdtool-api</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.db</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.http</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.services</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.tests</groupId>
<artifactId>org.opennms.tests.mock-elements</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-mock</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.jayway.awaitility</groupId>
<artifactId>awaitility</artifactId>
<scope>test</scope>
</dependency>
<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>
</dependencies>
</project>
<?xml version="1.0"?>
<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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>opennms-alarms</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>opennms-alarm-northbounder-drools</artifactId>
<name>OpenNMS :: Alarms :: Northbounder :: Drools</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.netmgt.alarmd.northbounder.drools.*;version="$
{project.version}"</Export-Package>
</instructions>
</configuration>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<descriptors>
<descriptor>src/assembly/xsds.xml</descriptor>
</descriptors>
<overrideUid>0</overrideUid>
<overrideGid>0</overrideGid>
<tarLongFileMode>posix</tarLongFileMode>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-alarm-api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>drools-dependencies</artifactId>
<type>pom</type>
</dependency>
<!-- test dependencies -->
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.db</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.services</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-mock</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrd-jrobin</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.persistence.rrd</artifactId>
<scope>test</scope>
</dependency>

</dependencies>
<repositories>
<repository>
<snapshots><enabled>false</enabled></snapshots>
<releases><enabled>true</enabled></releases>
<id>opennms-repo</id>
<name>OpenNMS Repository</name>
<url>http://maven.opennms.org/content/groups/opennms.org-release</url>
</repository>
</repositories>
</project>
<?xml version="1.0"?>
<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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>opennms-alarms</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>opennms-alarm-northbounder-email</artifactId>
<name>OpenNMS :: Alarms :: Northbounder :: E-Mail</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.netmgt.alarmd.northbounder.email.*;version="$
{project.version}"</Export-Package>
</instructions>
</configuration>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<descriptors>
<descriptor>src/assembly/xsds.xml</descriptor>
</descriptors>
<overrideUid>0</overrideUid>
<overrideGid>0</overrideGid>
<tarLongFileMode>posix</tarLongFileMode>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-alarm-api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-javamail-api</artifactId>
</dependency>
<dependency>
<groupId>commons-pool</groupId>
<artifactId>commons-pool</artifactId>
</dependency>
<!-- test dependencies -->
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-mock</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.db</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.services</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<repositories>
<repository>
<snapshots><enabled>false</enabled></snapshots>
<releases><enabled>true</enabled></releases>
<id>opennms-repo</id>
<name>OpenNMS Repository</name>
<url>http://maven.opennms.org/content/groups/opennms.org-release</url>
</repository>
</repositories>
</project>
<?xml version="1.0"?>
<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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>opennms-alarms</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>opennms-alarm-northbounder-http</artifactId>
<name>OpenNMS :: Alarms :: Northbounder :: HTTP</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.netmgt.alarmd.northbounder.http.*;version="$
{project.version}"</Export-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-alarm-api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.web</artifactId>
</dependency>
<!-- test dependencies -->
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.http</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.xml</artifactId>
<scope>test</scope>
</dependency>
<!--
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<scope>test</scope>
</dependency>
-->
</dependencies>
</project>
<?xml version="1.0"?>
<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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>opennms-alarms</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>opennms-alarm-itests</artifactId>
<name>OpenNMS :: Alarms :: Integration Tests</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>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.alarm</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?xml version="1.0"?>
<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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>opennms-alarms</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>opennms-alarm-northbounder-jms</artifactId>
<name>OpenNMS :: Alarms :: Northbounder :: JMS</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.netmgt.alarmd.northbounder.jms.*;version="$
{project.version}"</Export-Package>
</instructions>
</configuration>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<descriptors>
<descriptor>src/assembly/xsds.xml</descriptor>
</descriptors>
<overrideUid>0</overrideUid>
<overrideGid>0</overrideGid>
<tarLongFileMode>posix</tarLongFileMode>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-alarm-api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jaxb-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>activemq-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-mock</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.http</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.db</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.services</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.xml</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?xml version="1.0"?>
<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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>opennms</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>opennms-alarms</artifactId>
<name>OpenNMS :: Alarms</name>
<packaging>pom</packaging>
<modules>
<module>api</module>
<module>daemon</module>
<module>email-northbounder</module>
<module>http-northbounder</module>
<module>integration-tests</module>
<module>jms-northbounder</module>
<module>syslog-northbounder</module>
<module>snmptrap-northbounder</module>
<module>bsf-northbounder</module>
<module>drools-northbounder</module>
</modules>
</project>
<?xml version="1.0"?>
<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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>opennms-alarms</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>opennms-alarm-northbounder-snmptrap</artifactId>
<name>OpenNMS :: Alarms :: Northbounder :: SNMP Traps</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.netmgt.alarmd.northbounder.snmptrap.*;version="$
{project.version}"</Export-Package>
</instructions>
</configuration>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<descriptors>
<descriptor>src/assembly/xsds.xml</descriptor>
</descriptors>
<overrideUid>0</overrideUid>
<overrideGid>0</overrideGid>
<tarLongFileMode>posix</tarLongFileMode>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-alarm-api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-config</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao</artifactId>
</dependency>
<dependency>
<groupId>commons-pool</groupId>
<artifactId>commons-pool</artifactId>
</dependency>
<!-- test dependencies -->
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-mock</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.snmp</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.db</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.services</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<repositories>
<repository>
<snapshots><enabled>false</enabled></snapshots>
<releases><enabled>true</enabled></releases>
<id>opennms-repo</id>
<name>OpenNMS Repository</name>
<url>http://maven.opennms.org/content/groups/opennms.org-release</url>
</repository>
</repositories>
</project>
<?xml version="1.0"?>
<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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>opennms-alarms</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>opennms-alarm-northbounder-syslog</artifactId>
<name>OpenNMS :: Alarms :: Northbounder :: Syslog</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.netmgt.alarmd.northbounder.syslog.*;version="$
{project.version}"</Export-Package>
</instructions>
</configuration>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<descriptors>
<descriptor>src/assembly/xsds.xml</descriptor>
</descriptors>
<overrideUid>0</overrideUid>
<overrideGid>0</overrideGid>
<tarLongFileMode>posix</tarLongFileMode>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-alarm-api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao</artifactId>
</dependency>
<dependency>
<groupId>org.graylog2</groupId>
<artifactId>syslog4j</artifactId>
<version>0.9.53</version>
<exclusions>
<exclusion>
<groupId>commons-pool</groupId>
<artifactId>commons-pool</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>commons-pool</groupId>
<artifactId>commons-pool</artifactId>
</dependency>
<!-- test dependencies -->
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-mock</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.http</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.db</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.services</artifactId>
<scope>test</scope>
</dependency>
<!--
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<scope>test</scope>
</dependency>
-->
</dependencies>

<repositories>
<repository>
<snapshots><enabled>false</enabled></snapshots>
<releases><enabled>true</enabled></releases>
<id>opennms-repo</id>
<name>OpenNMS Repository</name>
<url>http://maven.opennms.org/content/groups/opennms.org-release</url>
</repository>
</repositories>

</project>
<?xml version="1.0"?>
<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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>org.opennms.assemblies</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.assemblies</groupId>
<artifactId>org.opennms.assemblies.minion</artifactId>
<packaging>jar</packaging>
<name>OpenNMS Minion</name>
<url>http://maven.apache.org</url>
<properties>
<NAME_DISPLAY>Minion</NAME_DISPLAY>
<NAME_LC>minion</NAME_LC>
<INSTPREFIX>/opt/minion</INSTPREFIX>
<RUNAS>root</RUNAS>
<INITDIR>/etc/init.d</INITDIR>
<SYSCONFDIR>/opt/minion/etc</SYSCONFDIR>
<PIDFILE>/opt/minion/data/log/minion.pid</PIDFILE>
</properties>
<build>
<resources>
<resource>
<filtering>true</filtering>
<directory>src/main/filtered</directory>
</resource>
</resources>
<plugins>
<plugin>
<artifactId>maven-deploy-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<configuration>
<encoding>UTF-8</encoding>
<escapeString>\</escapeString>
<delimiters>
<delimiter>@</delimiter>
</delimiters>
<useDefaultDelimiters>false</useDefaultDelimiters>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<id>copy-dependencies</id>
<phase>process-resources</phase>
<goals>
<goal>copy</goal>
</goals>
<configuration>
<outputDirectory>${project.build.directory}</outputDirectory>
<stripVersion>true</stripVersion>
<stripClassifier>true</stripClassifier>
<artifactItems>
<artifactItem>
<groupId>org.opennms.features.scv</groupId>
<artifactId>org.opennms.features.scv.cli</artifactId>
<version>${project.version}</version>
<classifier>jar-with-dependencies</classifier>
<type>jar</type>
<outputDirectory>${project.build.directory}/unpacked/base-
assembly/bin</outputDirectory>
</artifactItem>
</artifactItems>
</configuration>
</execution>
<execution>
<id>unpack-dependencies</id>
<phase>process-resources</phase>
<goals>
<goal>unpack</goal>
</goals>
<configuration>
<outputDirectory>$
{project.build.directory}/unpacked</outputDirectory>
<artifactItems>
<artifactItem>
<groupId>org.opennms.features.container</groupId>
<artifactId>minion</artifactId>
<version>${project.version}</version>
<type>tar.gz</type>
</artifactItem>
<artifactItem>
<groupId>org.opennms.features.minion</groupId>
<artifactId>repository</artifactId>
<version>${project.version}</version>
<classifier>repo</classifier>
<type>tar.gz</type>
<outputDirectory>$
{project.build.directory}/unpacked/repositories/default</outputDirectory>
</artifactItem>
<artifactItem>
<groupId>org.opennms.features.minion</groupId>
<artifactId>core-repository</artifactId>
<version>${project.version}</version>
<classifier>repo</classifier>
<type>tar.gz</type>
<outputDirectory>$
{project.build.directory}/unpacked/repositories/core</outputDirectory>
</artifactItem>
<artifactItem>
<groupId>org.opennms</groupId>
<artifactId>opennms-base-assembly</artifactId>
<version>${project.version}</version>
<classifier>daemon</classifier>
<type>tar.gz</type>
<outputDirectory>${project.build.directory}/unpacked/base-
assembly</outputDirectory>
<includes>bin/_lib.sh,bin/find-java.sh,bin/ensure-user-
ping.sh</includes>
</artifactItem>
</artifactItems>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>net.nicoulaj.maven.plugins</groupId>
<artifactId>checksum-maven-plugin</artifactId>
<executions>
<execution>
<phase>prepare-package</phase>
<goals><goal>files</goal></goals>
</execution>
</executions>
<configuration>
<algorithms><algorithm>SHA-1</algorithm></algorithms>
<fileSets>
<fileSet>
<directory>$
{project.build.directory}/unpacked/repositories</directory>
<includes>
<include>**/*.jar</include>
<include>**/*.pom</include>
<include>**/*.war</include>
<include>**/*.xml</include>
</includes>
</fileSet>
<fileSet>
<directory>${project.build.directory}/unpacked/minion-$
{project.version}</directory>
<includes>
<include>**/*.jar</include>
<include>**/*.pom</include>
<include>**/*.war</include>
<include>**/*.xml</include>
</includes>
</fileSet>
</fileSets>
</configuration>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<descriptors>
<descriptor>src/assembly/minion.xml</descriptor>
</descriptors>
<overrideUid>0</overrideUid>
<overrideGid>0</overrideGid>
<tarLongFileMode>posix</tarLongFileMode>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms.features.container</groupId>
<artifactId>minion</artifactId>
<version>${project.version}</version>
<type>tar.gz</type>
</dependency>
<dependency>
<groupId>org.opennms.features.minion</groupId>
<artifactId>core-repository</artifactId>
<version>${project.version}</version>
<classifier>repo</classifier>
<type>tar.gz</type>
</dependency>
<dependency>
<groupId>org.opennms.features.minion</groupId>
<artifactId>repository</artifactId>
<version>${project.version}</version>
<classifier>repo</classifier>
<type>tar.gz</type>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-base-assembly</artifactId>
<version>${project.version}</version>
<classifier>daemon</classifier>
<type>tar.gz</type>
</dependency>
<dependency>
<groupId>org.opennms.features.scv</groupId>
<artifactId>org.opennms.features.scv.cli</artifactId>
<version>${project.version}</version>
<classifier>jar-with-dependencies</classifier>
</dependency>
</dependencies>
</project>
<?xml version="1.0"?>
<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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>org.opennms.assemblies</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.assemblies</groupId>
<artifactId>mock-snmp-agent-onejar</artifactId>
<packaging>pom</packaging>
<name>OpenNMS Mock SNMP Agent (One Jar)</name>
<build>
<plugins>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
<archive>
<manifest>
<mainClass>org.opennms.mock.snmp.MockSnmpAgent</mainClass>
</manifest>
</archive>
<overrideUid>0</overrideUid>
<overrideGid>0</overrideGid>
<tarLongFileMode>posix</tarLongFileMode>
</configuration>
<executions>
<execution>
<id>make-assembly</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms.tests</groupId>
<artifactId>org.opennms.tests.mock-snmp-agent</artifactId>
<scope>compile</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>opennms</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>org.opennms.assemblies</artifactId>
<packaging>pom</packaging>
<name>OpenNMS Assemblies</name>

<build>
<plugins>
<plugin>
<artifactId>maven-deploy-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
</plugins>
</build>

<modules>
<module>minion</module>
<module>sentinel</module>
<!-- <module>system-report-onejar</module> -->
<module>version</module>
<module>webapp-full</module>
<module>xsds</module>
</modules>

<repositories>
<repository>
<snapshots><enabled>false</enabled></snapshots>
<releases><enabled>true</enabled></releases>
<id>opennms-repo</id>
<name>OpenNMS Repository</name>
<url>http://maven.opennms.org/content/groups/opennms.org-release</url>
</repository>
</repositories>

</project>
<?xml version="1.0"?>
<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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>org.opennms.assemblies</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.assemblies</groupId>
<artifactId>org.opennms.assemblies.sentinel</artifactId>
<packaging>jar</packaging>
<name>OpenNMS Sentinel</name>
<url>http://maven.apache.org</url>
<properties>
<NAME_DISPLAY>Sentinel</NAME_DISPLAY>
<NAME_LC>sentinel</NAME_LC>
<INSTPREFIX>/opt/sentinel</INSTPREFIX>
<RUNAS>sentinel</RUNAS>
<INITDIR>/etc/init.d</INITDIR>
<SYSCONFDIR>/opt/sentinel/etc</SYSCONFDIR>
<PIDFILE>/opt/sentinel/data/log/sentinel.pid</PIDFILE>
</properties>
<build>
<resources>
<resource>
<filtering>true</filtering>
<directory>src/main/filtered</directory>
</resource>
</resources>
<plugins>
<plugin>
<artifactId>maven-deploy-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<configuration>
<encoding>UTF-8</encoding>
<escapeString>\</escapeString>
<delimiters>
<delimiter>@</delimiter>
</delimiters>
<useDefaultDelimiters>false</useDefaultDelimiters>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<id>copy-dependencies</id>
<phase>process-resources</phase>
<goals>
<goal>copy</goal>
</goals>
<configuration>
<outputDirectory>${project.build.directory}</outputDirectory>
<stripVersion>true</stripVersion>
<stripClassifier>true</stripClassifier>
<artifactItems>
<artifactItem>
<groupId>org.opennms.features.scv</groupId>
<artifactId>org.opennms.features.scv.cli</artifactId>
<version>${project.version}</version>
<classifier>jar-with-dependencies</classifier>
<type>jar</type>
<outputDirectory>${project.build.directory}/unpacked/base-
assembly/bin</outputDirectory>
</artifactItem>
</artifactItems>
</configuration>
</execution>
<execution>
<id>unpack-dependencies</id>
<phase>process-resources</phase>
<goals>
<goal>unpack</goal>
</goals>
<configuration>
<outputDirectory>$
{project.build.directory}/unpacked</outputDirectory>
<artifactItems>
<artifactItem>
<groupId>org.opennms.features.container</groupId>
<artifactId>sentinel</artifactId>
<version>${project.version}</version>
<type>tar.gz</type>
</artifactItem>
<artifactItem>
<groupId>org.opennms.features.sentinel</groupId>
<artifactId>repository</artifactId>
<version>${project.version}</version>
<classifier>repo</classifier>
<type>tar.gz</type>
<outputDirectory>${project.build.directory}/unpacked/sentinel-$
{project.version}/system</outputDirectory>
</artifactItem>
<artifactItem>
<groupId>org.opennms</groupId>
<artifactId>opennms-base-assembly</artifactId>
<version>${project.version}</version>
<classifier>daemon</classifier>
<type>tar.gz</type>
<outputDirectory>${project.build.directory}/unpacked/base-
assembly</outputDirectory>
<includes>bin/_lib.sh,bin/find-java.sh,bin/ensure-user-
ping.sh</includes>
</artifactItem>
</artifactItems>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>net.nicoulaj.maven.plugins</groupId>
<artifactId>checksum-maven-plugin</artifactId>
<executions>
<execution>
<phase>prepare-package</phase>
<goals><goal>files</goal></goals>
</execution>
</executions>
<configuration>
<algorithms><algorithm>SHA-1</algorithm></algorithms>
<fileSets>
<fileSet>
<directory>${project.build.directory}/unpacked/sentinel-$
{project.version}</directory>
<includes>
<include>**/*.jar</include>
<include>**/*.pom</include>
<include>**/*.war</include>
<include>**/*.xml</include>
</includes>
</fileSet>
</fileSets>
</configuration>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<descriptors>
<descriptor>src/assembly/sentinel.xml</descriptor>
</descriptors>
<overrideUid>0</overrideUid>
<overrideGid>0</overrideGid>
<tarLongFileMode>posix</tarLongFileMode>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms.features.container</groupId>
<artifactId>sentinel</artifactId>
<version>${project.version}</version>
<type>tar.gz</type>
</dependency>
<dependency>
<groupId>org.opennms.features.sentinel</groupId>
<artifactId>repository</artifactId>
<version>${project.version}</version>
<classifier>repo</classifier>
<type>tar.gz</type>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-base-assembly</artifactId>
<version>${project.version}</version>
<classifier>daemon</classifier>
<type>tar.gz</type>
</dependency>
</dependencies>
</project>
<?xml version="1.0"?>
<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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>org.opennms.assemblies</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.assemblies</groupId>
<artifactId>org.opennms.assemblies.system-report-onejar</artifactId>
<packaging>jar</packaging>
<name>OpenNMS System Report (One Jar)</name>
<build>
<plugins>
<plugin>
<artifactId>maven-deploy-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
<plugin>
<groupId>org.dstovall</groupId>
<artifactId>onejar-maven-plugin</artifactId>
<configuration>
<mainClass>org.opennms.systemreport.SystemReport</mainClass>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-version</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.system-report</artifactId>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>org.opennms.assemblies</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms</groupId>
<artifactId>opennms-version</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS Version Information</name>
<build>
<resources>
<resource>
<filtering>true</filtering>
<directory>src/main/filtered</directory>
</resource>
</resources>
<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>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
</project>
<?xml version="1.0"?>
<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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>org.opennms.assemblies</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.assemblies</groupId>
<artifactId>org.opennms.assemblies.webapp-full</artifactId>
<packaging>war</packaging>
<name>OpenNMS Web Application (Full)</name>
<url>http://maven.apache.org</url>
<properties>
<build.skip.tarball>false</build.skip.tarball>
</properties>
<build>
<plugins>
<plugin>
<artifactId>maven-deploy-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<configuration>
<archiveClasses>true</archiveClasses>
<webappDirectory>${project.build.directory}/warmerge-
temp</webappDirectory>
<overlays>
<overlay>
<groupId>org.opennms</groupId>
<artifactId>opennms-webapp</artifactId>
</overlay>
<overlay>
<groupId>org.opennms</groupId>
<artifactId>opennms-webapp-rest</artifactId>
<excludes>
<exclude>META-INF/MANIFEST.MF</exclude>
<exclude>WEB-INF/web.xml</exclude>
<!-- We can exclude the svclayer context because all of its
services are also defined in the main webapp -->
<exclude>WEB-INF/applicationContext-svclayer.xml</exclude>
</excludes>
</overlay>
</overlays>
</configuration>
</plugin>
<plugin>
<groupId>org.opennms.maven.plugins</groupId>
<artifactId>opennms-warmerge-plugin</artifactId>
<version>0.5</version>
<executions>
<execution>
<goals>
<goal>warmerge</goal>
</goals>
</execution>
</executions>
<configuration>
<webappDirectory>${project.build.directory}/warmerge-
temp</webappDirectory>
<primaryWar>org.opennms:opennms-webapp</primaryWar>
</configuration>
</plugin>
<plugin>
<artifactId>maven-clean-plugin</artifactId>
<executions>
<execution>
<id>cleanup-after-integration-tests</id>
<phase>post-integration-test</phase>
<goals>
<goal>clean</goal>
</goals>
<configuration>
<excludeDefaultDirectories>true</excludeDefaultDirectories>
<filesets>
<fileset>
<directory>${project.build.directory}/warmerge-temp</directory>
</fileset>
</filesets>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>

<profiles>
<profile>
<id>enable.tarball</id>
<activation>
<property>
<name>build.skip.tarball</name>
<value>!true</value>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<phase>generate-resources</phase>
<goals><goal>copy</goal></goals>
<configuration>
<artifactItems>
<artifactItem>
<groupId>org.opennms</groupId>
<artifactId>opennms</artifactId>
<version>${project.version}</version>
<type>tar.gz</type>
<classifier>source</classifier>
</artifactItem>
</artifactItems>
<outputDirectory>${project.build.directory}/warmerge-
temp/source</outputDirectory>
<overWriteReleases>false</overWriteReleases>
<overWriteSnapshots>true</overWriteSnapshots>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>

<dependencies>
<dependency>
<groupId>org.opennms.features.bsm</groupId>
<artifactId>org.opennms.features.bsm.rest.api</artifactId>
<version>${project.version}</version>
<exclusions>
<exclusion>
<groupId>*</groupId>
<artifactId>*</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.rest-provider</artifactId>
<version>${project.version}</version>
<exclusions>
<exclusion>
<groupId>*</groupId>
<artifactId>*</artifactId>
</exclusion>
</exclusions>
</dependency>
<!-- The bsm.rest.api uses org.reflections, manually copy it to the web app -->
<dependency>
<groupId>org.reflections</groupId>
<artifactId>reflections</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.bsm</groupId>
<artifactId>org.opennms.features.bsm.rest.impl</artifactId>
<version>${project.version}</version>
<exclusions>
<exclusion>
<groupId>*</groupId>
<artifactId>*</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.opennms.features.geolocation</groupId>
<artifactId>org.opennms.features.geolocation.rest</artifactId>
<version>${project.version}</version>
<exclusions>
<exclusion>
<groupId>*</groupId>
<artifactId>*</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.opennms.features.status</groupId>
<artifactId>org.opennms.features.status.rest</artifactId>
<version>${project.version}</version>
<exclusions>
<exclusion>
<groupId>*</groupId>
<artifactId>*</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.opennms.container</groupId>
<artifactId>org.opennms.container.servlet</artifactId>
<type>war</type>
<scope>runtime</scope>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-webapp-rest</artifactId>
<version>${project.version}</version>
<type>war</type>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-webapp</artifactId>
<type>war</type>
<scope>runtime</scope>
</dependency>
</dependencies>

<pluginRepositories>
<pluginRepository>
<snapshots><enabled>false</enabled></snapshots>
<releases><enabled>true</enabled></releases>
<id>opennms-repo</id>
<name>OpenNMS Repository</name>
<url>http://maven.opennms.org/content/groups/opennms.org-release</url>
</pluginRepository>
</pluginRepositories>

</project>
<?xml version="1.0"?>
<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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>org.opennms.assemblies</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.assemblies</groupId>
<artifactId>org.opennms.assemblies.xsds</artifactId>
<packaging>pom</packaging>
<name>OpenNMS Schema Definitions</name>
<build>
<plugins>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<descriptors>
<descriptor>src/assembly/xsds.xml</descriptor>
</descriptors>
<overrideUid>0</overrideUid>
<overrideGid>0</overrideGid>
<tarLongFileMode>posix</tarLongFileMode>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.db</artifactId>
<version>${project.version}</version>
<classifier>xsds</classifier>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.soa</artifactId>
<version>${project.version}</version>
<classifier>xsds</classifier>
</dependency>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.jdbc-collector</artifactId>
<version>${project.version}</version>
<classifier>xsds</classifier>
</dependency>
<dependency>
<groupId>org.opennms.features.bsm</groupId>
<artifactId>org.opennms.features.bsm.rest.api</artifactId>
<version>${project.version}</version>
<classifier>xsds</classifier>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-config-jaxb</artifactId>
<version>${project.version}</version>
<classifier>xsds</classifier>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-config-model</artifactId>
<version>${project.version}</version>
<classifier>xsds</classifier>
</dependency>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.juniper-tca-collector</artifactId>
<version>${project.version}</version>
<classifier>xsds</classifier>
</dependency>
<dependency>
<groupId>org.opennms.features.reporting</groupId>
<artifactId>org.opennms.features.reporting.availability</artifactId>
<version>${project.version}</version>
<classifier>xsds</classifier>
</dependency>
<dependency>
<groupId>org.opennms.features.reporting</groupId>
<artifactId>org.opennms.features.reporting.model</artifactId>
<version>${project.version}</version>
<classifier>xsds</classifier>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>drools-correlation-engine</artifactId>
<version>${project.version}</version>
<classifier>xsds</classifier>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-model</artifactId>
<version>${project.version}</version>
<classifier>xsds</classifier>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-provision-persistence</artifactId>
<version>${project.version}</version>
<classifier>xsds</classifier>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-reporting</artifactId>
<version>${project.version}</version>
<classifier>xsds</classifier>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-webapp</artifactId>
<version>${project.version}</version>
<classifier>xsds</classifier>
</dependency>
<dependency>
<groupId>org.opennms.protocols</groupId>
<artifactId>org.opennms.protocols.nsclient</artifactId>
<version>${project.version}</version>
<classifier>xsds</classifier>
</dependency>
<dependency>
<groupId>org.opennms.protocols</groupId>
<artifactId>org.opennms.protocols.xml</artifactId>
<version>${project.version}</version>
<classifier>xsds</classifier>
</dependency>
<dependency>
<groupId>org.opennms.protocols</groupId>
<artifactId>org.opennms.protocols.xmp</artifactId>
<version>${project.version}</version>
<classifier>xsds</classifier>
</dependency>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.ifttt</artifactId>
<version>${project.version}</version>
<classifier>xsds</classifier>
</dependency>
<dependency>
<groupId>org.opennms.features.telemetry.config</groupId>
<artifactId>org.opennms.features.telemetry.config.jaxb</artifactId>
<version>${project.version}</version>
<classifier>xsds</classifier>
</dependency>
<dependency>
<groupId>org.opennms.features.enlinkd</groupId>
<artifactId>org.opennms.features.enlinkd.config</artifactId>
<version>${project.version}</version>
<classifier>xsds</classifier>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-alarm-api</artifactId>
<version>${project.version}</version>
<classifier>xsds</classifier>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-alarm-northbounder-bsf</artifactId>
<version>${project.version}</version>
<classifier>xsds</classifier>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-alarm-northbounder-drools</artifactId>
<version>${project.version}</version>
<classifier>xsds</classifier>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-alarm-northbounder-email</artifactId>
<version>${project.version}</version>
<classifier>xsds</classifier>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-alarm-northbounder-syslog</artifactId>
<version>${project.version}</version>
<classifier>xsds</classifier>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-alarm-northbounder-snmptrap</artifactId>
<version>${project.version}</version>
<classifier>xsds</classifier>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-alarm-northbounder-jms</artifactId>
<version>${project.version}</version>
<classifier>xsds</classifier>
</dependency>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.wsman</artifactId>
<version>${project.version}</version>
<classifier>xsds</classifier>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<artifactId>opennms</artifactId>
<groupId>org.opennms</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>opennms-asterisk</artifactId>
<name>OpenNMS Asterisk PBX Support</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.netmgt.asterisk.agi.*;version="${project.version}",
org.opennms.netmgt.asterisk.utils.*;version="${project.version}",
org.opennms.netmgt.notifd.asterisk.*;version="${project.version}"
</Export-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.daemon</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-config</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-model</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-services</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.sysprops</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>commons-cli</groupId>
<artifactId>commons-cli</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>asterisk-dependencies</artifactId>
<scope>compile</scope>
<type>pom</type>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.easymock</groupId>
<artifactId>easymock</artifactId>
<scope>test</scope>
</dependency>
</dependencies>

<repositories>
<repository>
<snapshots><enabled>false</enabled></snapshots>
<releases><enabled>true</enabled></releases>
<id>opennms-repo</id>
<name>OpenNMS Repository</name>
<url>http://maven.opennms.org/content/groups/opennms.org-release</url>
</repository>
</repositories>

</project>
<?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/maven-v4_0_0.xsd">
<parent>
<artifactId>opennms</artifactId>
<groupId>org.opennms</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>opennms-base-assembly</artifactId>
<packaging>pom</packaging>
<name>OpenNMS Base Assembly</name>
<build>
<resources>
<resource>
<directory>src/main/resources</directory>
</resource>
<resource>
<filtering>true</filtering>
<directory>src/main/filtered</directory>
</resource>
<resource>
<filtering>true</filtering>
<directory>${project.build.directory}/cli</directory>
<excludes>
<exclude>bin/_lib.sh</exclude>
</excludes>
</resource>
<resource>
<filtering>false</filtering>
<directory>${project.build.directory}/cli</directory>
<includes>
<include>bin/_lib.sh</include>
</includes>
</resource>
</resources>
<plugins>
<plugin>
<artifactId>maven-deploy-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<id>unpack-cli-tools</id>
<phase>process-resources</phase>
<goals>
<goal>unpack</goal>
</goals>
<configuration>
<outputDirectory>${project.build.directory}/cli</outputDirectory>
<artifactItems>
<artifactItem>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.cli</artifactId>
<version>${project.version}</version>
<excludes>META-INF,META-INF/**/*</excludes>
</artifactItem>
</artifactItems>
</configuration>
</execution>
<execution>
<id>unpack-cli-tests</id>
<phase>process-resources</phase>
<goals>
<goal>unpack</goal>
</goals>
<configuration>
<outputDirectory>${project.build.directory}/shunit</outputDirectory>
<artifactItems>
<artifactItem>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.cli</artifactId>
<version>${project.version}</version>
<classifier>shunit</classifier>
<type>tar.gz</type>
</artifactItem>
</artifactItems>
</configuration>
</execution>
<execution>
<id>copy-jmx-config-generator</id>
<phase>process-resources</phase>
<goals><goal>copy</goal></goals>
<configuration>
<artifactItems>
<artifactItem>
<groupId>org.opennms.features</groupId>
<artifactId>jmxconfiggenerator</artifactId>
<type>jar</type>
<classifier>onejar</classifier>
<destFileName>opennms_jmx_config_generator.jar</destFileName>
<outputDirectory>${project.build.directory}/jmx</outputDirectory>
</artifactItem>
<artifactItem>
<groupId>org.opennms</groupId>
<artifactId>opennms-jasperstudio-extension</artifactId>
<type>jar</type>
<classifier>jar-with-dependencies</classifier>
<outputDirectory>${project.build.directory}/jasperstudio-
extension</outputDirectory>
</artifactItem>
</artifactItems>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<descriptors>
<descriptor>src/assembly/daemon.xml</descriptor>
<descriptor>src/assembly/log4j2.xml</descriptor>
</descriptors>
<overrideUid>0</overrideUid>
<overrideGid>0</overrideGid>
<tarLongFileMode>posix</tarLongFileMode>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>jasperreports-maven-plugin</artifactId>
<version>${jasperreportsMavenPluginVersion}</version>
<executions>
<execution>
<phase>compile</phase>
<goals>
<goal>compile-reports</goal>
</goals>
</execution>
</executions>
<configuration>
<sourceDirectory>${project.build.outputDirectory}/etc/report-
templates</sourceDirectory>
<outputDirectory>${project.build.directory}/jasper</outputDirectory>
<xmlValidation>true</xmlValidation>
<forceCompile>false</forceCompile>
<additionalProperties>

<net.sf.jasperreports.query.executer.factory.measurement>org.opennms.netmgt.jasper.
measurement.MeasurementExecutorFactory</net.sf.jasperreports.query.executer.factory
.measurement>
</additionalProperties>
</configuration>
<dependencies>
<dependency>
<groupId>net.sf.jasperreports</groupId>
<artifactId>jasperreports</artifactId>
<version>${jasperreportsVersion}</version>
<exclusions>
<exclusion>
<groupId>eclipse</groupId>
<artifactId>jdtcore</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>xerces</groupId>
<artifactId>xercesImpl</artifactId>
<version>${xercesVersion}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>jasper-extensions</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<version>${postgresqlVersion}</version>
</dependency>
</dependencies>
</plugin>
<plugin>
<artifactId>maven-resources-plugin</artifactId>
<executions>
<execution>
<phase>process-resources</phase>
<goals>
<goal>resources</goal>
</goals>
</execution>
</executions>
<configuration>
<encoding>UTF-8</encoding>
<escapeString>\</escapeString>
</configuration>
</plugin>
</plugins>
</build>

<profiles>
<profile>
<activation>
<os><family>!windows</family></os>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.6.0</version>
<executions>
<execution>
<id>shell script tests</id>
<phase>test</phase>
<goals><goal>exec</goal></goals>
<configuration>
<executable>${project.build.directory}/shunit/run-
tests.sh</executable>
<arguments>
<argument>${project.basedir}/src/test/shell</argument>
</arguments>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>

<dependencies>
<!-- Dependencies to put into the endorsed classpath -->

<!-- We don't need the JAXB 2.2 API because Java 8 already has it -->
<!-- And Apache Karaf puts it into the endorsed directory anyway ;) -->
<!--
<dependency>
<groupId>org.apache.servicemix.specs</groupId>
<artifactId>org.apache.servicemix.specs.jaxb-api-2.2</artifactId>
<version>2.4.0</version>
</dependency>
-->
<dependency>
<groupId>org.apache.servicemix.bundles</groupId>
<artifactId>org.apache.servicemix.bundles.jaxb-impl</artifactId>
<!--
ActiveMQ 5.12 updated their JAXB dependency past the version
that is included with... pretty much any JVM so we have to add the
updated version to the endorsed classpath.
-->
<version>2.2.11_1</version>
</dependency>

<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-ackd</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-alarmd</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-alarm-northbounder-email</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-alarm-northbounder-syslog</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-alarm-northbounder-snmptrap</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-alarm-northbounder-bsf</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-alarm-northbounder-drools</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-alarm-northbounder-jms</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-correlator</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>drools-correlation-engine</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-install</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-bootstrap</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-config-tester</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-icmp-api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-icmp-jni</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-icmp-jni6</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-icmp-best</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-icmp-jna</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>org.opennms.icmp.proxy.rpc-impl</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-reportd</artifactId>
</dependency>
<!-- just here to be able to unpack it into the assembly tarball -->
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.cli</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.upgrade</artifactId>
</dependency>
<!-- begin provisiond dependencies -->
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-provision-api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-provision-geolocation</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-provision-persistence</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-requisition-service</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-provisiond</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-detector-bsf</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-detectorclient-rpc</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-detector-datagram</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-detector-dhcp</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-detector-generic</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-detector-jdbc</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-detector-jmx</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-detector-jms</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-detector-lineoriented</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-detector-rdns-lookup</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-detector-simple</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-detector-ssh</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-detector-web</artifactId>
</dependency>
<!-- end provisiond dependencies -->
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-jetty</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jstl-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>opennms-integration-rt</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>opennms-integration-otrs</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>opennms-integration-otrs-31</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>opennms-integration-remedy</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-reporting</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrd-model</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrd-jrobin</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jrrd2-dependencies</artifactId>
<scope>test</scope>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrd-tcp</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrdtool-api</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.persistence.tcp</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.persistence.osgi</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>snmp-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-wmi</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-vmware</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-asterisk</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.events</groupId>
<artifactId>org.opennms.features.events.daemon</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.events</groupId>
<artifactId>org.opennms.features.events.syslog</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.events</groupId>
<artifactId>org.opennms.features.events.traps</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.minion</groupId>
<artifactId>org.opennms.features.minion.status</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.minion.heartbeat</groupId>
<artifactId>org.opennms.features.minion.heartbeat.consumer</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.notifications</groupId>
<artifactId>org.opennms.features.notifications.ticket-strategy</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.system-report</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.jdbc-collector</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.prometheus-collector</artifactId>
<version>${project.version}</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.wsman</artifactId>
<version>${project.version}</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.poller</groupId>
<artifactId>org.opennms.features.poller.client-rpc</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-services</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.ticketing</groupId>
<artifactId>org.opennms.features.ticketing.api</artifactId>
<version>${project.version}</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.ticketing</groupId>
<artifactId>org.opennms.features.ticketing.daemon</artifactId>
<version>${project.version}</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.ticketing</groupId>
<artifactId>org.opennms.features.ticketing.drools-integration</artifactId>
<version>${project.version}</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>newts-repository-converter</artifactId>
<version>${project.version}</version>
</dependency>
<!--
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.access-point-monitor</artifactId>
<version>${project.version}</version>
<scope>compile</scope>
</dependency>
-->
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.logging</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.soa</artifactId>
</dependency>
<!-- webapp dependencies -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>log4j-over-slf4j</artifactId>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-api</artifactId>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-slf4j-impl</artifactId>
</dependency>
<dependency>
<groupId>commons-beanutils</groupId>
<artifactId>commons-beanutils</artifactId>
</dependency>
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
</dependency>
<dependency>
<groupId>commons-collections</groupId>
<artifactId>commons-collections</artifactId>
</dependency>
<dependency>
<groupId>commons-configuration</groupId>
<artifactId>commons-configuration</artifactId>
<exclusions>
<exclusion>
<groupId>commons-beanutils</groupId>
<artifactId>commons-beanutils-core</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
</dependency>
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</dependency>
<dependency>
<groupId>geoGoogle</groupId>
<artifactId>geoGoogle</artifactId>
</dependency>
<dependency>
<groupId>net.sf.json-lib</groupId>
<artifactId>json-lib</artifactId>
<classifier>jdk15</classifier>
<exclusions>
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>opensymphony</groupId>
<artifactId>ognl</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-config</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-web-dependencies</artifactId>
<version>${project.version}</version>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jaxb-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-web-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.features.status</groupId>
<artifactId>org.opennms.features.status.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.geolocation</groupId>
<artifactId>org.opennms.features.geolocation.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.collectors</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.client-rpc</artifactId>
</dependency>

<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.instrumentationLogReader</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.reporting</groupId>
<artifactId>org.opennms.features.reporting.core</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.reporting</groupId>
<artifactId>org.opennms.features.reporting.api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.reporting</groupId>
<artifactId>org.opennms.features.reporting.availability</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.reporting</groupId>
<artifactId>org.opennms.features.reporting.repository</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.reporting</groupId>
<artifactId>org.opennms.features.reporting.model</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.reporting</groupId>
<artifactId>org.opennms.features.reporting.dao</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.reporting</groupId>
<artifactId>org.opennms.features.reporting.sdo</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.reporting</groupId>
<artifactId>org.opennms.features.reporting.jasper-reports</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.springframework-security</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.measurements</groupId>
<artifactId>org.opennms.features.measurements.rest</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.rest</groupId>
<artifactId>org.opennms.features.rest.common</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.bsm</groupId>
<artifactId>org.opennms.features.bsm.persistence.impl</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.bsm</groupId>
<artifactId>org.opennms.features.bsm.service.impl</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.bsm</groupId>
<artifactId>org.opennms.features.bsm.daemon</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.flows.classification.persistence</groupId>

<artifactId>org.opennms.features.flows.classification.persistence.impl</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.graph.dao</groupId>
<artifactId>org.opennms.features.graph.dao.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.graph.dao</groupId>
<artifactId>org.opennms.features.graph.dao.impl</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.endpoints.grafana.persistence</groupId>

<artifactId>org.opennms.features.endpoints.grafana.persistence.impl</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.timeformat</groupId>
<artifactId>org.opennms.features.timeformat.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.timeformat</groupId>
<artifactId>org.opennms.features.timeformat.impl</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.newts</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.timeseries</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.timeseries-evaluate</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.topology</groupId>
<artifactId>org.opennms.features.topology.persistence.impl</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.rpc</groupId>
<artifactId>org.opennms.core.ipc.rpc.jms-impl</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.rpc</groupId>
<artifactId>org.opennms.core.ipc.rpc.kafka</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.rpc</groupId>
<artifactId>org.opennms.core.ipc.rpc.aws-sqs-impl</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.sink.camel</groupId>
<artifactId>org.opennms.core.ipc.sink.camel.client</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.sink.camel</groupId>
<artifactId>org.opennms.core.ipc.sink.camel.server</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.sink.kafka</groupId>
<artifactId>org.opennms.core.ipc.sink.kafka.client</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.sink.kafka</groupId>
<artifactId>org.opennms.core.ipc.sink.kafka.server</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.sink.aws.sqs</groupId>
<artifactId>org.opennms.core.ipc.sink.aws.sqs.client</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.sink.aws.sqs</groupId>
<artifactId>org.opennms.core.ipc.sink.aws.sqs.server</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.sink</groupId>
<artifactId>org.opennms.core.ipc.sink.offheap</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.grpc</groupId>
<artifactId>org.opennms.core.ipc.grpc.server</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc</groupId>
<artifactId>org.opennms.core.ipc.osgi</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core.tracing</groupId>
<artifactId>org.opennms.core.tracing.registry</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core.tracing</groupId>
<artifactId>org.opennms.core.tracing.jaeger-tracer</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.distributed</groupId>
<artifactId>org.opennms.features.distributed.opennms-identity</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core.snmp</groupId>
<artifactId>org.opennms.core.snmp.proxy.rpc-impl</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core.snmp</groupId>
<artifactId>org.opennms.core.snmp.profile-mapper</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.apache.xmlgraphics</groupId>
<artifactId>batik-dom</artifactId>
</dependency>
<dependency>
<groupId>org.apache.xmlgraphics</groupId>
<artifactId>batik-svg-dom</artifactId>
</dependency>
<dependency>
<groupId>org.apache.xmlgraphics</groupId>
<artifactId>batik-transcoder</artifactId>
<exclusions>
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.xmlgraphics</groupId>
<artifactId>batik-xml</artifactId>
</dependency>
<dependency>
<groupId>org.apache.xmlgraphics</groupId>
<artifactId>batik-util</artifactId>
</dependency>
<!-- dependencies for XML/JSON collector -->
<dependency>
<groupId>commons-jxpath</groupId>
<artifactId>commons-jxpath</artifactId>
</dependency>
<dependency>
<groupId>org.jsoup</groupId>
<artifactId>jsoup</artifactId>
</dependency>
<!-- this is a runtime dependency we need at install time -->
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>javamail-dependencies</artifactId>
<scope>runtime</scope>
<type>pom</type>
</dependency>
<!-- We depend on our JDBC database driver here instead of in the above
OpenNMS dependencies that use the database because the database is
configured in opennms-database.xml, which is in this project.
We only work on PostgreSQL now, though. -->
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
</dependency>
<dependency>
<groupId>axis</groupId>
<artifactId>axis</artifactId>
<exclusions>
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.request-tracker</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>jasper-extensions</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-jasperstudio-extension</artifactId>
<version>${project.version}</version>
<exclusions>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-expression</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-asm</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-aop</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-beans</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jradius-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.discovery</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.rest</groupId>
<artifactId>org.opennms.features.rest.mapper</artifactId>
<version>${project.version}</version>
</dependency>
<!-- dependency for ReST Elasticsearch integration -->
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpasyncclient-osgi</artifactId>
<exclusions>
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
</exclusions>
</dependency>
<!-- Telemetryd -->
<dependency>
<groupId>org.opennms.features.telemetry.protocols.bmp</groupId>
<artifactId>org.opennms.features.telemetry.protocols.bmp.adapter</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.telemetry.protocols.bmp</groupId>
<artifactId>org.opennms.features.telemetry.protocols.bmp.parser</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.telemetry.protocols.netflow</groupId>

<artifactId>org.opennms.features.telemetry.protocols.netflow.adapter</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.telemetry.protocols.netflow</groupId>

<artifactId>org.opennms.features.telemetry.protocols.netflow.parser</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.telemetry.protocols.sflow</groupId>

<artifactId>org.opennms.features.telemetry.protocols.sflow.parser</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.telemetry.protocols.nxos</groupId>

<artifactId>org.opennms.features.telemetry.protocols.nxos.adapter</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.telemetry.protocols.jti</groupId>
<artifactId>org.opennms.features.telemetry.protocols.jti.adapter</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.telemetry.protocols.graphite</groupId>

<artifactId>org.opennms.features.telemetry.protocols.graphite.adapter</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.telemetry.protocols.openconfig</groupId>

<artifactId>org.opennms.features.telemetry.protocols.openconfig.adapter</artifactId
>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.telemetry.protocols.openconfig</groupId>

<artifactId>org.opennms.features.telemetry.protocols.openconfig.connector</artifact
Id>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.openconfig</groupId>
<artifactId>org.opennms.features.openconfig.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.telemetry</groupId>
<artifactId>org.opennms.features.telemetry.listeners</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.telemetry</groupId>
<artifactId>org.opennms.features.telemetry.daemon</artifactId>
<version>${project.version}</version>
</dependency>
<!-- Topologies -->
<dependency>
<groupId>org.opennms.features.topologies</groupId>
<artifactId>org.opennms.features.topologies.service.impl</artifactId>
<version>${project.version}</version>
</dependency>
<!-- Enlinkd -->
<dependency>
<groupId>org.opennms.features.enlinkd</groupId>
<artifactId>org.opennms.features.enlinkd.persistence.impl</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.enlinkd</groupId>
<artifactId>org.opennms.features.enlinkd.service.impl</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.enlinkd</groupId>
<artifactId>org.opennms.features.enlinkd.daemon</artifactId>
<version>${project.version}</version>
</dependency>
<!-- HTTP Rest-Bridge -->
<dependency>
<groupId>org.opennms.container.bridge</groupId>
<artifactId>org.opennms.container.bridge.api</artifactId>
<version>${project.version}</version>
</dependency>
<!-- JSON KV Store using Postgres -->
<dependency>
<groupId>org.opennms.features.distributed</groupId>
<artifactId>org.opennms.features.distributed.kv-
store.json.postgres</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.karaf-health</artifactId>
<version>${project.version}</version>
</dependency>
<!-- Perspective Poller -->
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.perspectivepoller</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>

<pluginRepositories>
<pluginRepository>
<snapshots><enabled>false</enabled></snapshots>
<releases><enabled>true</enabled></releases>
<id>opennms-repo</id>
<name>OpenNMS Repository</name>
<url>http://maven.opennms.org/content/groups/opennms.org-release</url>
</pluginRepository>
</pluginRepositories>

<repositories>
<repository>
<id>central</id>
<name>Maven Central</name>
<url>https://repo1.maven.org/maven2/</url>
</repository>
<repository>
<id>opennms-repo</id>
<name>OpenNMS Repository</name>
<url>http://maven.opennms.org/content/groups/opennms.org-release</url>
</repository>
<repository>
<id>servicemix</id>
<name>ServiceMix Repository</name>
<url>http://maven.opennms.org/content/groups/servicemix-release/</url>
</repository>
<repository>
<snapshots><enabled>true</enabled></snapshots>
<releases><enabled>false</enabled></releases>
<id>opennms-snapshots</id>
<name>OpenNMS Snapshot Maven Repository</name>
<url>http://maven.opennms.org/content/groups/opennms.org-snapshot</url>
</repository>
<repository>
<snapshots><enabled>true</enabled></snapshots>
<releases><enabled>false</enabled></releases>
<id>sonatype-nexus-snapshots</id>
<name>Sonatype Snapshots</name>
<url>http://maven.opennms.org/content/groups/sonatype.org-snapshot/</url>
</repository>
<repository>
<id>ibiblio</id>
<name>Maven Central (ibiblio)</name>
<url>https://repo1.maven.org/maven2/</url>
</repository>
</repositories>

</project>
<?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/maven-v4_0_0.xsd">
<parent>
<artifactId>opennms</artifactId>
<groupId>org.opennms</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>opennms-bootstrap</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Bootstrap</name>
<build>
<plugins>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifest>
<mainClass>org.opennms.bootstrap.Bootstrap</mainClass>
</manifest>
</archive>
</configuration>
</plugin>
<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.bootstrap.*;version="$
{project.version}"</Export-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<artifactId>opennms</artifactId>
<groupId>org.opennms</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>opennms-config-api</artifactId>
<name>OpenNMS :: Model :: Config DAO :: API</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</groupId>
<artifactId>opennms-config-jaxb</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-config-model</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-model</artifactId>
</dependency>
</dependencies>
</project>
<?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>
<artifactId>org.opennms.config-dao</artifactId>
<groupId>org.opennms</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>org.opennms.config-dao.common-api</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Config DAO :: Common :: API</name>
<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>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
</project>
<?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>
<artifactId>org.opennms.config-dao</artifactId>
<groupId>org.opennms</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>org.opennms.config-dao.common-impl</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Config DAO :: Common :: Impl</name>
<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>
<Import-Package>
<!-- The following are optional as they are only used
for the Onms impls -->
org.opennms.core.xml;resolution:=optional,
org.springframework.core.io;resolution:=optional,
org.opennms.core.spring;resolution:=optional,
*
</Import-Package>
<Export-Package>
org.opennms.netmgt.config.dao.common.impl
</Export-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>org.opennms.config-dao.common-api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-config</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.distributed</groupId>
<artifactId>org.opennms.features.distributed.kv-store.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.github.resilience4j</groupId>
<artifactId>resilience4j-retry</artifactId>
<version>${resilience4jVersion}</version>
</dependency>
<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>com.jayway.awaitility</groupId>
<artifactId>awaitility</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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>
<artifactId>org.opennms.config-dao.poll-outages</artifactId>
<groupId>org.opennms</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>org.opennms.config-dao.poll-outages.api</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Config DAO :: Poll Outages :: API</name>
<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>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-config-model</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>org.opennms.config-dao.common-api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-config</artifactId>
</dependency>
</dependencies>
</project>
<?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>
<artifactId>org.opennms.config-dao.poll-outages</artifactId>
<groupId>org.opennms</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>org.opennms.config-dao.poll-outages.impl</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Config DAO :: Poll Outages :: Impl</name>
<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>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>org.opennms.config-dao.poll-outages.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.distributed</groupId>
<artifactId>org.opennms.features.distributed.kv-store.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>org.opennms.config-dao.common-impl</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</project>
<?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>
<artifactId>org.opennms.config-dao.poll-outages</artifactId>
<groupId>org.opennms</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>

<artifactId>org.opennms.config-dao.poll-outages.itests</artifactId>

<dependencies>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>org.opennms.config-dao.poll-outages.impl</artifactId>
<version>${project.version}</version>
</dependency>
<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.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.lib</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-services</artifactId>
<scope>test</scope>
</dependency>
</dependencies>

</project>
<?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>
<artifactId>org.opennms.config-dao</artifactId>
<groupId>org.opennms</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>org.opennms.config-dao.poll-outages</artifactId>
<packaging>pom</packaging>
<modules>
<module>api</module>
<module>impl</module>
<module>itests</module>
</modules>
</project>
<?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>
<artifactId>opennms</artifactId>
<groupId>org.opennms</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>org.opennms.config-dao</artifactId>
<packaging>pom</packaging>
<modules>
<module>thresholding</module>
<module>poll-outages</module>
<module>common-api</module>
<module>common-impl</module>
</modules>
</project>
<?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>
<artifactId>org.opennms.config-dao.thresholding</artifactId>
<groupId>org.opennms</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>org.opennms.config-dao.thresholding.api</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Config DAO :: Thresholding :: API</name>
<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>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-config-model</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>org.opennms.config-dao.common-api</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</project>
<?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>
<artifactId>org.opennms.config-dao.thresholding</artifactId>
<groupId>org.opennms</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>org.opennms.config-dao.thresholding.impl</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS :: Config DAO :: Thresholding :: Impl</name>
<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>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>org.opennms.config-dao.thresholding.api</artifactId>
<version>${project.version}</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.distributed</groupId>
<artifactId>org.opennms.features.distributed.kv-store.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>org.opennms.config-dao.common-impl</artifactId>
<version>${project.version}</version>
</dependency>
<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.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.db</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.lib</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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>
<artifactId>org.opennms.config-dao</artifactId>
<groupId>org.opennms</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>

<artifactId>org.opennms.config-dao.thresholding</artifactId>
<packaging>pom</packaging>
<modules>
<module>api</module>
<module>impl</module>
</modules>

</project>
<?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/maven-v4_0_0.xsd">
<parent>
<artifactId>opennms</artifactId>
<groupId>org.opennms</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>opennms-config-jaxb</artifactId>
<name>OpenNMS :: Model :: Config :: JAXB</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>
<Import-Package>
org.eclipse.persistence.internal.jaxb;resolution:=optional,
org.eclipse.persistence.internal.jaxb.many;resolution:=optional,
org.opennms.netmgt.collection.adapters,
*
</Import-Package>
</instructions>
</configuration>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<descriptors>
<descriptor>src/assembly/xsds.xml</descriptor>
</descriptors>
<overrideUid>0</overrideUid>
<overrideGid>0</overrideGid>
<tarLongFileMode>posix</tarLongFileMode>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jaxb-dependencies</artifactId>
<type>pom</type>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.snmp</groupId>
<artifactId>org.opennms.core.snmp.api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.lib</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.xml</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.xml</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<artifactId>opennms</artifactId>
<groupId>org.opennms</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>opennms-config-model</artifactId>
<name>OpenNMS :: Model :: Config</name>
<packaging>bundle</packaging>
<build>
<plugins>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<descriptors>
<descriptor>src/assembly/xsds.xml</descriptor>
</descriptors>
<overrideUid>0</overrideUid>
<overrideGid>0</overrideGid>
<tarLongFileMode>posix</tarLongFileMode>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
<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.netmgt.config.ackd.*;version="${project.version}",
org.opennms.netmgt.config.actiond.*;version="${project.version}",
org.opennms.netmgt.config.ami.*;version="${project.version}",
org.opennms.netmgt.config.categories.*;version="${project.version}",
org.opennms.netmgt.config.charts.*;version="${project.version}",
org.opennms.netmgt.config.collectd.*;version="${project.version}",
org.opennms.netmgt.config.collector.*;version="${project.version}",
org.opennms.netmgt.config.databaseReports.*;version="$
{project.version}",
org.opennms.netmgt.config.destinationPaths.*;version="$
{project.version}",
org.opennms.netmgt.config.discovery.*;version="${project.version}",
org.opennms.netmgt.config.eventd.*;version="${project.version}",
org.opennms.netmgt.config.filter.*;version="${project.version}",
org.opennms.netmgt.config.groups.*;version="${project.version}",
org.opennms.netmgt.config.httpdatacollection.*;version="$
{project.version}",
org.opennms.netmgt.config.javamail.*;version="${project.version}",
org.opennms.netmgt.config.kscReports.*;version="${project.version}",
org.opennms.netmgt.config.mailtransporttest.*;version="$
{project.version}",
org.opennms.netmgt.config.map.adapter.*;version="${project.version}",
org.opennms.netmgt.config.microblog.*;version="${project.version}",
org.opennms.netmgt.model.monitoringLocations.*;version="$
{project.version}",
org.opennms.netmgt.config.notifd.*;version="${project.version}",
org.opennms.netmgt.config.notificationCommands.*;version="$
{project.version}",
org.opennms.netmgt.config.notifications.*;version="$
{project.version}",
org.opennms.netmgt.config.outage.*;version="${project.version}",
org.opennms.netmgt.config.pagesequence.*;version="$
{project.version}",
org.opennms.netmgt.config.poller.*;version="${project.version}",
org.opennms.netmgt.config.provisiond.*;version="${project.version}",
org.opennms.netmgt.config.rancid.adapter.*;version="$
{project.version}",
org.opennms.netmgt.config.reportd.*;version="${project.version}",
org.opennms.netmgt.config.reporting.*;version="${project.version}",
org.opennms.netmgt.config.rtc.*;version="${project.version}",
org.opennms.netmgt.config.rws.*;version="${project.version}",
org.opennms.netmgt.config.scriptd.*;version="${project.version}",
org.opennms.netmgt.config.server.*;version="${project.version}",
org.opennms.netmgt.config.service.*;version="${project.version}",
org.opennms.netmgt.config.siteStatusViews.*;version="$
{project.version}",
org.opennms.netmgt.config.snmpAsset.adapter.*;version="$
{project.version}",
org.opennms.netmgt.config.wsmanAsset.adapter.*;version="$
{project.version}",
org.opennms.netmgt.config.snmpinterfacepoller.*;version="$
{project.version}",
org.opennms.netmgt.config.statsd.*;version="${project.version}",
org.opennms.netmgt.config.surveillanceViews.*;version="$
{project.version}",
org.opennms.netmgt.config.syslogd.*;version="${project.version}",
org.opennms.netmgt.config.tags.*;version="${project.version}",
org.opennms.netmgt.config.threshd.*;version="${project.version}",
org.opennms.netmgt.config.tl1d.*;version="${project.version}",
org.opennms.netmgt.config.translator.*;version="${project.version}",
org.opennms.netmgt.config.users.*;version="${project.version}",
org.opennms.netmgt.config.vacuumd.*;version="${project.version}",
org.opennms.netmgt.config.views.*;version="${project.version}",
org.opennms.netmgt.config.viewsdisplay.*;version="$
{project.version}",
org.opennms.netmgt.config.webuiColors.*;version="${project.version}",
org.opennms.netmgt.config.wmi.*;version="${project.version}",
org.opennms.netmgt.eventd.datablock.*;version="${project.version}",
org.opennms.netmgt.xml.eventconf.*;version="${project.version}",
org.opennms.netmgt.xml.rtc.*;version="${project.version}"
</Export-Package>
<Import-Package>
org.eclipse.persistence.internal.jaxb;resolution:=optional,
org.eclipse.persistence.internal.jaxb.many;resolution:=optional,
javassist.util.proxy,
org.hibernate.proxy,
org.opennms.core.network,
org.opennms.netmgt.collection.adapters,
*
</Import-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.xml</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.xml</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.events</groupId>
<artifactId>org.opennms.features.events.api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.api</artifactId>
</dependency>
</dependencies>

<pluginRepositories>
<pluginRepository>
<snapshots><enabled>false</enabled></snapshots>
<releases><enabled>true</enabled></releases>
<id>opennms-repo</id>
<name>OpenNMS Repository</name>
<url>http://maven.opennms.org/content/groups/opennms.org-release</url>
</pluginRepository>
</pluginRepositories>

</project>
<?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/maven-v4_0_0.xsd">
<parent>
<artifactId>opennms</artifactId>
<groupId>org.opennms</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>opennms-config-tester</artifactId>
<name>OpenNMS Configuration Test Utility</name>
<packaging>bundle</packaging>
<build>
<resources>
<resource>
<directory>src/main/resources</directory>
</resource>
</resources>
<testResources>
<testResource>
<directory>src/test/resources</directory>
</testResource>
</testResources>
<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>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<!-- OpenNMS dependencies -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.lib</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-javamail-api</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.db</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.jdbc-collector</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.springframework-security</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>opennms-integration-otrs</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rancid-provisioning-adapter</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>opennms-integration-rt</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-snmp-asset-provisioning-adapter</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-vmware</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-alarm-northbounder-bsf</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-alarm-northbounder-drools</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-alarm-northbounder-email</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-alarm-northbounder-syslog</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-alarm-northbounder-snmptrap</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.telemetry.config</groupId>
<artifactId>org.opennms.features.telemetry.config.jaxb</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>org.opennms.config-dao.poll-outages.impl</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>org.opennms.config-dao.thresholding.impl</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.distributed</groupId>
<artifactId>org.opennms.features.distributed.kv-store.json.noop</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core.jmx</groupId>
<artifactId>org.opennms.core.jmx.api</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.protocols</groupId>
<artifactId>org.opennms.protocols.xml</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.wsman</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.prometheus-collector</artifactId>
<version>${project.version}</version>
</dependency>
<!-- Non-OpenNMS dependencies -->
<dependency>
<groupId>commons-cli</groupId>
<artifactId>commons-cli</artifactId>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<artifactId>opennms</artifactId>
<groupId>org.opennms</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>opennms-config</artifactId>
<name>OpenNMS :: Model :: Config DAO :: Impl</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>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>hibernate-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jasypt-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.config</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.db</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrd-api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-config-api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-config-model</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-model</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.events</groupId>
<artifactId>org.opennms.features.events.api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.poller</groupId>
<artifactId>org.opennms.features.poller.api</artifactId>
</dependency>
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
</dependency>
<dependency>
<groupId>io.dropwizard.metrics</groupId>
<artifactId>metrics-core</artifactId>
<version>${dropwizardMetricsVersion}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>org.opennms.config-dao.thresholding.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.tests</groupId>
<artifactId>org.opennms.tests.mock-elements</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.db</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-library</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.xml</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.googlecode.concurrent-locks</groupId>
<artifactId>concurrent-locks</artifactId>
</dependency>
</dependencies>
</project>
<?xml version="1.0"?>
<!--

This file is part of the OpenNMS(R) Application.

OpenNMS(R) is Copyright (C) 2006 The OpenNMS Group, Inc. All rights reserved.
OpenNMS(R) is a derivative work, containing both original code, included code
and modified
code that was published under the GNU General Public License. Copyrights for
modified
and included code are below.

OpenNMS(R) is a registered trademark of The OpenNMS Group, Inc.


This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,


but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.

For more information contact:


OpenNMS Licensing <license@opennms.org>
http://www.opennms.org/
http://www.opennms.com/

-->
<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/maven-v4_0_0.xsd">
<parent>
<artifactId>opennms-correlation</artifactId>
<groupId>org.opennms</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>drools-correlation-engine</artifactId>
<name>OpenNMS :: Correlation :: Drools Engine</name>
<url>http://maven.apache.org</url>
<packaging>bundle</packaging>
<build>
<plugins>
<plugin>
<artifactId>maven-eclipse-plugin</artifactId>
<configuration>
<additionalBuildcommands>
<buildcommand>org.drools.ide.droolsbuilder</buildcommand>
</additionalBuildcommands>
</configuration>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<descriptors>
<descriptor>src/assembly/xsds.xml</descriptor>
</descriptors>
<overrideUid>0</overrideUid>
<overrideGid>0</overrideGid>
<tarLongFileMode>posix</tarLongFileMode>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
<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>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-correlator</artifactId>
</dependency>
<dependency>
<groupId>bsh</groupId>
<artifactId>bsh</artifactId>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</dependency>
<dependency>
<groupId>io.dropwizard.metrics</groupId>
<artifactId>metrics-core</artifactId>
<version>${dropwizardMetricsVersion}</version>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.db</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.http</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.services</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.xml</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>drools-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.features.events</groupId>
<artifactId>org.opennms.features.events.api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-test-dependencies</artifactId>
<type>pom</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.tests</groupId>
<artifactId>org.opennms.tests.mock-elements</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-mock</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-services</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrd-jrobin</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jrrd2-dependencies</artifactId>
<scope>test</scope>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrdtool-api</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrd-api</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-library</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.jayway.awaitility</groupId>
<artifactId>awaitility</artifactId>
<scope>test</scope>
</dependency>
</dependencies>

<pluginRepositories>
<pluginRepository>
<snapshots><enabled>false</enabled></snapshots>
<releases><enabled>true</enabled></releases>
<id>opennms-repo</id>
<name>OpenNMS Repository</name>
<url>http://maven.opennms.org/content/groups/opennms.org-release</url>
</pluginRepository>
</pluginRepositories>

</project>
<?xml version="1.0"?>
<!--

This file is part of the OpenNMS(R) Application.

OpenNMS(R) is Copyright (C) 2006 The OpenNMS Group, Inc. All rights reserved.
OpenNMS(R) is a derivative work, containing both original code, included code
and modified
code that was published under the GNU General Public License. Copyrights for
modified
and included code are below.

OpenNMS(R) is a registered trademark of The OpenNMS Group, Inc.

This program is free software; you can redistribute it and/or modify


it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,


but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.

For more information contact:


OpenNMS Licensing <license@opennms.org>
http://www.opennms.org/
http://www.opennms.com/

-->
<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/maven-v4_0_0.xsd">
<parent>
<artifactId>opennms-correlation</artifactId>
<groupId>org.opennms</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>opennms-correlator</artifactId>
<name>OpenNMS :: Correlation :: Correlator</name>
<url>http://maven.apache.org</url>
<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>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.http</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.services</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.daemon</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-model</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrd-api</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrd-jrobin</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jrrd2-dependencies</artifactId>
<scope>test</scope>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrdtool-api</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.tests</groupId>
<artifactId>org.opennms.tests.mock-elements</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-mock</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.easymock</groupId>
<artifactId>easymock</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</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>
<exclusions>
<exclusion>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-core</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<artifactId>opennms</artifactId>
<groupId>org.opennms</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>opennms-correlation</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Correlation</name>
<modules>
<module>opennms-correlator</module>
<module>drools-correlation-engine</module>
</modules>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<artifactId>opennms</artifactId>
<groupId>org.opennms</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>opennms-dao-api</artifactId>
<name>OpenNMS :: Model :: DAO :: API</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.core</groupId>
<artifactId>org.opennms.core.criteria</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.soa</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-config-api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-config-model</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-model</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.events</groupId>
<artifactId>org.opennms.features.events.api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.reporting</groupId>
<artifactId>org.opennms.features.reporting.model</artifactId>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<artifactId>opennms</artifactId>
<groupId>org.opennms</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>opennms-dao-mock</artifactId>
<name>OpenNMS :: Model :: DAO :: Mock</name>
<packaging>jar</packaging>
<dependencies>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.events</groupId>
<artifactId>org.opennms.features.events.api</artifactId>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-config</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.db</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.lib</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<artifactId>opennms</artifactId>
<groupId>org.opennms</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>opennms-dao</artifactId>
<name>OpenNMS :: Model :: DAO :: Impl</name>
<packaging>bundle</packaging>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-eclipse-plugin</artifactId>
<configuration>
<additionalBuildcommands>

<buildcommand>org.springframework.ide.eclipse.core.springbuilder</buildcommand>
</additionalBuildcommands>
<additionalProjectnatures>

<projectnature>org.springframework.ide.eclipse.core.springnature</projectnature>
</additionalProjectnatures>
</configuration>
</plugin>
<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>
<!-- OpenNMS dependencies, sorted by groupId, artifactId -->
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.db</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.services</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-config-api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.soa</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>hibernate-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>atomikos-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.xml</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-model</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.criteria</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrd-api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.measurements</groupId>
<artifactId>org.opennms.features.measurements.api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.core</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.enlinkd</groupId>
<artifactId>org.opennms.features.enlinkd.persistence.api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrd-jrobin</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jrrd2-dependencies</artifactId>
<scope>test</scope>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.persistence.rrd</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-dependencies</artifactId>
<type>pom</type>
</dependency>
<!-- for validating marshalled events -->
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-model</artifactId>
<classifier>xsds</classifier>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-util</artifactId>
</dependency>
<!-- Non-OpenNMS dependencies, sorted by groupId, artifactId -->
<dependency>
<groupId>commons-beanutils</groupId>
<artifactId>commons-beanutils</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
</dependency>
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>jcl-over-slf4j</artifactId>
</dependency>
<dependency>
<groupId>org.hibernate.javax.persistence</groupId>
<artifactId>hibernate-jpa-2.0-api</artifactId>
</dependency>
<dependency>
<groupId>org.easymock</groupId>
<artifactId>easymock</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>dnsjava-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-library</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.jayway.awaitility</groupId>
<artifactId>awaitility</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?xml version="1.0"?>
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.opennms.doc</groupId>
<artifactId>parent</artifactId>
<version>27.0.5</version>
</parent>
<artifactId>guide-admin</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Documentation :: Guide Administrator</name>
<description>Guide for OpenNMS Administrators</description>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<skipAssembly>false</skipAssembly>
<overrideUid>0</overrideUid>
<overrideGid>0</overrideGid>
<tarLongFileMode>posix</tarLongFileMode>
</configuration>
</plugin>
<plugin>
<groupId>org.asciidoctor</groupId>
<artifactId>asciidoctor-maven-plugin</artifactId>
<configuration>
<sourceDocumentName>index.adoc</sourceDocumentName>
</configuration>
</plugin>
</plugins>
</build>
</project>
<?xml version="1.0"?>
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.opennms.doc</groupId>
<artifactId>parent</artifactId>
<version>27.0.5</version>
</parent>
<artifactId>guide-all</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Documentation :: All Guides</name>
<description>All OpenNMS Guides for Version ${project.version}</description>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<skipAssembly>false</skipAssembly>
<descriptors>
<descriptor>src/assembly/all.xml</descriptor>
</descriptors>
<overrideUid>0</overrideUid>
<overrideGid>0</overrideGid>
<tarLongFileMode>posix</tarLongFileMode>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms.doc</groupId>
<artifactId>guide-install</artifactId>
<version>${project.version}</version>
<type>zip</type>
<classifier>docs</classifier>
</dependency>
<dependency>
<groupId>org.opennms.doc</groupId>
<artifactId>guide-admin</artifactId>
<version>${project.version}</version>
<type>zip</type>
<classifier>docs</classifier>
</dependency>
<dependency>
<groupId>org.opennms.doc</groupId>
<artifactId>guide-development</artifactId>
<version>${project.version}</version>
<type>zip</type>
<classifier>docs</classifier>
</dependency>
<dependency>
<groupId>org.opennms.doc</groupId>
<artifactId>releasenotes</artifactId>
<version>${project.version}</version>
<type>zip</type>
<classifier>docs</classifier>
</dependency>
</dependencies>
</project>
<?xml version="1.0"?>
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.opennms.doc</groupId>
<artifactId>parent</artifactId>
<version>27.0.5</version>
</parent>
<artifactId>guide-development</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Documentation :: Guide Development</name>
<description>Guide for OpenNMS Developers</description>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<skipAssembly>false</skipAssembly>
<overrideUid>0</overrideUid>
<overrideGid>0</overrideGid>
<tarLongFileMode>posix</tarLongFileMode>
</configuration>
</plugin>
<plugin>
<groupId>org.asciidoctor</groupId>
<artifactId>asciidoctor-maven-plugin</artifactId>
<configuration>
<sourceDocumentName>index.adoc</sourceDocumentName>
</configuration>
</plugin>
</plugins>
</build>
</project>
<?xml version="1.0"?>
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.opennms.doc</groupId>
<artifactId>parent</artifactId>
<version>27.0.5</version>
</parent>
<artifactId>guide-install</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Documentation :: Guide Install</name>
<description>Install guide for OpenNMS</description>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<skipAssembly>false</skipAssembly>
<overrideUid>0</overrideUid>
<overrideGid>0</overrideGid>
<tarLongFileMode>posix</tarLongFileMode>
</configuration>
</plugin>
<plugin>
<groupId>org.asciidoctor</groupId>
<artifactId>asciidoctor-maven-plugin</artifactId>
<configuration>
<sourceDocumentName>index.adoc</sourceDocumentName>
</configuration>
</plugin>
</plugins>
</build>
</project>
<?xml version="1.0"?>
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.opennms</groupId>
<artifactId>opennms</artifactId>
<version>27.0.5</version>
</parent>
<groupId>org.opennms.doc</groupId>
<artifactId>parent</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Documentation</name>
<description>Official documentation</description>
<modules>
<module>guide-install</module>
<module>guide-admin</module>
<module>guide-development</module>
<module>releasenotes</module>
<module>guide-all</module>
</modules>
<properties>
<asciidoc.source.directory>$
{basedir}/src/asciidoc</asciidoc.source.directory>
<asciidoc.output.directory>${basedir}/target/generated-
docs</asciidoc.output.directory>
<asciidoc.images.directory>images</asciidoc.images.directory>
</properties>

<build>
<defaultGoal>process-resources</defaultGoal>
<plugins>
<!-- we need this to copy the images to the generated-docs output
directory,
otherwise images would not be part of the generated-docs -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<executions>
<execution>
<id>copy-resources</id>
<phase>generate-resources</phase>
<goals>
<goal>copy-resources</goal>
</goals>
<configuration>
<outputDirectory>${asciidoc.output.directory}/$
{asciidoc.images.directory}</outputDirectory>
<resources>
<resource>
<directory>${asciidoc.source.directory}/$
{asciidoc.images.directory}</directory>
<filtering>false</filtering>
</resource>
</resources>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.asciidoctor</groupId>
<artifactId>asciidoctor-maven-plugin</artifactId>
<dependencies>
<dependency>
<groupId>org.asciidoctor</groupId>
<artifactId>asciidoctorj-pdf</artifactId>
<version>${asciidoctorjPdfVersion}</version>
</dependency>
<dependency>
<groupId>org.asciidoctor</groupId>
<artifactId>asciidoctorj</artifactId>
<version>${asciidoctorjVersion}</version>
</dependency>
<dependency>
<groupId>org.jruby</groupId>
<artifactId>jruby-complete</artifactId>
<version>${jrubyVersion}</version>
</dependency>
</dependencies>
<executions>
<execution>
<id>output-html</id>
<phase>generate-resources</phase>
<goals>
<goal>process-asciidoc</goal>
</goals>
<configuration>
<sourceHighlighter>prettify</sourceHighlighter>
<backend>html5</backend>
<doctype>book</doctype>
<attributes>
<stylesheet>../../../asciidoctor-
default.css</stylesheet>
</attributes>
</configuration>
</execution>
<execution>
<id>generate-pdf-doc</id>
<phase>generate-resources</phase>
<goals>
<goal>process-asciidoc</goal>
</goals>
<configuration>
<skip>${skipPdfGeneration}</skip>
<backend>pdf</backend>
<doctype>book</doctype>
<!-- WARNING callout bullets don't yet work with
CodeRay -->
<sourceHighlighter>coderay</sourceHighlighter>
<attributes>
<pagenums/>
<toc/>
<idprefix/>
<idseparator>-</idseparator>
<pdf-style>../../../default-theme.yml</pdf-style>
</attributes>
</configuration>
</execution>
</executions>
<configuration>
<headerFooter>true</headerFooter>
<sourceDirectory>${asciidoc.source.directory}</sourceDirectory>
<outputDirectory>${asciidoc.output.directory}</outputDirectory>
<imagesDir>images</imagesDir>
<attributes>
<opennms-product-name>OpenNMS Horizon</opennms-product-
name>
<opennms-version>${project.version}</opennms-version>
<opennms-package-base-name>opennms</opennms-package-base-
name>
<jasperReportsVersion>$
{jasperreportsVersion}</jasperReportsVersion>
</attributes>
</configuration>
</plugin>
</plugins>

<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<id>package</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
<configuration>
<skipAssembly>true</skipAssembly>
<descriptors>
<descriptor>$
{basedir}/../src/assembly/doc.xml</descriptor>
</descriptors>
<overrideUid>0</overrideUid>
<overrideGid>0</overrideGid>
<tarLongFileMode>posix</tarLongFileMode>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>

<pluginRepositories>
<pluginRepository>
<snapshots>
<enabled>false</enabled>
</snapshots>
<releases>
<enabled>true</enabled>
</releases>
<id>opennms-repo</id>
<name>OpenNMS Repository</name>
<url>http://maven.opennms.org/content/groups/opennms.org-release</url>
</pluginRepository>
</pluginRepositories>
</project>
<?xml version="1.0"?>
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.opennms.doc</groupId>
<artifactId>parent</artifactId>
<version>27.0.5</version>
</parent>
<artifactId>releasenotes</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Documentation :: Releasenotes</name>
<description>OpenNMS Releasenotes</description>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<skipAssembly>false</skipAssembly>
<overrideUid>0</overrideUid>
<overrideGid>0</overrideGid>
<tarLongFileMode>posix</tarLongFileMode>
</configuration>
</plugin>
<plugin>
<groupId>org.asciidoctor</groupId>
<artifactId>asciidoctor-maven-plugin</artifactId>
<configuration>
<sourceDocumentName>index.adoc</sourceDocumentName>
</configuration>
</plugin>
</plugins>
</build>
</project>
<?xml version="1.0"?>
<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/maven-v 4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>opennms-enterprise-reporting</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>opennms-reportd</artifactId>
<name>OpenNMS :: Enterprise Reporting :: Daemon</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.core</groupId>
<artifactId>org.opennms.core.tasks</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-config</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.daemon</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-model</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-javamail-api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>quartz-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jasper-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.features.events</groupId>
<artifactId>org.opennms.features.events.api</artifactId>
</dependency>
</dependencies>

<repositories>
<repository>
<snapshots><enabled>false</enabled></snapshots>
<releases><enabled>true</enabled></releases>
<id>opennms-repo</id>
<name>OpenNMS Repository</name>
<url>http://maven.opennms.org/content/groups/opennms.org-release</url>
</repository>
</repositories>

</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>opennms</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>opennms-enterprise-reporting</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Enterprise Reporting</name>
<modules>
<module>opennms-reportd</module>
</modules>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-reportd</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
</project>
<?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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.opennms</groupId>
<artifactId>opennms</artifactId>
<version>27.0.5</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>opennms-full-assembly</artifactId>
<packaging>pom</packaging>
<name>OpenNMS Full Assembly</name>
<properties>
<build.profile>default</build.profile>
<maven.metadata.legacy>true</maven.metadata.legacy>
</properties>
<profiles>
<profile>
<id>default</id>
<activation>
<property>
<name>build.profile</name>
<value>default</value>
</property>
</activation>
<build>
<plugins>
<plugin>
<inherited>false</inherited>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
<configuration>
<descriptors>
<descriptor>src/assembly/full.xml</descriptor>
</descriptors>
<appendAssemblyId>false</appendAssemblyId>
<overrideUid>0</overrideUid>
<overrideGid>0</overrideGid>
<tarLongFileMode>posix</tarLongFileMode>
<outputDirectory>${dist.dir}</outputDirectory>
<finalName>${dist.name}</finalName>
</configuration>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>full</id>
<activation>
<property>
<name>build.profile</name>
<value>full</value>
</property>
</activation>
<build>
<plugins>
<plugin>
<inherited>false</inherited>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
<configuration>
<descriptors>
<descriptor>src/assembly/full.xml</descriptor>
</descriptors>
<appendAssemblyId>false</appendAssemblyId>
<overrideUid>0</overrideUid>
<overrideGid>0</overrideGid>
<tarLongFileMode>posix</tarLongFileMode>
<outputDirectory>${dist.dir}</outputDirectory>
<finalName>${dist.name}</finalName>
</configuration>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>dir</id>
<activation>
<property>
<name>build.profile</name>
<value>dir</value>
</property>
</activation>
<build>
<plugins>
<plugin>
<inherited>false</inherited>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
<configuration>
<descriptors>
<descriptor>src/assembly/fulldir.xml</descriptor>
</descriptors>
<appendAssemblyId>false</appendAssemblyId>
<overrideUid>0</overrideUid>
<overrideGid>0</overrideGid>
<tarLongFileMode>posix</tarLongFileMode>
<outputDirectory>${dist.dir}</outputDirectory>
<finalName>${dist.name}</finalName>
</configuration>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>fulldir</id>
<activation>
<property>
<name>build.profile</name>
<value>fulldir</value>
</property>
</activation>
<build>
<plugins>
<plugin>
<inherited>false</inherited>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
<configuration>
<descriptors>
<descriptor>src/assembly/fulldir.xml</descriptor>
</descriptors>
<appendAssemblyId>false</appendAssemblyId>
<tarLongFileMode>posix</tarLongFileMode>
<outputDirectory>${dist.dir}</outputDirectory>
<finalName>${dist.name}</finalName>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<build>
<plugins>
<!-- Because this is a POM project, we need to explicitly enable test
compilation and execution -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<executions>
<execution>
<phase>test-compile</phase>
<goals>
<goal>testCompile</goal>
</goals>
<configuration>
<source>1.8</source>
<target>1.8</target>
<encoding>UTF-8</encoding>
<optimize>true</optimize>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<!-- Unpack our OpenNMS-modified Karaf container -->
<execution>
<id>unpack-karaf</id>
<phase>process-resources</phase>
<goals>
<goal>unpack</goal>
</goals>
<configuration>
<artifactItems>
<artifactItem>
<groupId>org.opennms.container</groupId>
<artifactId>org.opennms.container.karaf</artifactId>
<version>${project.version}</version>
<type>tar.gz</type>
</artifactItem>
</artifactItems>
</configuration>
</execution>
<!-- Work around bug KARAF-5384, see
org.opennms.core.test.karaf.KarafTestCase -->
<execution>
<id>copy-mina</id>
<phase>process-test-resources</phase>
<goals>
<goal>copy</goal>
</goals>
<configuration>
<artifactItems>
<artifactItem>
<groupId>org.apache.mina</groupId>
<artifactId>mina-core</artifactId>
<version>${minaVersion}</version>
<type>jar</type>
<overWrite>true</overWrite>
</artifactItem>
</artifactItems>
</configuration>
</execution>
<!-- Unpack the minion core repo so that it can be used in integration
tests -->
<execution>
<id>unpack-minion-core-repo</id>
<phase>process-test-resources</phase>
<goals>
<goal>unpack</goal>
</goals>
<configuration>
<outputDirectory>${project.build.directory}/minion-core-
repo</outputDirectory>
<artifactItems>
<artifactItem>
<groupId>org.opennms.features.minion</groupId>
<artifactId>core-repository</artifactId>
<version>${project.version}</version>
<type>tar.gz</type>
<classifier>repo</classifier>
</artifactItem>
</artifactItems>
</configuration>
</execution>
<!-- Unpack the minion default repo so that it can be used in integration
tests -->
<execution>
<id>unpack-minion-default-repo</id>
<phase>process-test-resources</phase>
<goals>
<goal>unpack</goal>
</goals>
<configuration>
<outputDirectory>${project.build.directory}/minion-default-
repo</outputDirectory>
<artifactItems>
<artifactItem>
<groupId>org.opennms.features.minion</groupId>
<artifactId>repository</artifactId>
<version>${project.version}</version>
<type>tar.gz</type>
<classifier>repo</classifier>
</artifactItem>
</artifactItems>
</configuration>
</execution>
<!-- Unpack hawtio -->
<execution>
<id>unpack-hawtio</id>
<phase>process-resources</phase>
<goals>
<goal>unpack</goal>
</goals>
<configuration>
<outputDirectory>${project.build.directory}/hawtio-
webapp/</outputDirectory>
<artifactItems>
<artifactItem>
<groupId>io.hawt</groupId>
<artifactId>hawtio-default</artifactId>
<version>${hawtioVersion}</version>
<type>war</type>
</artifactItem>
</artifactItems>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.karaf.tooling</groupId>
<artifactId>karaf-maven-plugin</artifactId>
<version>${karafVersion}</version>

<executions>
<execution>
<id>features-add-to-repository</id>
<phase>process-resources</phase>
<goals>
<goal>features-add-to-repository</goal>
</goals>
<configuration>
<descriptors>
<!--
All of these feature files need to be added to the
featuresRepositories parameter in the
org.apache.karaf.features.cfg file so that the features are
available to the container.
-->

<!-- Karaf framework features -->


<descriptor>mvn:org.apache.karaf.features/framework/$
{karafVersion}/xml/features</descriptor>
<!-- Karaf standard and Spring features, replaced by our modified
versions -->
<!-- <descriptor>mvn:org.apache.karaf.features/standard/$
{karafVersion}/xml/features</descriptor> -->
<!-- <descriptor>mvn:org.apache.karaf.features/spring/$
{karafVersion}/xml/features</descriptor> -->
<!-- <descriptor>mvn:org.apache.karaf.features/spring-legacy/$
{karafVersion}/xml/features</descriptor> -->
<!-- Pax Exam features -->
<descriptor>mvn:org.ops4j.pax.exam/pax-exam-features/$
{paxExamVersion}/xml</descriptor>
<!-- Pax Web features -->
<descriptor>mvn:org.ops4j.pax.web/pax-web-features/$
{paxWebVersion}/xml/features</descriptor>

<!-- Features for the OpenNMS-modified Karaf container -->


<descriptor>mvn:org.opennms.karaf/opennms/$
{project.version}/xml/standard</descriptor>
<descriptor>mvn:org.opennms.karaf/opennms/$
{project.version}/xml/spring</descriptor>
<descriptor>mvn:org.opennms.karaf/opennms/$
{project.version}/xml/spring-legacy</descriptor>
<!-- OpenNMS product features generated by
container/features/pom.xml -->
<descriptor>mvn:org.opennms.karaf/opennms/$
{project.version}/xml/features</descriptor>

<!-- OpenNMS Minion features generated by


container/features/pom.xml -->
<descriptor>mvn:org.opennms.karaf/opennms/$
{project.version}/xml/minion</descriptor>
</descriptors>
<features>
<!-- Pax Exam feature that is necessary to run the tests -->
<feature>exam</feature>

<!-- Karaf framework features -->


<feature>framework</feature>

<!-- Karaf standard features -->


<feature>aries-blueprint</feature>
<feature>aries-proxy</feature>
<feature>blueprint-web</feature>
<feature>bundle</feature>
<feature>config</feature>
<feature>deployer</feature>
<feature>diagnostic</feature>
<feature>eventadmin</feature>
<feature>feature</feature>
<feature>framework-security</feature>
<feature>felix-httplite</feature>
<feature>http</feature>
<feature>http-whiteboard</feature>
<feature>instance</feature>
<feature>jaas-boot</feature>
<feature>jaas</feature>
<feature>jasypt-encryption</feature>
<!-- TODO: Should we import both versions of Jetty? -->
<feature>jetty/8.1.14.v20131031</feature>
<feature>jetty/9.3.9.v20160517</feature>
<feature>jolokia</feature>
<feature>kar</feature>
<feature>log</feature>
<feature>management</feature>
<feature>minimal</feature>
<feature>obr</feature>
<feature>package</feature>
<!-- Replaced by opennms-bridge-http-service -->
<!-- <feature>pax-http-service</feature> -->
<feature>profile</feature>
<feature>scheduler</feature>
<feature>scr</feature>
<feature>service</feature>
<feature>service-security</feature>
<feature>service-wrapper</feature>
<feature>shell-compat</feature>
<feature>shell</feature>
<feature>ssh</feature>
<feature>standard</feature>
<feature>system</feature>
<feature>war</feature>
<feature>webconsole</feature>
<feature>wrap</feature>
<feature>wrapper</feature>

<!-- Karaf Spring features -->


<feature>spring/3.1.4.RELEASE</feature>
<feature>spring/3.2.18.RELEASE_1</feature>
<feature>spring/4.0.9.RELEASE_1</feature>
<feature>spring-jms/4.0.9.RELEASE_1</feature>
<feature>spring/4.1.9.RELEASE_1</feature>
<feature>spring-jms/4.1.9.RELEASE_1</feature>
<feature>spring/4.2.9.RELEASE_1</feature>
<feature>spring/4.3.14.RELEASE_1</feature>
<feature>spring/${springVersion}</feature>
<feature>spring-aspects/${springVersion}</feature>
<feature>spring-instrument/${springVersion}</feature>
<feature>spring-jdbc/${springVersion}</feature>
<feature>spring-jms/${springVersion}</feature>
<feature>spring-orm/${springVersion}</feature>
<feature>spring-oxm/${springVersion}</feature>
<feature>spring-test/${springVersion}</feature>
<feature>spring-tx/${springVersion}</feature>
<feature>spring-web/${springVersion}</feature>
<feature>spring-web-portlet/${springVersion}</feature>
<feature>spring-websocket/${springVersion}</feature>

<!-- All of the OpenNMS features -->


<feature>activemq-broker</feature>
<feature>aries-blueprint</feature>
<feature>aries-proxy</feature>
<feature>blueprint-web</feature>
<feature>bundle</feature>
<feature>config</feature>
<feature>deployer</feature>
<feature>diagnostic</feature>
<feature>eventadmin</feature>
<feature>feature</feature>
<feature>framework-security</feature>
<feature>felix-httplite</feature>
<feature>http</feature>
<feature>http-whiteboard</feature>
<feature>instance</feature>
<feature>jaas-boot</feature>
<feature>jaas</feature>
<feature>jasypt-encryption</feature>
<feature version="8.1.14.v20131031">jetty</feature>
<feature version="9.3.9.v20160517">jetty</feature>
<!--TODO: Needed?-->
<feature version="9.4.29.v20200521">jetty</feature>
<feature>jolokia</feature>
<feature>kar</feature>
<feature>log</feature>
<feature>management</feature>
<feature>minimal</feature>
<feature>obr</feature>
<feature>package</feature>
<feature>profile</feature>
<feature>scheduler</feature>
<feature>scr</feature>
<feature>service</feature>
<feature>service-security</feature>
<feature>service-wrapper</feature>
<feature>shell-compat</feature>
<feature>shell</feature>
<feature>ssh</feature>
<feature>standard</feature>
<feature>system</feature>
<feature>war</feature>
<feature>webconsole</feature>
<feature>wrap</feature>
<feature>wrapper</feature>
<feature>pax-http</feature>
<feature>atomikos</feature>
<feature>batik</feature>
<feature>c3p0</feature>
<feature>hikari-cp</feature>
<feature>commons-beanutils</feature>
<feature>commons-cli</feature>
<feature>commons-codec</feature>
<feature>commons-collections</feature>
<feature>commons-configuration</feature>
<feature>commons-digester</feature>
<feature>commons-exec</feature>
<feature>commons-io</feature>
<feature>commons-jexl</feature>
<feature>commons-lang</feature>
<feature>commons-net</feature>
<feature>dnsjava</feature>
<feature>dropwizard-metrics</feature>
<feature>fop</feature>
<feature>guava17</feature>
<feature>guava</feature>
<feature>hibernate36</feature>
<feature>hibernate-validator41</feature>
<feature>jaxb</feature>
<feature>jfreechart</feature>
<feature>jolokia</feature>
<feature>jrobin</feature>
<feature>json-lib</feature>
<feature>lmax-disruptor</feature>
<feature>opennms-activemq-pool</feature>
<feature>opennms-activemq-shell</feature>
<feature>opennms-bootstrap</feature>
<feature>opennms-collection-api</feature>
<feature>opennms-collection-commands</feature>
<feature>opennms-collection-persistence-rrd</feature>
<feature>opennms-config-api</feature>
<feature>opennms-config</feature>
<feature>opennms-config-jaxb</feature>
<feature>opennms-core-daemon</feature>
<feature>opennms-core-db</feature>
<feature>opennms-core-ipc-rpc-commands</feature>
<feature>opennms-core-ipc-kafka-shell</feature>
<feature>opennms-core</feature>
<feature>opennms-core-web</feature>
<feature>opennms-dao-api</feature>
<feature>opennms-dao</feature>
<feature>opennms-events-api</feature>
<feature>opennms-events-commands</feature>
<feature>opennms-health</feature>
<feature>opennms-health-rest</feature>
<feature>opennms-icmp-api</feature>
<feature>opennms-icmp-jna</feature>
<feature>opennms-icmp-jni</feature>
<feature>opennms-icmp-jni6</feature>
<feature>opennms-icmp-best</feature>
<feature>opennms-icmp-commands</feature>
<feature>opennms-javamail</feature>
<feature>opennms-kafka-producer</feature>
<feature>opennms-model</feature>
<feature>opennms-measurements-shell</feature>
<feature>opennms-poller-shell</feature>
<feature>opennms-provisioning</feature>
<feature>opennms-provisioning-detectors</feature>
<feature>opennms-provisioning-shell</feature>
<feature>opennms-rrd-api</feature>
<feature>opennms-rrd-jrobin</feature>
<feature>opennms-situation-feedback</feature>
<feature>opennms-snmp</feature>
<feature>opennms-snmp-commands</feature>
<feature>opennms-syslogd</feature>
<feature>opennms-syslogd-listener-javanet</feature>
<feature>opennms-syslogd-listener-camel-netty</feature>
<feature>opennms-trapd</feature>
<feature>jax-rs-connector</feature>
<feature>jax-rs-shell-commands</feature>
<feature>opennms-osgi-core-rest</feature>
<feature>org.json</feature>
<feature>postgresql</feature>
<feature>smack</feature>
<feature>spring-security32</feature>
<feature>twitter4j</feature>
<feature>opennms-jaas-login-module</feature>
<feature>dashlet-alarms</feature>
<feature>dashlet-bsm</feature>
<feature>dashlet-charts</feature>
<feature>dashlet-image</feature>
<feature>dashlet-ksc</feature>
<feature>dashlet-map</feature>
<feature>dashlet-rrd</feature>
<feature>dashlet-rtc</feature>
<feature>dashlet-summary</feature>
<feature>dashlet-surveillance</feature>
<feature>dashlet-topology</feature>
<feature>dashlet-url</feature>
<feature>dashlet-grafana</feature>
<feature>nrtg</feature>
<feature>opennms-amqp-event-forwarder</feature>
<feature>opennms-amqp-event-receiver</feature>
<feature>opennms-amqp-alarm-northbounder</feature>
<feature>opennms-graphml</feature>
<feature>opennms-graphs</feature>
<feature>opennms-graph-provider-persistence-test</feature>
<feature>opennms-topology-runtime-base</feature>
<feature>opennms-topology-runtime-browsers</feature>
<feature>opennms-topology-runtime-linkd</feature>
<feature>opennms-topology-runtime-vmware</feature>
<feature>opennms-topology-runtime-application</feature>
<feature>opennms-topology-runtime-bsm</feature>
<feature>opennms-topology-runtime-graphml</feature>
<feature>opennms-topology-runtime-pathoutage</feature>
<feature>opennms-topology-runtime-asset</feature>
<feature>org.opennms.features.topology.shell</feature>
<feature>opennms-enlinkd-shell</feature>
<feature>vaadin</feature>
<feature>vaadin-dashboard</feature>
<feature>vaadin-jmxconfiggenerator</feature>
<feature>vaadin-node-maps</feature>
<feature>vaadin-snmp-events-and-metrics</feature>
<feature>vaadin-surveillance-views</feature>
<feature>jira-troubleticketer</feature>
<feature>tsrm-troubleticketer</feature>
<feature>datachoices</feature>
<feature>eif-adapter</feature>
<feature>opennms-telemetry-collection</feature>
<feature>opennms-telemetry-bmp</feature>
<feature>opennms-telemetry-jti</feature>
<feature>opennms-telemetry-nxos</feature>
<feature>opennms-telemetry-graphite</feature>
<feature>opennms-telemetry-openconfig</feature>
<feature>opennms-telemetry-openconfig-client</feature>
<feature>org.opennms.features.enlinkd.service.api</feature>
<feature>org.opennms.features.bsm.service.api</feature>
<feature>org.opennms.features.bsm.shell-commands</feature>
<feature>vaadin-adminpage</feature>
<feature>opennms-jest</feature>
<feature>opennms-es-rest</feature>
<feature>ifttt-integration</feature>
<feature>opennms-flows</feature>
<feature>opennms-api-layer</feature>
<feature>karaf-extender</feature>
<feature>opennms-alarm-history-elastic</feature>
<feature>org.opennms.features.topologies.service.api</feature>
<feature>opennms-identity</feature>
<feature>opennms-endpoints-grafana</feature>
<feature>opennms-reporting</feature>
<feature>opennms-send-event-command</feature>
<feature>opennms-search</feature>
<feature>opennms-dnsresolver-shell</feature>
<feature>opennms-dnsresolver-netty</feature>
<feature>opennms-blobstore-noop</feature>
<feature>opennms-blobstore-postgres</feature>
<feature>opennms-blobstore-shell</feature>
<feature>opennms-jsonstore-shell</feature>
<feature>opennms-threshold-states-shell</feature>
<feature>opennms-core-tracing-jaeger</feature>
<feature>opennms-karaf-health</feature>
<feature>opennms-core-ipc-grpc-server</feature>
<feature>scv-api</feature>
<feature>scv-jceks-impl</feature>
<feature>scv-shell</feature>
<!-- Include the OpenNMS Minion features produced by
container/features/pom.xml -->
<feature>minion-core-api</feature>
<feature>opennms-dao-minion</feature>
</features>
<repository>${project.build.directory}/opennms-repo</repository>
</configuration>
</execution>
<!-- Create an experimental repo so that it can be used in integration
tests -->
<execution>
<id>features-add-to-repository-experimental</id>
<phase>process-resources</phase>
<goals>
<goal>features-add-to-repository</goal>
</goals>
<configuration>
<descriptors>
<descriptor>mvn:org.opennms.karaf/opennms/$
{project.version}/xml/spring</descriptor>
<descriptor>mvn:org.opennms.karaf/opennms/$
{project.version}/xml/spring-legacy</descriptor>
<descriptor>mvn:org.opennms.karaf/opennms/$
{project.version}/xml/experimental</descriptor>
</descriptors>
<features>
<!-- Experimental features that are not included in OpenNMS -->
<feature>opennms-activemq-component</feature>
<feature>opennms-discovery</feature>
<feature>opennms-events-daemon</feature>
<feature>opennms-reporting</feature>
<feature>opennms-webapp</feature>
</features>
<repository>${project.build.directory}/experimental-repo</repository>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>net.nicoulaj.maven.plugins</groupId>
<artifactId>checksum-maven-plugin</artifactId>
<executions>
<execution>
<phase>prepare-package</phase>
<goals><goal>files</goal></goals>
</execution>
</executions>
<configuration>
<algorithms><algorithm>SHA-1</algorithm></algorithms>
<fileSets>
<fileSet>
<directory>${project.build.directory}/opennms-repo</directory>
<includes>
<include>**/*.cfg</include>
<include>**/*.jar</include>
<include>**/*.pom</include>
<include>**/*.war</include>
<include>**/*.xml</include>
</includes>
</fileSet>
</fileSets>
</configuration>
</plugin>
<plugin>
<artifactId>maven-clean-plugin</artifactId>
<executions>
<execution>
<id>cleanup-after-integration-tests</id>
<phase>post-integration-test</phase>
<goals>
<goal>clean</goal>
</goals>
<configuration>
<excludeDefaultDirectories>true</excludeDefaultDirectories>
<filesets>
<fileset>
<directory>${project.build.directory}/opennms-repo</directory>
</fileset>
<fileset>
<directory>${project.build.directory}/experimental-
repo</directory>
</fileset>
<fileset>
<directory>${project.build.directory}/minion-core-
repo</directory>
</fileset>
<fileset>
<directory>${project.build.directory}/minion-default-
repo</directory>
</fileset>
</filesets>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<executions>
<execution>
<phase>validate</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<tasks>
<echo>Build Profile is '${build.profile}'.</echo>
</tasks>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-deploy-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
</plugins>

</build>
<modules>
<module>../opennms-install</module>
<module>../opennms-assemblies</module>
<module>../opennms-doc</module>
<module>../opennms-base-assembly</module>
</modules>

<dependencies>
<dependency>
<groupId>org.opennms.container</groupId>
<artifactId>org.opennms.container.karaf</artifactId>
<type>tar.gz</type>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jaxb-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>root-webapp</artifactId>
<type>war</type>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.assemblies</groupId>
<artifactId>org.opennms.assemblies.webapp-full</artifactId>
<type>war</type>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-webapp</artifactId>
<type>tar.gz</type>
<classifier>meta-inf</classifier>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-base-assembly</artifactId>
<type>tar.gz</type>
<version>${project.version}</version>
<classifier>daemon</classifier>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-base-assembly</artifactId>
<type>tar.gz</type>
<version>${project.version}</version>
<classifier>log4j2</classifier>
</dependency>
<dependency>
<groupId>org.opennms.doc</groupId>
<artifactId>guide-all</artifactId>
<type>tar.gz</type>
<version>${project.version}</version>
<classifier>docs</classifier>
</dependency>
<dependency>
<groupId>org.opennms.assemblies</groupId>
<artifactId>org.opennms.assemblies.xsds</artifactId>
<version>${project.version}</version>
<type>tar.gz</type>
<classifier>xsds</classifier>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dns-provisioning-adapter</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-reverse-dns-provisioning-adapter</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-jetty</artifactId>
<version>${project.version}</version>
<type>tar.gz</type>
<classifier>etc</classifier>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-wsman-asset-provisioning-adapter</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-snmp-asset-provisioning-adapter</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-snmp-hardware-inventory-provisioning-adapter</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rancid-provisioning-adapter</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.protocols</groupId>
<artifactId>org.opennms.protocols.cifs</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.protocols</groupId>
<artifactId>org.opennms.protocols.nsclient</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.protocols</groupId>
<artifactId>org.opennms.protocols.nsclient</artifactId>
<version>${project.version}</version>
<type>tar.gz</type>
<classifier>etc</classifier>
</dependency>
<dependency>
<groupId>org.opennms.protocols</groupId>
<artifactId>org.opennms.protocols.radius</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.protocols</groupId>
<artifactId>org.opennms.protocols.xml</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.protocols</groupId>
<artifactId>org.opennms.protocols.xml</artifactId>
<version>${project.version}</version>
<type>tar.gz</type>
<classifier>etc</classifier>
</dependency>
<dependency>
<groupId>org.opennms.protocols</groupId>
<artifactId>org.opennms.protocols.xml</artifactId>
<version>${project.version}</version>
<type>tar.gz</type>
<classifier>contrib</classifier>
</dependency>
<dependency>
<groupId>com.ximpleware</groupId>
<artifactId>vtd-xml</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-vtdxml-collector-handler</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.protocols</groupId>
<artifactId>org.opennms.protocols.xmp</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.protocols</groupId>
<artifactId>org.opennms.protocols.xmp</artifactId>
<version>${project.version}</version>
<type>tar.gz</type>
<classifier>etc</classifier>
</dependency>
<dependency>
<groupId>org.opennms.protocols</groupId>
<artifactId>org.opennms.protocols.xmp</artifactId>
<version>${project.version}</version>
<type>tar.gz</type>
<classifier>lib</classifier>
</dependency>
<dependency>
<groupId>org.opennms.protocols</groupId>
<artifactId>selenium-monitor</artifactId>
<version>${project.version}</version>
<exclusions>
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.opennms.protocols</groupId>
<artifactId>selenium-monitor</artifactId>
<version>${project.version}</version>
<type>tar.gz</type>
<classifier>etc</classifier>
</dependency>
<dependency>
<groupId>org.opennms.protocols</groupId>
<artifactId>selenium-monitor</artifactId>
<version>${project.version}</version>
<type>tar.gz</type>
<classifier>lib</classifier>
</dependency>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.juniper-tca-collector</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.juniper-tca-collector</artifactId>
<version>${project.version}</version>
<type>tar.gz</type>
<classifier>etc</classifier>
</dependency>
<dependency>
<groupId>io.hawt</groupId>
<artifactId>hawtio-default</artifactId>
<version>${hawtioVersion}</version>
<type>war</type>
</dependency>

<!-- Apache Karaf features.xml artifacts -->


<dependency>
<groupId>org.apache.karaf.features</groupId>
<artifactId>framework</artifactId>
<version>${karafVersion}</version>
<classifier>features</classifier>
<type>xml</type>
<exclusions>
<exclusion>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.ops4j.pax.exam</groupId>
<artifactId>pax-exam-features</artifactId>
<version>${paxExamVersion}</version>
<type>xml</type>
</dependency>
<dependency>
<groupId>org.ops4j.pax.web</groupId>
<artifactId>pax-web-features</artifactId>
<version>${paxWebVersion}</version>
<classifier>features</classifier>
<type>xml</type>
</dependency>
<dependency>
<groupId>org.opennms.karaf</groupId>
<artifactId>opennms</artifactId>
<version>${project.version}</version>
<type>xml</type>
<classifier>standard</classifier>
</dependency>
<dependency>
<groupId>org.opennms.karaf</groupId>
<artifactId>opennms</artifactId>
<version>${project.version}</version>
<type>xml</type>
<classifier>spring</classifier>
</dependency>
<dependency>
<groupId>org.opennms.karaf</groupId>
<artifactId>opennms</artifactId>
<version>${project.version}</version>
<type>xml</type>
<classifier>spring-legacy</classifier>
</dependency>
<dependency>
<groupId>org.opennms.karaf</groupId>
<artifactId>opennms</artifactId>
<version>${project.version}</version>
<type>xml</type>
<classifier>features</classifier>
</dependency>
<dependency>
<groupId>org.opennms.karaf</groupId>
<artifactId>opennms</artifactId>
<version>${project.version}</version>
<type>xml</type>
<classifier>minion</classifier>
</dependency>
<dependency>
<groupId>org.opennms.features.distributed</groupId>
<artifactId>org.opennms.features.distributed.kv-
store.blob.postgres</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.distributed</groupId>
<artifactId>org.opennms.features.distributed.kv-store.blob.no-op</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.distributed</groupId>
<artifactId>org.opennms.features.distributed.kv-store.blob.shell</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.distributed</groupId>
<artifactId>org.opennms.features.distributed.kv-store.json.shell</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.thresholding.shell</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.measurements</groupId>
<artifactId>org.opennms.features.measurements.shell</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.common</groupId>
<artifactId>org.opennms.core.ipc.common.kafka-shell</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core.tracing</groupId>
<artifactId>org.opennms.core.tracing.jaeger-osgi</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core.tracing</groupId>
<artifactId>org.opennms.core.tracing.jaeger-tracer</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.karaf-health</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.grpc</groupId>
<artifactId>org.opennms.core.ipc.grpc.server</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.openconfig</groupId>
<artifactId>org.opennms.features.openconfig.telemetry-client</artifactId>
<version>${project.version}</version>
</dependency>

<dependency>
<groupId>org.opennms.features.flows</groupId>
<artifactId>org.opennms.features.flows.kafka-persistence</artifactId>
<version>${project.version}</version>
</dependency>

<!-- GraphML dependencies -->


<dependency>
<groupId>org.opennms.features.graphml</groupId>
<artifactId>org.opennms.features.graphml.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.graphml</groupId>
<artifactId>org.opennms.features.graphml.service</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.graphml</groupId>
<artifactId>org.opennms.features.graphml.rest</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.scv</groupId>
<artifactId>org.opennms.features.scv.jceks-impl</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.scv</groupId>
<artifactId>org.opennms.features.scv.shell</artifactId>
<version>${project.version}</version>
</dependency>

<!-- Test dependencies -->


<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.karaf</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
</dependencies>

<!--
You need to have all Maven repos here that contain artifacts that you need
installed
into the Karaf system folder.
-->
<pluginRepositories>
<pluginRepository>
<id>opennms-repo</id>
<name>OpenNMS Repository</name>
<url>http://maven.opennms.org/content/groups/opennms.org-release/</url>
</pluginRepository>
</pluginRepositories>
<repositories>
<repository>
<id>opennms-repo</id>
<name>OpenNMS Repository</name>
<url>http://maven.opennms.org/content/groups/opennms.org-release/</url>
</repository>
<repository>
<snapshots><enabled>true</enabled></snapshots>
<releases><enabled>false</enabled></releases>
<id>opennms-snapshots</id>
<name>OpenNMS Snapshot Maven Repository</name>
<url>http://maven.opennms.org/content/groups/opennms.org-snapshot/</url>
</repository>
<repository>
<id>vaadin-addons</id>
<url>http://maven.opennms.org/content/repositories/vaadin-addons/</url>
</repository>
<repository>
<id>sonatype-public-repo</id>
<name>Sonatype Public Maven Repository</name>
<url>http://maven.opennms.org/content/repositories/sonatype-public-
repo/</url>
</repository>
</repositories>
</project>
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/maven-v4_0_0.xsd">
<parent>
<artifactId>opennms-icmp</artifactId>
<groupId>org.opennms</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>opennms-icmp-commands</artifactId>
<name>OpenNMS :: Core :: ICMP :: Shell Commands</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</groupId>
<artifactId>opennms-icmp-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.karaf.shell</groupId>
<artifactId>org.apache.karaf.shell.core</artifactId>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<artifactId>opennms-icmp</artifactId>
<groupId>org.opennms</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>opennms-icmp-api</artifactId>
<name>OpenNMS :: ICMP :: API</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.netmgt.icmp.*;version="$
{project.version}"</Export-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>tracker-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</dependency>
</dependencies>
<repositories>
<repository>
<snapshots><enabled>false</enabled></snapshots>
<releases><enabled>true</enabled></releases>
<id>opennms-repo</id>
<name>OpenNMS Repository</name>
<url>http://maven.opennms.org/content/groups/opennms.org-release</url>
</repository>
</repositories>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<artifactId>opennms-icmp</artifactId>
<groupId>org.opennms</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>opennms-icmp-best</artifactId>
<name>OpenNMS ICMP Pinger - dynamic implementation</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.netmgt.icmp.best.*;version="$
{project.version}"</Export-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-icmp-jna</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-icmp-jni</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-icmp-jni6</artifactId>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<artifactId>opennms-icmp</artifactId>
<groupId>org.opennms</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>opennms-icmp-jna</artifactId>
<name>OpenNMS :: ICMP :: JNA</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.netmgt.icmp.jna.*;version="$
{project.version}"</Export-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-icmp-api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.lib</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.logging</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.icmp-jna</artifactId>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-util</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-test-dependencies</artifactId>
<type>pom</type>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<artifactId>opennms-icmp</artifactId>
<groupId>org.opennms</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>opennms-icmp-jni</artifactId>
<name>OpenNMS :: ICMP :: JNI</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.netmgt.icmp.jni.*;version="$
{project.version}"</Export-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-icmp-api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>jicmp-api</artifactId>
<version>2.0.1</version>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.lib</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.logging</artifactId>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-util</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-test-dependencies</artifactId>
<type>pom</type>
<scope>test</scope>
</dependency>
</dependencies>

<repositories>
<repository>
<snapshots><enabled>false</enabled></snapshots>
<releases><enabled>true</enabled></releases>
<id>opennms-repo</id>
<name>OpenNMS Repository</name>
<url>http://maven.opennms.org/content/groups/opennms.org-release</url>
</repository>
</repositories>

</project>
<?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/maven-v4_0_0.xsd">
<parent>
<artifactId>opennms-icmp</artifactId>
<groupId>org.opennms</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>opennms-icmp-jni6</artifactId>
<name>OpenNMS :: ICMP :: JNIv6</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.netmgt.icmp.jni6.*;version="$
{project.version}"</Export-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-icmp-api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-icmp-jni</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>jicmp6-api</artifactId>
<version>2.0.1</version>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.logging</artifactId>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-util</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-test-dependencies</artifactId>
<type>pom</type>
<scope>test</scope>
</dependency>
</dependencies>

<repositories>
<repository>
<snapshots><enabled>false</enabled></snapshots>
<releases><enabled>true</enabled></releases>
<id>opennms-repo</id>
<name>OpenNMS Repository</name>
<url>http://maven.opennms.org/content/groups/opennms.org-release</url>
</repository>
</repositories>

</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>opennms-icmp</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>org.opennms.icmp.proxy.rpc-impl</artifactId>
<name>OpenNMS :: Core :: ICMP :: Proxy :: RPC Impl.</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>
<Import-Package>
org.eclipse.persistence.internal.jaxb.many;resolution:=optional,
org.eclipse.persistence.internal.jaxb;resolution:=optional,
*
</Import-Package>
<!-- don't export anything this is implementation only -->
<Export-Package></Export-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-icmp-api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.camel</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.rpc</groupId>
<artifactId>org.opennms.core.ipc.rpc.xml</artifactId>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-model</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.xml</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.camel</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.activemq</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.services</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.distributed</groupId>
<artifactId>core-api</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.rpc</groupId>
<artifactId>org.opennms.core.ipc.rpc.jms-impl</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.tracing</groupId>
<artifactId>org.opennms.core.tracing.registry</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-icmp-jna</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-icmp-best</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-mock</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-provisiond</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<artifactId>opennms</artifactId>
<groupId>org.opennms</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>opennms-icmp</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: ICMP</name>
<modules>
<module>opennms-icmp-api</module>
<module>opennms-icmp-jni</module>
<module>opennms-icmp-jni6</module>
<module>opennms-icmp-jna</module>
<module>opennms-icmp-best</module>
<module>commands</module>
<module>opennms-icmp-proxy-rpc-impl</module>
</modules>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<artifactId>opennms</artifactId>
<groupId>org.opennms</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>opennms-install</artifactId>
<name>OpenNMS Installation Utilities</name>
<packaging>bundle</packaging>
<build>
<resources>
<resource>
<filtering>true</filtering>
<directory>src/main/filtered</directory>
</resource>
<resource>
<directory>src/main/resources</directory>
</resource>
</resources>
<testResources>
<testResource>
<filtering>true</filtering>
<directory>src/test/resources</directory>
</testResource>
</testResources>
<plugins>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifest>
<mainClass>org.opennms.install.Installer</mainClass>
<packageName>org.opennms.install</packageName>
</manifest>
</archive>
</configuration>
</plugin>
<plugin>
<artifactId>maven-resources-plugin</artifactId>
<executions>
<execution>
<phase>process-resources</phase>
<goals>
<goal>resources</goal>
</goals>
</execution>
</executions>
</plugin>
<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>
<plugin>
<artifactId>maven-deploy-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<!-- OpenNMS dependencies -->
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-icmp-best</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jna-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>liquibase-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-api</artifactId>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-bootstrap</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-config-model</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-util</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.db.install</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.schema</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.schema</artifactId>
<classifier>liquibase</classifier>
</dependency>
<!-- Non-OpenNMS dependencies -->
<dependency>
<groupId>commons-cli</groupId>
<artifactId>commons-cli</artifactId>
</dependency>
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
</dependency>
<!-- Test dependencies -->
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.db</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.lib</artifactId>
<scope>test</scope>
</dependency>
</dependencies>

<repositories>
<repository>
<snapshots><enabled>false</enabled></snapshots>
<releases><enabled>true</enabled></releases>
<id>opennms-repo</id>
<name>OpenNMS Repository</name>
<url>http://maven.opennms.org/content/groups/opennms.org-release</url>
</repository>
</repositories>

</project>
<?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/maven-v4_0_0.xsd">
<parent>
<artifactId>opennms-javamail</artifactId>
<groupId>org.opennms</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>opennms-javamail-api</artifactId>
<name>OpenNMS :: JavaMail :: Interface</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>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
</dependency>
<dependency>
<groupId>javax.mail</groupId>
<artifactId>mail</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.lib</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-config-model</artifactId>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.lib</artifactId>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<artifactId>opennms</artifactId>
<groupId>org.opennms</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>opennms-javamail</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: JavaMail</name>
<modules>
<module>opennms-javamail-api</module>
</modules>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<artifactId>opennms</artifactId>
<groupId>org.opennms</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>opennms-jetty</artifactId>
<name>OpenNMS :: Jetty</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.netmgt.jetty.jmx.*;version="${project.version}",
org.opennms.netmgt.jetty.*;version="${project.version}"
</Export-Package>
</instructions>
</configuration>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<descriptors>
<descriptor>src/assembly/etc.xml</descriptor>
</descriptors>
<overrideUid>0</overrideUid>
<overrideGid>0</overrideGid>
<tarLongFileMode>posix</tarLongFileMode>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals><goal>single</goal></goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>servlet-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.daemon</artifactId>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-server</artifactId>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-webapp</artifactId>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-deploy</artifactId>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>apache-jsp</artifactId>
<exclusions>
<exclusion>
<groupId>org.eclipse.jetty.orbit</groupId>
<artifactId>org.eclipse.jdt.core</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jstl-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-jmx</artifactId>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-rewrite</artifactId>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-annotations</artifactId>
</dependency>
<dependency>
<groupId>org.eclipse.jetty.websocket</groupId>
<artifactId>websocket-server</artifactId>
</dependency>
<dependency>
<groupId>org.apache.ant</groupId>
<artifactId>ant</artifactId>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.lib</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-library</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<artifactId>opennms</artifactId>
<groupId>org.opennms</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>opennms-model</artifactId>
<name>OpenNMS :: Model :: Objects</name>
<packaging>bundle</packaging>
<build>
<plugins>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<descriptors>
<descriptor>src/assembly/xsds.xml</descriptor>
</descriptors>
<overrideUid>0</overrideUid>
<overrideGid>0</overrideGid>
<tarLongFileMode>posix</tarLongFileMode>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
<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>
<Import-Package>
javassist.util.proxy,
org.hibernate.proxy,
*
</Import-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>hibernate-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jaxb-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>snmp-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
</dependency>
<dependency>
<groupId>javax.validation</groupId>
<artifactId>validation-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.lib</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.xml</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-util</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.events</groupId>
<artifactId>org.opennms.features.events.api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.poller</groupId>
<artifactId>org.opennms.features.poller.api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrd-api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.xml</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?xml version="1.0"?>
<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/maven-v4_0_0.xsd">
<parent>
<artifactId>opennms-provision</artifactId>
<groupId>org.opennms</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>opennms-detector-bsf</artifactId>
<name>OpenNMS :: Provisioning :: BSF Detectors</name>
<url>http://www.opennms.org</url>
<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.apache.bsf;!.org.apache.bsf.*;org.opennms.netmgt.provision.detector.bsf</Export
-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>bsf</groupId>
<artifactId>bsf</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-provision-api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-test-dependencies</artifactId>
<type>pom</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.lib</artifactId>
</dependency>
<dependency>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy-all</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?xml version="1.0"?>
<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/maven-v4_0_0.xsd">
<parent>
<artifactId>opennms-provision</artifactId>
<groupId>org.opennms</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>opennms-detector-datagram</artifactId>
<name>OpenNMS :: Provisioning :: Datagram Detectors</name>
<url>http://www.opennms.org</url>
<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.netmgt.provision.detector.datagram.*;version="$
{project.version}"</Export-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-provision-api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-util</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.lib</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-test-dependencies</artifactId>
<type>pom</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrd-jrobin</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jrrd2-dependencies</artifactId>
<scope>test</scope>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrdtool-api</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-mock-simpleserver</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.dns</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?xml version="1.0"?>
<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/maven-v4_0_0.xsd">
<parent>
<artifactId>opennms-provision</artifactId>
<groupId>org.opennms</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>opennms-detector-dhcp</artifactId>
<name>OpenNMS :: Provisioning :: DHCP Detector</name>
<url>http://www.opennms.org</url>
<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.netmgt.provision.detector.dhcp.*;version="$
{project.version}"</Export-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-provision-api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.dhcpd</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-test-dependencies</artifactId>
<type>pom</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.lib</artifactId>
</dependency>
</dependencies>
</project>
<?xml version="1.0"?>
<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/maven-v4_0_0.xsd">
<parent>
<artifactId>opennms-provision</artifactId>
<groupId>org.opennms</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>opennms-detector-generic</artifactId>
<name>OpenNMS :: Provisioning :: Generic Detectors</name>
<url>http://www.opennms.org</url>
<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.netmgt.provision.detector.generic.*;version="$
{project.version}"</Export-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-provision-api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-test-dependencies</artifactId>
<type>pom</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.lib</artifactId>
</dependency>
</dependencies>
</project>
<?xml version="1.0"?>
<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/maven-v4_0_0.xsd">
<parent>
<artifactId>opennms-provision</artifactId>
<groupId>org.opennms</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>opennms-detector-jdbc</artifactId>
<name>OpenNMS :: Provisioning :: JDBC Detector</name>
<url>http://www.opennms.org</url>
<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>
<DynamicImport-Package>*</DynamicImport-Package>
<Export-Package>org.opennms.netmgt.provision.detector.jdbc.*;version="$
{project.version}"</Export-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-provision-api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-util</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-test-dependencies</artifactId>
<type>pom</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.db</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.http</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.services</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrd-jrobin</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jrrd2-dependencies</artifactId>
<scope>test</scope>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrdtool-api</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.persistence.rrd</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?xml version="1.0"?>
<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/maven-v4_0_0.xsd">
<parent>
<artifactId>opennms-provision</artifactId>
<groupId>org.opennms</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>opennms-detector-jms</artifactId>
<name>OpenNMS :: Provisioning :: JMS Detectors</name>
<url>http://www.opennms.org</url>
<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.netmgt.provision.detector.jms.*;version="$
{project.version}"</Export-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-provision-api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>activemq-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-test-dependencies</artifactId>
<type>pom</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.lib</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.activemq</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?xml version="1.0"?>
<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/maven-v4_0_0.xsd">
<parent>
<artifactId>opennms-provision</artifactId>
<groupId>org.opennms</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>opennms-detector-jmx</artifactId>
<name>OpenNMS :: Provisioning :: JMX Detectors</name>
<url>http://www.opennms.org</url>
<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.netmgt.provision.detector.jmx.*;version="$
{project.version}"</Export-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-provision-api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-util</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.lib</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jmx-dependencies</artifactId>
<scope>compile</scope>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-test-dependencies</artifactId>
<type>pom</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.lib</artifactId>
</dependency>
</dependencies>
</project>
<?xml version="1.0"?>
<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/maven-v4_0_0.xsd">
<parent>
<artifactId>opennms-provision</artifactId>
<groupId>org.opennms</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>opennms-detector-lineoriented</artifactId>
<name>OpenNMS :: Provisioning :: LineOriented Detectors</name>
<url>http://www.opennms.org</url>
<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.netmgt.provision.detector.msexchange.*;org.opennms.netmgt.provi
sion.detector.simple.*;version="${project.version}"</Export-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-provision-api</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.novell.ldap</groupId>
<artifactId>jldap</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
</dependency>
<dependency>
<groupId>com.github.tomakehurst</groupId>
<artifactId>wiremock</artifactId>
<version>1.57</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-mock-simpleserver</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-test-dependencies</artifactId>
<type>pom</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.lib</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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>
<artifactId>opennms-provision</artifactId>
<groupId>org.opennms</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>opennms-detector-rdns-lookup</artifactId>
<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.netmgt.provision.detector.rdns.*;version="$
{project.version}"</Export-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-provision-api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>dnsjava-dependencies</artifactId>
<type>pom</type>
</dependency>
</dependencies>

</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>opennms-provision</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>opennms-detector-registry</artifactId>
<name>OpenNMS :: Provision :: Detector Registry</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>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-provision-api</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.soa</artifactId>
<scope>compile</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>opennms-provision</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>opennms-detector-simple</artifactId>
<name>OpenNMS :: Provisioning :: Simple Detectors</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.netmgt.provision.detector.icmp.*;org.opennms.netmgt.provision.d
etector.loop.*;org.opennms.netmgt.provision.detector.smb.*;org.opennms.netmgt.provi
sion.detector.snmp.*;version="${project.version}"</Export-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-provision-api</artifactId>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-icmp-api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-icmp-jni</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-icmp-jni6</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-icmp-jna</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-icmp-best</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jcifs-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>snmp-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-test-dependencies</artifactId>
<type>pom</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-config</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.lib</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.snmp</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-detector-lineoriented</artifactId>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-mock</artifactId>
<scope>test</scope>
</dependency>
</dependencies>

<repositories>
<repository>
<snapshots><enabled>false</enabled></snapshots>
<releases><enabled>true</enabled></releases>
<id>opennms-repo</id>
<name>OpenNMS Repository</name>
<url>http://maven.opennms.org/content/groups/opennms.org-release</url>
</repository>
</repositories>

</project>
<?xml version="1.0"?>
<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/maven-v4_0_0.xsd">
<parent>
<artifactId>opennms-provision</artifactId>
<groupId>org.opennms</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>opennms-detector-ssh</artifactId>
<name>OpenNMS :: Provisioning :: SSH Detector</name>
<url>http://www.opennms.org</url>
<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.netmgt.provision.detector.ssh.*;version="$
{project.version}"</Export-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-provision-api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-model</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-test-dependencies</artifactId>
<type>pom</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.http</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?xml version="1.0"?>
<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/maven-v4_0_0.xsd">
<parent>
<artifactId>opennms-provision</artifactId>
<groupId>org.opennms</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>opennms-detector-web</artifactId>
<name>OpenNMS :: Provisioning :: Web Detector (httpclient)</name>
<url>http://www.opennms.org</url>
<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.netmgt.provision.detector.web.*;version="$
{project.version}"</Export-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.web</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-provision-api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-test-dependencies</artifactId>
<type>pom</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.lib</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-mock-simpleserver</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>opennms-provision</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>opennms-detectorclient-rpc</artifactId>
<name>OpenNMS :: Provision :: Detector Client :: RPC Impl.</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>
<Import-Package>
org.eclipse.persistence.internal.jaxb.many;resolution:=optional,
org.eclipse.persistence.internal.jaxb;resolution:=optional,
*
</Import-Package>
<!-- don't export anything this is implementation only -->
<Export-Package></Export-Package>
</instructions>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<configuration>
<skipITs>${skipITs}</skipITs>
</configuration>
<executions>
<execution>
<goals>
<goal>integration-test</goal>
<goal>verify</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms.core.ipc.rpc</groupId>
<artifactId>org.opennms.core.ipc.rpc.xml</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-provision-api</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-detector-registry</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.rpc</groupId>
<artifactId>org.opennms.core.ipc.rpc.utils</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>dnsjava-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.rpc</groupId>
<artifactId>org.opennms.core.ipc.rpc.jms-impl</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-library</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-detector-simple</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.daemon</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.distributed</groupId>
<artifactId>core-api</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-test-dependencies</artifactId>
<type>pom</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.activemq</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.snmp</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.xml</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.services</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.camel</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.tracing</groupId>
<artifactId>org.opennms.core.tracing.registry</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-mock</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-icmp-jna</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-icmp-best</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?xml version="1.0"?>
<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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>opennms-provision</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>opennms-mock-simpleserver</artifactId>
<name>OpenNMS :: Provisioning :: Mock SimpleServer</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>
<Export-Package>org.opennms.netmgt.provision.server.*;version="$
{project.version}"</Export-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.lib</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>mina-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.lib</artifactId>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>opennms-provision</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>opennms-provision-api</artifactId>
<name>OpenNMS :: Provisioning :: API</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>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>mina-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>netty-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-model</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-util</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.lib</artifactId>
</dependency>
</dependencies>
</project>
<?xml version="1.0"?>
<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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>opennms-provision</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>opennms-provision-geolocation</artifactId>
<name>OpenNMS :: Provisioning :: Geolocation</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</groupId>
<artifactId>opennms-provision-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.geolocation</groupId>
<artifactId>org.opennms.features.geolocation.api</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.lib</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.db</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.services</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrd-jrobin</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jrrd2-dependencies</artifactId>
<type>pom</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.persistence.rrd</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?xml version="1.0"?>
<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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>opennms-provision</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>opennms-provision-persistence</artifactId>
<name>OpenNMS :: Provisioning :: Persistence</name>
<packaging>bundle</packaging>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>test-jar</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- // skip schemagen, just include a pre-generated version of the schema
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>jaxb2-maven-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<id>schemagen</id>
<goals>
<goal>schemagen</goal>
</goals>
</execution>
</executions>
<configuration>
<transformSchemas>
<transformSchema>
<uri>http://xmlns.opennms.org/xsd/config/foreign-source</uri>
<toFile>foreign-sources.xsd</toFile>
</transformSchema>
</transformSchemas>
<outputDirectory>${project.build.directory}/xsds</outputDirectory>
<workDirectory>${project.build.directory}/jaxb2-work</workDirectory>
<includes>
<include>**/*.java</include>
</includes>
<verbose>true</verbose>
</configuration>
</plugin>
-->
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<descriptors>
<descriptor>src/assembly/xsds.xml</descriptor>
</descriptors>
<overrideUid>0</overrideUid>
<overrideGid>0</overrideGid>
<tarLongFileMode>posix</tarLongFileMode>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
<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>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>commons-beanutils</groupId>
<artifactId>commons-beanutils</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jaxb-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.sysprops</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>joda-time</groupId>
<artifactId>joda-time</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-config</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-model</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-provision-api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-detector-registry</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.xml</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-web-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy-all</artifactId>
</dependency>
<!-- test dependencies -->
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-config-model</artifactId>
<classifier>xsds</classifier>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.db</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.http</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-mock</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.events</groupId>
<artifactId>org.opennms.features.events.daemon</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jrrd2-dependencies</artifactId>
<scope>test</scope>
<type>pom</type>
</dependency>
<dependency>
<groupId>xmlunit</groupId>
<artifactId>xmlunit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>opennms-provision</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>opennms-provision-shell</artifactId>
<name>OpenNMS :: Provision :: 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.apache.karaf.shell</groupId>
<artifactId>org.apache.karaf.shell.core</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-detector-registry</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-provision-api</artifactId>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient-osgi</artifactId>
<version>${httpclientVersion}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-provision-persistence</artifactId>
</dependency>
</dependencies>
</project>
<?xml version="1.0"?>
<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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>opennms-provision</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>opennms-provisiond</artifactId>
<name>OpenNMS :: Provisioning :: Daemon</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>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-provision-persistence</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.tasks</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.daemon</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-model</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-provision-api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core.tracing</groupId>
<artifactId>org.opennms.core.tracing.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-jexl</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>dnsjava-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>quartz-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.features.events</groupId>
<artifactId>org.opennms.features.events.api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-requisition-dns</artifactId>
<version>${project.version}</version>
</dependency>
<!-- test dependencies -->
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-mock</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-detector-simple</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-detectorclient-rpc</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.tests</groupId>
<artifactId>org.opennms.tests.mock-elements</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jrrd2-dependencies</artifactId>
<scope>test</scope>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.db</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.dns</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.services</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.snmp</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.snmp</groupId>
<artifactId>org.opennms.core.snmp.profile-mapper</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.jayway.awaitility</groupId>
<artifactId>awaitility</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-provision-persistence</artifactId>
<type>test-jar</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-icmp-jna</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-icmp-best</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.rpc</groupId>
<artifactId>org.opennms.core.ipc.rpc.api</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.tracing</groupId>
<artifactId>org.opennms.core.tracing.registry</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>opennms-provision</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>opennms-requisition-dns</artifactId>
<name>OpenNMS :: Provisioning :: DNS Imports</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>
<!-- Don't export any packages, expose services only. -->
<Export-Package></Export-Package>
<Import-Package>
org.eclipse.persistence.internal.jaxb;resolution:=optional,
org.eclipse.persistence.internal.jaxb.many;resolution:=optional,
*
</Import-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-provision-api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-provision-persistence</artifactId>
</dependency>
<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.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.xml</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.dns</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-provision-persistence</artifactId>
<type>test-jar</type>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>opennms-provision</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>opennms-requisition-service</artifactId>
<name>OpenNMS :: Provisioning :: Requisition Service</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>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-provision-api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-provision-persistence</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.rpc</groupId>
<artifactId>org.opennms.core.ipc.rpc.xml</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.web</artifactId>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</dependency>
<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.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.xml</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>opennms-provision</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>opennms-snmp-scanners</artifactId>
<name>OpenNMS :: Provisioning :: SNMP Scanners</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</groupId>
<artifactId>opennms-provision-api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>snmp-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.lib</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.snmp</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-mock</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>opennms</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>opennms-provision</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Provisioning</name>
<modules>
<module>opennms-provision-api</module>
<module>opennms-mock-simpleserver</module>
<module>opennms-detector-lineoriented</module>
<module>opennms-detector-simple</module>
<module>opennms-snmp-scanners</module>
<module>opennms-provisiond</module>
<module>opennms-provision-geolocation</module>
<module>opennms-provision-persistence</module>
<module>opennms-provision-shell</module>
<module>opennms-detector-registry</module>
<module>opennms-detector-datagram</module>
<module>opennms-detector-dhcp</module>
<module>opennms-detector-jmx</module>
<module>opennms-detector-jdbc</module>
<module>opennms-detector-ssh</module>
<module>opennms-detector-generic</module>
<module>opennms-detector-web</module>
<module>opennms-detector-bsf</module>
<module>opennms-detectorclient-rpc</module>
<module>opennms-requisition-dns</module>
<module>opennms-requisition-service</module>
<module>opennms-detector-jms</module>
<module>opennms-detector-rdns-lookup</module>
</modules>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-provision-api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-mock-simpleserver</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-detector-lineoriented</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-detector-simple</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-snmp-scanners</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-provisiond</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-provision-persistence</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-detector-bsf</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-detector-datagram</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-detector-generic</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-detector-jmx</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-detector-jdbc</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-detector-rdns-lookup</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-detector-ssh</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-detector-web</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-detectorclient-rpc</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-provision-command</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<artifactId>opennms</artifactId>
<groupId>org.opennms</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>opennms-reporting</artifactId>
<packaging>bundle</packaging>
<name>OpenNMS Reporting</name>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-eclipse-plugin</artifactId>
<configuration>
<additionalBuildcommands>

<buildcommand>org.springframework.ide.eclipse.core.springbuilder</buildcommand>
</additionalBuildcommands>
<additionalProjectnatures>

<projectnature>org.springframework.ide.eclipse.core.springnature</projectnature>
</additionalProjectnatures>
</configuration>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<descriptors>
<descriptor>src/assembly/xsds.xml</descriptor>
</descriptors>
<overrideUid>0</overrideUid>
<overrideGid>0</overrideGid>
<tarLongFileMode>posix</tarLongFileMode>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
<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>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-util</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-javamail-api</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rws</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-model</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrd-api</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrd-jrobin</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jrrd2-dependencies</artifactId>
<scope>test</scope>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrdtool-api</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.reporting</groupId>
<artifactId>org.opennms.features.reporting.api</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.reporting</groupId>
<artifactId>org.opennms.features.reporting.core</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.reporting</groupId>
<artifactId>org.opennms.features.reporting.availability</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>avalon-framework</groupId>
<artifactId>avalon-framework</artifactId>
<version>4.1.3</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.easymock</groupId>
<artifactId>easymock</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>xerces</groupId>
<artifactId>xercesImpl</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.xml</artifactId>
<scope>test</scope>
</dependency>
</dependencies>

<pluginRepositories>
<pluginRepository>
<snapshots><enabled>false</enabled></snapshots>
<releases><enabled>true</enabled></releases>
<id>opennms-repo</id>
<name>OpenNMS Repository</name>
<url>http://maven.opennms.org/content/groups/opennms.org-release</url>
</pluginRepository>
</pluginRepositories>

</project>
<?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/maven-v4_0_0.xsd">
<parent>
<artifactId>opennms-rrd</artifactId>
<groupId>org.opennms</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>opennms-rrd-api</artifactId>
<name>OpenNMS :: RRD :: API</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>
<!--
Manually add org.springframework.beans.factory.config to the import
list since the
org/opennms/netmgt/rrd/rrd-configuration.xml resource needs it.

Add all optional imports of RRD strategies to the import list as


well.
-->
<Import-Package>
org.springframework.beans.factory.config;version="[4.2,4.3)",
org.opennms.netmgt.rrd.jrobin;resolution:=optional,
org.opennms.netmgt.rrd.rrdtool;resolution:=optional,
org.opennms.netmgt.rrd.tcp;resolution:=optional,
*
</Import-Package>
<Export-Package>org.opennms.netmgt.rrd.*;version="$
{project.version}"</Export-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.lib</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.logging</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-test-dependencies</artifactId>
<type>pom</type>
</dependency>
</dependencies>

<repositories>
<repository>
<snapshots><enabled>false</enabled></snapshots>
<releases><enabled>true</enabled></releases>
<id>opennms-repo</id>
<name>OpenNMS Repository</name>
<url>http://maven.opennms.org/content/groups/opennms.org-release</url>
</repository>
</repositories>

</project>
<?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/maven-v4_0_0.xsd">
<parent>
<artifactId>opennms-rrd</artifactId>
<groupId>org.opennms</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>opennms-rrd-jrobin</artifactId>
<name>OpenNMS :: RRD :: JRobin</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.netmgt.rrd.jrobin.*;version="$
{project.version}"</Export-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrd-api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jrobin-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.lib</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.persistence.osgi</artifactId>
</dependency>
</dependencies>

<repositories>
<repository>
<snapshots><enabled>true</enabled></snapshots>
<releases><enabled>false</enabled></releases>
<id>opennms-snapshots</id>
<name>OpenNMS Snapshot Repository</name>
<url>http://maven.opennms.org/content/groups/opennms.org-snapshot</url>
</repository>
</repositories>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<artifactId>opennms-rrd</artifactId>
<groupId>org.opennms</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>opennms-rrd-model</artifactId>
<name>OpenNMS :: RRD :: ORM</name>
<description>Object-relational mapping for RRD data.</description>
<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.netmgt.rrd.model.*;version="$
{project.version}"</Export-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.xml</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jrobin-dependencies</artifactId>
<type>pom</type>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<artifactId>opennms-rrd-rrdtool</artifactId>
<groupId>org.opennms</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>opennms-rrdtool-api</artifactId>
<name>OpenNMS :: RRD :: RRDTool :: Interface</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>
<Export-Package>org.opennms.netmgt.rrd.rrdtool.*;version="$
{project.version}"</Export-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jrrd-dependencies</artifactId>
<scope>provided</scope>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jrrd2-dependencies</artifactId>
<scope>provided</scope>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrd-api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.lib</artifactId>
</dependency>
</dependencies>

<repositories>
<repository>
<snapshots><enabled>false</enabled></snapshots>
<releases><enabled>true</enabled></releases>
<id>opennms-repo</id>
<name>OpenNMS Repository</name>
<url>http://maven.opennms.org/content/groups/opennms.org-release</url>
</repository>
</repositories>

</project>
<?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/maven-v4_0_0.xsd">
<parent>
<artifactId>opennms-rrd</artifactId>
<groupId>org.opennms</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>opennms-rrd-rrdtool</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: RRD :: RRDTool</name>
<modules>
<module>opennms-rrdtool-api</module>
</modules>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<artifactId>opennms-rrd</artifactId>
<groupId>org.opennms</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>opennms-rrd-tcp</artifactId>
<name>OpenNMS :: RRD :: TCP Export</name>
<packaging>bundle</packaging>
<build>
<plugins>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<skip>${skipSurefire}</skip>
<systemPropertyVariables>
<opennms.home>${project.build.testOutputDirectory}</opennms.home>
</systemPropertyVariables>
</configuration>
</plugin>
<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.netmgt.rrd.tcp.*;version="$
{project.version}"</Export-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrd-api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrd-jrobin</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jrrd2-dependencies</artifactId>
<scope>test</scope>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrdtool-api</artifactId>
<scope>test</scope>
</dependency>
<!--
Doesn't work properly with urllib2 requests; see
TcpRrdStrategyTest.java for more details.
<dependency>
<groupId>org.python</groupId>
<artifactId>jython</artifactId>
<version>2.2.1</version>
<scope>test</scope>
</dependency>
-->
<dependency>
<groupId>com.google.protobuf</groupId>
<artifactId>protobuf-java</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.lib</artifactId>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<artifactId>opennms</artifactId>
<groupId>org.opennms</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>opennms-rrd</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: RRD</name>
<modules>
<module>opennms-rrd-api</module>
<module>opennms-rrd-jrobin</module>
<module>opennms-rrd-rrdtool</module>
<module>opennms-rrd-tcp</module>
<module>opennms-rrd-model</module>
</modules>
<build>
<plugins>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<skip>${skipSurefire}</skip>
<systemPropertyVariables>
<opennms.home>${project.build.testOutputDirectory}</opennms.home>
</systemPropertyVariables>
</configuration>
</plugin>
</plugins>
</build>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<artifactId>opennms</artifactId>
<groupId>org.opennms</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>opennms-services</artifactId>
<name>OpenNMS Services</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>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<phase>test-compile</phase>
<goals><goal>copy</goal></goals>
</execution>
</executions>
<configuration>
<artifactItems>
<artifactItem>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jaxb-dependencies</artifactId>
<type>pom</type>
<overWrite>false</overWrite>
<outputDirectory>${basedir}/target/endorsed</outputDirectory>
</artifactItem>
</artifactItems>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-eclipse-plugin</artifactId>
<configuration>
<additionalBuildcommands>

<buildcommand>org.springframework.ide.eclipse.core.springbuilder</buildcommand>
</additionalBuildcommands>
<additionalProjectnatures>

<projectnature>org.springframework.ide.eclipse.core.springnature</projectnature>
</additionalProjectnatures>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>test-jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-config</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.sysprops</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-config-model</artifactId>
<scope>test</scope>
<classifier>xsds</classifier>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-mock</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.daemon</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.lib</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.web</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-icmp-api</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-javamail-api</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.collection</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.db</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.dns</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.http</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.services</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.snmp</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jasypt-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>javamail-dependencies</artifactId>
<scope>test</scope>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-security-core-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-test-dependencies</artifactId>
<type>pom</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrd-api</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-model</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jmx-dependencies</artifactId>
<scope>compile</scope>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>snmp-dependencies</artifactId>
<scope>compile</scope>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>snmp-test-dependencies</artifactId>
<scope>test</scope>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-util</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.notifications</groupId>
<artifactId>org.opennms.features.notifications.api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.core</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.snmp-collector</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.thresholding.api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.thresholding.impl</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.persistence.rrd</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.poller</groupId>
<artifactId>org.opennms.features.poller.api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.rpc</groupId>
<artifactId>org.opennms.core.ipc.rpc.api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.rpc</groupId>
<artifactId>org.opennms.core.ipc.rpc.utils</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.poller.monitors</groupId>
<artifactId>org.opennms.features.poller.monitors.core</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.tests</groupId>
<artifactId>org.opennms.tests.mock-elements</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>camel-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.jolokia</groupId>
<artifactId>jolokia-client-java</artifactId>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
</dependency>
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
</dependency>
<dependency>
<groupId>commons-cli</groupId>
<artifactId>commons-cli</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.easymock</groupId>
<artifactId>easymock</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>xerces</groupId>
<artifactId>xercesImpl</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>xml-apis</groupId>
<artifactId>xml-apis</artifactId>
</dependency>
<dependency>
<groupId>bsf</groupId>
<artifactId>bsf</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>org.opennms.config-dao.poll-outages.impl</artifactId>
<version>${project.version}</version>
</dependency>
<!-- BeanShell scripting language -->
<dependency>
<groupId>bsh</groupId>
<artifactId>bsh</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>javax.mail</groupId>
<artifactId>mail</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrd-jrobin</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jrrd2-dependencies</artifactId>
<scope>test</scope>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jcifs-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-jexl</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>quartz-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>smack-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>rancid-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>twitter4j-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>dnsjava-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-security-dependencies</artifactId>
<type>pom</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.events</groupId>
<artifactId>org.opennms.features.events.daemon</artifactId>
<!-- <scope>test</scope> -->
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-core</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.opennms.features.measurements</groupId>
<artifactId>org.opennms.features.measurements.impl</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-icmp-jna</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-icmp-best</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>org.opennms.icmp.proxy.rpc-impl</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.tracing</groupId>
<artifactId>org.opennms.core.tracing.registry</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.poller</groupId>
<artifactId>org.opennms.features.poller.client-rpc</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.client-rpc</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.collectors</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.test-api</artifactId>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>org.mockito</groupId>
<artifactId>mockito-all</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.rpc</groupId>
<artifactId>org.opennms.core.ipc.rpc.mock-impl</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.rpc</groupId>
<artifactId>org.opennms.core.ipc.rpc.jms-impl</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.jayway.awaitility</groupId>
<artifactId>awaitility</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.distributed</groupId>
<artifactId>org.opennms.features.distributed.kv-
store.json.postgres</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.distributed</groupId>
<artifactId>org.opennms.features.distributed.kv-
store.blob.postgres</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
</dependencies>

<repositories>
<repository>
<snapshots><enabled>false</enabled></snapshots>
<releases><enabled>true</enabled></releases>
<id>opennms-repo</id>
<name>OpenNMS Repository</name>
<url>http://maven.opennms.org/content/groups/opennms.org-release</url>
</repository>
</repositories>

</project>
<?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/maven-v4_0_0.xsd">
<parent>
<artifactId>opennms</artifactId>
<groupId>org.opennms</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>opennms-taglib</artifactId>
<name>OpenNMS Taglib</name>
<packaging>jar</packaging>
<dependencies>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.lib</artifactId>
<scope>provided</scope>
</dependency>

<!-- for SimpleTag support -->


<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>apache-jsp</artifactId>
<scope>provided</scope>
</dependency>

<!-- Test dependencies -->


<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?xml version="1.0"?>
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.xmlclient</groupId>
<artifactId>OpenNMSXMLClient</artifactId>
<packaging>jar</packaging>
<version>BT.0.2</version>
<name>OpenNMSXMLClient</name>
<url>http://www.opennms.org</url>
<properties>
<!-- Project specific properties -->
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>castor-maven-plugin</artifactId>
<version>2.0</version>
<configuration>
<schemaDirectory>src/main/castor</schemaDirectory>
<packaging>org.opennms.client.schema</packaging>
</configuration>
<executions>
<execution>
<goals>
<goal>generate</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<executions>
<execution>
<id>add-source</id>
<phase>process-sources</phase>
<goals>
<goal>add-source</goal>
</goals>
<configuration>
<sources>
<source>${project.build.directory}/generated-
sources/castor</source>
</sources>
</configuration>
</execution>
<execution>
<id>add-resource</id>
<phase>generate-resources</phase>
<goals>
<goal>add-resource</goal>
</goals>
<configuration>
<resources>
<resource>
<directory>${project.build.directory}/lib</directory>
<targetPath>lib</targetPath>
</resource>
</resources>
</configuration>
</execution>
</executions>
</plugin>
<!-- Tests can only be run manually -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<excludes>
<exclude>**/*.java</exclude>
</excludes>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<!-- Copy this project's dependencies to the release/lib directory -->
<execution>
<id>copy-dependencies</id>
<phase>initialize</phase>
<goals>
<goal>copy-dependencies</goal>
</goals>
<configuration>
<outputDirectory>${project.build.directory}/lib</outputDirectory>
<includeScope>runtime</includeScope>
<overWriteIfNewer>true</overWriteIfNewer>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifest>
<mainClass>org.opennms.xmlclient.bcos.OpenNmsBcosAdapter</mainClass>
<addClasspath>true</addClasspath>
<classpathPrefix>lib</classpathPrefix>
</manifest>
</archive>
</configuration>
</plugin>
</plugins>
<resources>
<resource>
<directory>src/main/resources</directory>
</resource>
</resources>
<testResources>
<testResource>
<directory>src/test/resources</directory>
</testResource>
</testResources>
<pluginManagement>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.5</source>
<target>1.5</target>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>1.3</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.4</version>
</plugin>
</plugins>
</pluginManagement>
</build>
<dependencies>
<dependency>
<groupId>org.codehaus.castor</groupId>
<artifactId>castor-xml</artifactId>
<version>1.3.1</version>
</dependency>
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
<version>1.4</version>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.14</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.1</version>
<scope>test</scope>
</dependency>
</dependencies>
<repositories>
<repository>
<snapshots><enabled>false</enabled></snapshots>
<releases><enabled>true</enabled></releases>
<id>maven2-repository.dev.java.net</id>
<name>Java.net Repository for Maven</name>
<url>http://maven.opennms.org/content/repositories/maven2-
repository.dev.java.net/</url>
<layout>default</layout>
</repository>
</repositories>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>opennms-tools</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.access-point-monitor</artifactId>
<name>OpenNMS Features Access Point Monitor</name>

<properties>
<skipITs>true</skipITs>
</properties>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<configuration>
<skipITs>${skipITs}</skipITs>
</configuration>
<executions>
<execution>
<goals>
<goal>integration-test</goal>
<goal>verify</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-model</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-mock</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-services</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.lib</artifactId>
</dependency>
<!-- For the AccessPointMonitordTests -->
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrd-jrobin</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jrrd2-dependencies</artifactId>
<scope>test</scope>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrdtool-api</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.tests</groupId>
<artifactId>org.opennms.tests.mock-elements</artifactId>
<scope>test</scope>
</dependency>

<!-- For ReST -->


<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jersey-dependencies</artifactId>
<type>pom</type>
<scope>provided</scope>
</dependency>

<!-- For testing ReST -->


<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>hibernate-dependencies</artifactId>
<type>pom</type>
<scope>provided</scope>
</dependency>

<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>xmlunit</groupId>
<artifactId>xmlunit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.db</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.rest</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.snmp</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.services</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>snmp-test-dependencies</artifactId>
<type>pom</type>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?xml version="1.0"?>
<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/maven-v4_0_0.xsd">
<parent>
<artifactId>opennms-tools</artifactId>
<groupId>org.opennms</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.netmgt.clipinger</groupId>
<artifactId>clipinger</artifactId>
<packaging>jar</packaging>
<name>clipinger</name>
<url>http://maven.apache.org</url>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>jcl-over-slf4j</artifactId>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>log4j-over-slf4j</artifactId>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<version>${slf4jVersion}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-icmp-api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-icmp-jni</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-icmp-jni6</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-icmp-jna</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-icmp-best</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>args4j</groupId>
<artifactId>args4j</artifactId>
<version>2.33</version>
<type>jar</type>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifestFile>src/main/resources/META-INF/MANIFEST.MF</manifestFile>
</archive>
</configuration>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>attached</goal>
</goals>
</execution>
</executions>
<configuration>
<archive>
<manifest>
<mainClass>org.opennms.netmgt.clipinger.CLIPinger</mainClass>
</manifest>
</archive>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
<tarLongFileMode>posix</tarLongFileMode>
</configuration>
</plugin>
</plugins>
</build>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<artifactId>opennms-tools</artifactId>
<groupId>org.opennms</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>org.opennms.config-normalizer</artifactId>
<packaging>jar</packaging>
<name>OpenNMS :: Config Normalizer</name>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifestFile>src/main/resources/META-INF/MANIFEST.MF</manifestFile>
</archive>
</configuration>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<!-- 2.5+ has a race-condition bug that causes the assembly to fail -->
<version>2.4</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>attached</goal>
</goals>
</execution>
</executions>
<configuration>
<archive>
<manifest>
<mainClass>org.opennms.netmgt.config.tools.Normalizer</mainClass>
</manifest>
</archive>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
<!-- appendAssemblyId>false</appendAssemblyId -->
<tarLongFileMode>posix</tarLongFileMode>
</configuration>
</plugin>
</plugins>
</build>

<dependencies>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.0.13</version>
</dependency>

<!-- Contains beans for ServiceConfigurationPublicConstructorTest -->


<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-asterisk</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-jetty</artifactId>
</dependency>

<!-- Contains model code for the normalizer work -->


<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-alarm-northbounder-bsf</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-alarm-northbounder-drools</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-alarm-northbounder-email</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-alarm-northbounder-jms</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-alarm-northbounder-snmptrap</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-config-model</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.ifttt</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.jdbc-collector</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.wsman</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-vmware</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-alarm-northbounder-syslog</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.reporting</groupId>
<artifactId>org.opennms.features.reporting.model</artifactId>
</dependency>

<!-- OpenNMS Karaf container so that we can crank it up with the pax-exam-karaf
unit test framework -->
<dependency>
<groupId>org.opennms.container</groupId>
<artifactId>org.opennms.container.karaf</artifactId>
<type>tar.gz</type>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>pax-exam-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.features.topology</groupId>
<artifactId>org.opennms.features.topology.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>servlet-dependencies</artifactId>
<type>pom</type>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<artifactId>opennms-tools</artifactId>
<groupId>org.opennms</groupId>
<version>1.12.1-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>connection-tracker</artifactId>
<name>OpenNMS Connection Tracker</name>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>aspectj-maven-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<goals>
<goal>compile</goal>
<goal>test-compile</goal>
</goals>
</execution>
</executions>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
<dependencies>
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>aspectjrt</artifactId>
<version>1.8.1</version>
</dependency>
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>aspectjweaver</artifactId>
<version>1.8.1</version>
</dependency>
</dependencies>
</plugin>
</plugins>
<pluginManagement>
<plugins>
<!--This plugin's configuration is used to store Eclipse m2e settings
only. It has no influence on the Maven build itself.-->
<plugin>
<groupId>org.eclipse.m2e</groupId>
<artifactId>lifecycle-mapping</artifactId>
<version>1.0.0</version>
<configuration>
<lifecycleMappingMetadata>
<pluginExecutions>
<pluginExecution>
<pluginExecutionFilter>

<groupId>org.codehaus.mojo</groupId>
<artifactId>aspectj-maven-
plugin</artifactId>
<versionRange>[1.3,)</versionRange>
<goals><goal>compile</goal>
<goal>test-compile</goal>
</goals>
</pluginExecutionFilter>
<action><ignore /></action>
</pluginExecution>
</pluginExecutions>
</lifecycleMappingMetadata>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
<dependencies>
<!-- this is needed to get aspectj dependencies -->
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<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.opennms</groupId>
<artifactId>opennms-tools</artifactId>
<version>27.0.5</version>
</parent>
<artifactId>opennms-csv-assets</artifactId>
<packaging>jar</packaging>

<name>opennms-csv-assets</name>
<url>http://maven.apache.org</url>
<build>
<plugins>
<plugin>
<inherited>false</inherited>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>attached</goal>
</goals>
</execution>
</executions>
<configuration>
<archive>
<manifest>
<mainClass>org.opennms.model.utils.AssetsUpdater</mainClass>
</manifest>
</archive>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
<!-- appendAssemblyId>false</appendAssemblyId -->
<tarLongFileMode>posix</tarLongFileMode>
</configuration>
</plugin>
</plugins>
</build>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

<dependencies>
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
</dependency>
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
</dependency>
<dependency>
<groupId>com.opencsv</groupId>
<artifactId>opencsv</artifactId>
</dependency>
</dependencies>
</project>
<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.opennms</groupId>
<artifactId>opennms-tools</artifactId>
<version>27.0.5</version>
</parent>
<artifactId>opennms-csv-requisition</artifactId>
<packaging>jar</packaging>

<name>opennms-csv-requistion</name>
<url>http://maven.apache.org</url>

<build>
<plugins>
<plugin>
<inherited>false</inherited>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>attached</goal>
</goals>
</execution>
</executions>
<configuration>
<archive>
<manifest>

<mainClass>org.opennms.provisiond.utils.CsvRequisitionParser</mainClass>
</manifest>
</archive>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
<!-- appendAssemblyId>false</appendAssemblyId -->
<tarLongFileMode>posix</tarLongFileMode>
</configuration>
</plugin>
</plugins>
</build>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

<dependencies>
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-provision-persistence</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-provision-persistence</artifactId>
<type>test-jar</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.http</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<artifactId>opennms-tools</artifactId>
<groupId>org.opennms</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>groovy-tools</artifactId>
<name>OpenNMS Groovy Tools</name>
<dependencies>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrd-jrobin</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrdtool-api</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy-all</artifactId>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<executions>
<execution>
<id>add-groovy-source</id>
<phase>generate-sources</phase>
<goals>
<goal>add-source</goal>
</goals>
<configuration>
<sources>
<source>src/main/groovy</source>
</sources>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-eclipse-plugin</artifactId>
<configuration>
<additionalBuildcommands>
<buildcommand>org.codehaus.groovy.eclipse.groovyBuilder</buildcommand>
</additionalBuildcommands>
<additionalProjectnatures>
<projectnature>org.codehaus.groovy.eclipse.groovyNature</projectnature>
</additionalProjectnatures>
<additionalConfig>
<file>
<name>.settings/org.codehaus.groovy.eclipse.preferences.prefs</name>
<content><![CDATA[#Added by maven-eclipse-plugin
eclipse.preferences.version=1
groovy.compiler.output.path=target/classes
]]></content>
</file>
</additionalConfig>
</configuration>
</plugin>
</plugins>
</build>
</project>
<?xml version="1.0"?>
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.jasper</groupId>
<artifactId>jrobin-provider</artifactId>
<packaging>jar</packaging>
<version>27.0.5</version>
<name>JRobin iReport Fields Provider</name>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<!-- best lock down version of the plugin too -->
<configuration>
<source>1.5</source>
<target>1.5</target>
</configuration>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.2</version>
<configuration>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
<tarLongFileMode>posix</tarLongFileMode>
</configuration>
<executions>
<execution>
<id>make-assembly</id>
<!-- this is used for inheritance merges -->
<phase>package</phase>
<!-- append to the packaging phase. -->
<goals>
<goal>single</goal>
<!-- goals == mojos -->
</goals>
</execution>
</executions>
</plugin>
</plugins>
</pluginManagement>
</build>
<dependencies>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jasper-dependencies</artifactId>
<version>${project.version}</version>
<type>pom</type>
</dependency>
<dependency>
<groupId>com.jaspersoft</groupId>
<artifactId>ireport</artifactId>
<version>3.7.5</version>
<scope>provided</scope>
</dependency>
</dependencies>
<!--
<repositories>
<repository>
<snapshots>
<enabled>false</enabled>
<updatePolicy>${updatePolicy}</updatePolicy>
</snapshots>
<releases>
<enabled>true</enabled>
<updatePolicy>${updatePolicy}</updatePolicy>
</releases>
<id>opennms-repo</id>
<name>OpenNMS Repository</name>
<url>http://maven.opennms.org/content/groups/opennms.org-release</url>
</repository>
</repositories>
-->
</project>
<?xml version="1.0"?>
<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>
<groupId>org.opennms.jasper</groupId>
<artifactId>resource-query-provider</artifactId>
<version>1.0-SNAPSHOT</version>
<name>Resource Query iReport Field Provider</name>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<!-- best lock down version of the plugin too -->
<configuration>
<source>1.5</source>
<target>1.5</target>
</configuration>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.2</version>
<configuration>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
<tarLongFileMode>posix</tarLongFileMode>
</configuration>
<executions>
<execution>
<id>make-assembly</id>
<!-- this is used for inheritance merges -->
<phase>package</phase>
<!-- append to the packaging phase. -->
<goals>
<goal>single</goal>
<!-- goals == mojos -->
</goals>
</execution>
</executions>
</plugin>
</plugins>
</pluginManagement>
</build>
<dependencies>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jasper-dependencies</artifactId>
<version>1.13.2-SNAPSHOT</version>
<type>pom</type>
</dependency>
<dependency>
<groupId>com.jaspersoft</groupId>
<artifactId>ireport</artifactId>
<version>3.7.5</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.8.2</version>
<scope>test</scope>
</dependency>
</dependencies>
<!--
<repositories>
<repository>
<snapshots>
<enabled>false</enabled>
<updatePolicy>${updatePolicy}</updatePolicy>
</snapshots>
<releases>
<enabled>true</enabled>
<updatePolicy>${updatePolicy}</updatePolicy>
</releases>
<id>opennms-repo</id>
<name>OpenNMS Repository</name>
<url>http://maven.opennms.org/content/groups/opennms.org-release</url>
</repository>
</repositories>
-->
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<artifactId>org.opennms.features</artifactId>
<groupId>org.opennms</groupId>
<version>27.0.5</version>
</parent>

<modelVersion>4.0.0</modelVersion>

<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.isoc-ipv6-gui</artifactId>
<packaging>war</packaging>
<name>ISOC World IPv6 UI</name>

<properties>
<moduleName>org.opennms.isoc.ipv6.gui.Application</moduleName>
<moduleHtml>index.html</moduleHtml>
<web.port>8080</web.port>
</properties>

<build>
<!-- <outputDirectory>war/WEB-INF/classes</outputDirectory>-->
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>gwt-maven-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>compile</goal>
</goals>
</execution>
<execution>
<id>test</id>
<phase>test</phase>
<goals>
<goal>test</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<configuration>
<archiveClasses>true</archiveClasses>
<webResources>
<resource>
<filtering>true</filtering>
<directory>${basedir}/src/main/web-filtered</directory>
</resource>
</webResources>
</configuration>
</plugin>
<plugin>
<groupId>org.mortbay.jetty</groupId>
<artifactId>jetty-maven-plugin</artifactId>
<configuration>
<scanIntervalSeconds>10</scanIntervalSeconds>
<systemProperties>
<systemProperty>
<name>log4j.configuration</name>
<value>file:${basedir}/runInPlace-log4j.properties</value>
</systemProperty>
</systemProperties>
</configuration>
</plugin>
<!-- Generates the GWT Container and Nature for GWT projects when
eclipse:eclipse is run -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-eclipse-plugin</artifactId>
<configuration>
<additionalBuildcommands>

<buildcommand>org.springframework.ide.eclipse.core.springbuilder</buildcommand>

<buildcommand>com.google.gwt.eclipse.core.gwtProjectValidator</buildcommand>
</additionalBuildcommands>
<additionalProjectnatures>

<projectnature>org.springframework.ide.eclipse.core.springnature</projectnature>
<projectnature>com.google.gwt.eclipse.core.gwtNature</projectnature>
</additionalProjectnatures>
<classpathContainers>

<classpathContainer>org.eclipse.jdt.launching.JRE_CONTAINER</classpathContainer>

<classpathContainer>com.google.gwt.eclipse.core.GWT_CONTAINER</classpathContainer>
</classpathContainers>
</configuration>
</plugin>

</plugins>
</build>

<dependencies>
<!-- GWT -->
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>gwt-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>com.google.gwt</groupId>
<artifactId>gwt-user</artifactId>
<version>${gwtVersion}</version>
<scope>provided</scope>
</dependency>

<!--GWT visualization-->
<dependency>
<groupId>com.google.gwt.google-apis</groupId>
<artifactId>gwt-visualization</artifactId>
<version>1.0.2</version>
</dependency>

<!-- Jersey -->


<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jersey-dependencies</artifactId>
<version>${project.version}</version>
<type>pom</type>
<scope>provided</scope>
</dependency>

<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
<version>2.5</version>
<scope>provided</scope>
</dependency>

<!-- test -->


<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>

<profiles>
<profile>
<id>runInPlace</id>
<dependencies>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jersey-dependencies</artifactId>
<version>${project.version}</version>
<type>pom</type>
<scope>compile</scope>
</dependency>
</dependencies>
</profile>
</profiles>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<artifactId>org.opennms.features</artifactId>
<groupId>org.opennms</groupId>
<version>27.0.5</version>
</parent>

<modelVersion>4.0.0</modelVersion>

<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.isoc-ipv6-participants</artifactId>
<name>ISOC World IPv6 Participant List</name>

<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>xml-maven-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>transform</goal>
</goals>
</execution>
</executions>
<configuration>
<transformationSets>
<transformationSet>
<dir>src/main/xml</dir>
<stylesheet>src/main/xslt/participants-requisition.xsl</stylesheet>
<fileMappers>
<fileMapper
implementation="org.codehaus.plexus.components.io.filemappers.RegExpFileMapper">
<pattern>\.xml$</pattern>
<replacement>-requisition.xml</replacement>
</fileMapper>
</fileMappers>
</transformationSet>
<transformationSet>
<dir>src/main/xml</dir>
<stylesheet>src/main/xslt/participants-poller-
configuration.xsl</stylesheet>
<parameters>
<parameter>
<name>rrdDirectory</name>
<!-- <value>${install.share.dir}</value> -->
<value>/var/opennms</value>
</parameter>
</parameters>
<fileMappers>
<fileMapper
implementation="org.codehaus.plexus.components.io.filemappers.RegExpFileMapper">
<pattern>\.xml$</pattern>
<replacement>-poller-configuration.xml</replacement>
</fileMapper>
</fileMappers>
</transformationSet>
</transformationSets>
</configuration>
<dependencies>
<dependency>
<groupId>xalan</groupId>
<artifactId>xalan</artifactId>
<version>2.7.1</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-util</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</plugin>
</plugins>
</build>
</project>
<?xml version="1.0"?>
<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>
<artifactId>opennms-tools</artifactId>
<groupId>org.opennms</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>jrb-to-rrd-converter</artifactId>
<name>JRobin to RRDtool File Converter</name>
<packaging>jar</packaging>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<repositories>
<repository>
<snapshots><enabled>true</enabled></snapshots>
<releases><enabled>false</enabled></releases>
<id>opennms-snapshots</id>
<name>OpenNMS Maven Snapshot Repository</name>
<url>http://maven.opennms.org/content/groups/opennms.org-snapshot</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jrobin-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>commons-cli</groupId>
<artifactId>commons-cli</artifactId>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifestFile>src/main/resources/META-INF/MANIFEST.MF</manifestFile>
</archive>
</configuration>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
<configuration>
<archive>
<manifest>
<mainClass>org.opennms.tools.JrbToRrdConverter</mainClass>
</manifest>
</archive>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
<!-- appendAssemblyId>false</appendAssemblyId -->
<tarLongFileMode>posix</tarLongFileMode>
</configuration>
</plugin>
</plugins>
</build>
</project>
<?xml version="1.0"?>
<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/maven-v4_0_0.xsd">
<parent>
<artifactId>opennms-tools</artifactId>
<groupId>org.opennms</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>spike-hunter</artifactId>
<packaging>jar</packaging>
<name>spike-hunter</name>
<url>http://maven.apache.org</url>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-config</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jrobin-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>commons-cli</groupId>
<artifactId>commons-cli</artifactId>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifestFile>src/main/resources/META-INF/MANIFEST.MF</manifestFile>
</archive>
</configuration>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>attached</goal>
</goals>
</execution>
</executions>
<configuration>
<archive>
<manifest>

<mainClass>org.opennms.netmgt.util.spikehunter.SpikeHunter</mainClass>
</manifest>
</archive>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
<!-- appendAssemblyId>false</appendAssemblyId -->
<tarLongFileMode>posix</tarLongFileMode>
</configuration>
</plugin>
</plugins>
</build>
</project>
<?xml version="1.0"?>
<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/maven-v4_0_0.xsd">
<parent>
<artifactId>opennms-tools</artifactId>
<groupId>org.opennms</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.netmgt.mib2events</groupId>
<artifactId>mib2events</artifactId>
<packaging>jar</packaging>
<name>mib2events</name>
<url>http://maven.apache.org</url>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.17</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-config-model</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>net.percederberg.grammatica</groupId>
<artifactId>grammatica</artifactId>
<version>1.4</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>net.percederberg.mibble</groupId>
<artifactId>mibble</artifactId>
<version>2.8</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>net.percederberg.mibble</groupId>
<artifactId>mibble-mibs</artifactId>
<version>2.8</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>xerces</groupId>
<artifactId>xercesImpl</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>commons-cli</groupId>
<artifactId>commons-cli</artifactId>
<scope>compile</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifestFile>src/main/resources/META-INF/MANIFEST.MF</manifestFile>
</archive>
</configuration>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>attached</goal>
</goals>
</execution>
</executions>
<configuration>
<archive>
<manifest>
<mainClass>org.opennms.netmgt.mib2events.Mib2Events</mainClass>
</manifest>
</archive>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
<!-- appendAssemblyId>false</appendAssemblyId -->
<tarLongFileMode>posix</tarLongFileMode>
</configuration>
</plugin>
</plugins>
</build>
</project>
<?xml version="1.0" encoding="UTF-8"?>
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms</groupId>
<artifactId>opennmsd</artifactId>
<version>0.0.1-SNAPSHOT</version>
<description/>
<packaging>groovy-jar</packaging>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo.groovy</groupId>
<artifactId>groovy-maven-plugin</artifactId>
<extensions>true</extensions>
</plugin>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.4</source>
<target>1.4</target>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<executions>
<execution>
<id>add-groovy-source</id>
<phase>generate-sources</phase>
<goals>
<goal>add-source</goal>
</goals>
<configuration>
<sources>
<source>src/main/groovy</source>
</sources>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<systemPropertyVariables>

<nnm.jni.library>/export/home/brozow/svn/ovapi/libNNM.so</nnm.jni.library>
</systemPropertyVariables>
</configuration>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>attached</goal>
</goals>
</execution>
</executions>
<configuration>
<archive>
<manifest>
<mainClass>org.opennms.opennmsd.Main</mainClass>
</manifest>
</archive>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
<!-- appendAssemblyId>false</appendAssemblyId -->
<tarLongFileMode>posix</tarLongFileMode>
</configuration>
</plugin>
<plugin>
<artifactId>maven-eclipse-plugin</artifactId>
<configuration>
<additionalBuildcommands>
<buildcommand>org.codehaus.groovy.eclipse.groovyBuilder</buildcommand>
</additionalBuildcommands>
<additionalProjectnatures>
<projectnature>org.codehaus.groovy.eclipse.groovyNature</projectnature>
</additionalProjectnatures>
<additionalConfig>
<file>
<name>.settings/org.codehaus.groovy.eclipse.preferences.prefs</name>
<content><![CDATA[#Added by maven-eclipse-plugin
eclipse.preferences.version=1
groovy.compiler.output.path=target/classes
]]></content>
</file>
</additionalConfig>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.13</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>jmock</groupId>
<artifactId>jmock</artifactId>
<version>1.2.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>nnm-api</artifactId>
<version>0.9-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>mock-snmp-agent</artifactId>
<version>1.3.10</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>backport-util-concurrent</groupId>
<artifactId>backport-util-concurrent</artifactId>
<version>3.1</version>
</dependency>
<dependency>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy-all</artifactId>
<version>1.5.2</version>
</dependency>
</dependencies>
<repositories>
<!--
<repository>
<snapshots>
<enabled>false</enabled>
<updatePolicy>${updatePolicy}</updatePolicy>
</snapshots>
<releases>
<enabled>true</enabled>
<updatePolicy>${updatePolicy}</updatePolicy>
</releases>
<id>opennms-repo</id>
<name>OpenNMS Repository</name>
<url>http://maven.opennms.org/content/groups/opennms.org-release</url>
</repository>
-->
<repository>
<snapshots><enabled>true</enabled></snapshots>
<releases><enabled>false</enabled></releases>
<id>opennms-snapshots</id>
<name>OpenNMS Snapshot Repository</name>
<url>http://maven.opennms.org/content/groups/opennms.org-snapshot</url>
</repository>
</repositories>
</project>
<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.opennms</groupId>
<artifactId>opennms-tools</artifactId>
<version>27.0.5</version>
</parent>
<artifactId>opennms-eventd-stresser</artifactId>
<packaging>jar</packaging>

<name>opennms-eventd-stresser</name>
<url>http://maven.apache.org</url>

<build>
<plugins>
<plugin>
<inherited>false</inherited>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>attached</goal>
</goals>
</execution>
</executions>
<configuration>
<archive>
<manifest>
<mainClass>org.opennms.tools.eventd.EventdStresser</mainClass>
</manifest>
</archive>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
<!-- appendAssemblyId>false</appendAssemblyId -->
<tarLongFileMode>posix</tarLongFileMode>
</configuration>
</plugin>
</plugins>
</build>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

<dependencies>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.sysprops</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core.snmp</groupId>
<artifactId>org.opennms.core.snmp.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.http</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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">
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.tools</groupId>
<artifactId>org.opennms.tools.gwt.archetype</artifactId>
<version>1.0.0-SNAPSHOT</version>
<packaging>maven-archetype</packaging>
<name>org.opennms.features.archetype-archetype</name>
<build>
<extensions>
<extension>
<groupId>org.apache.maven.archetype</groupId>
<artifactId>archetype-packaging</artifactId>
<version>2.0-alpha-4</version>
</extension>
</extensions>
<plugins>
<plugin>
<artifactId>maven-archetype-plugin</artifactId>
<version>2.0-alpha-4</version>
<extensions>true</extensions>
</plugin>
</plugins>
</build>
</project>
<?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/maven-v4_0_0.xsd">
<!--
POM generated by gwt-maven-plugin archetype
-->
<modelVersion>4.0.0</modelVersion>
<groupId>${groupId}</groupId>
<artifactId>${artifactId}</artifactId>
<packaging>war</packaging>
<version>${version}</version>
<properties>
<!-- convenience to define GWT version in one place -->
<gwt.version>2.0.4</gwt.version>
<!-- tell the compiler we can use 1.5 -->
<maven.compiler.source>1.5</maven.compiler.source>
<maven.compiler.target>1.5</maven.compiler.target>
</properties>
<dependencies>
<!-- GWT dependencies (from central repo) -->
<dependency>
<groupId>com.google.gwt</groupId>
<artifactId>gwt-servlet</artifactId>
<version>${gwt.version}</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>com.google.gwt</groupId>
<artifactId>gwt-user</artifactId>
<version>${gwt.version}</version>
<scope>provided</scope>
</dependency>
<!-- test -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.7</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<outputDirectory>war/WEB-INF/classes</outputDirectory>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>gwt-maven-plugin</artifactId>
<version>1.2</version>
<executions>
<execution>
<goals>
<goal>compile</goal>
<goal>generateAsync</goal>
<goal>test</goal>
</goals>
</execution>
</executions>
<configuration>
<runTarget>org.opennms.web.gwt.Application/Application.html</runTarget>
</configuration>
</plugin>
<!--
If you want to use the target/web.xml file mergewebxml produces,
tell the war plugin to use it.
Also, exclude what you want from the final artifact here.
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<configuration>
<webXml>target/web.xml</webXml>
<warSourceExcludes>.gwt-tmp/**</warSourceExcludes>
</configuration>
</plugin>
-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.0.2</version>
<configuration>
<source>${maven.compiler.source}</source>
<target>${maven.compiler.target}</target>
</configuration>
</plugin>
</plugins>
</build>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<artifactId>opennms</artifactId>
<groupId>org.opennms</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>opennms-qosdaemon</artifactId>
<name>OpenNMS QOS Daemon</name>
<!-- <packaging>jar</packaging> -->
<url>http://sourceforge.net/projects/opennms</url>
<description>
This project builds an OSS/J interface for OpenNMS.
</description>
<inceptionYear>2006</inceptionYear>
<developers>
<developer>
<id>cgallen</id>
<name>Craig Gallen</name>
<email>cgallen at sourceforge.net</email>
<roles>
<role>Project Lead</role>
</roles>
<organization>University Of Southampton</organization>
<timezone>-0</timezone>
</developer>
<developer>
<id>dhustace</id>
<name>David Hustace</name>
<email>dhustace at opennms.org</email>
<roles>
<role>Developer- OpenNMS Alarm Handling</role>
</roles>
<organization>OpenNMS Inc</organization>
</developer>
</developers>
<contributors>
<contributor>
<name>Tim Griffith</name>
<organization>University Of Southampton</organization>
<roles>
<role>Developer</role>
</roles>
</contributor>
<contributor>
<name>Gavin Willingham</name>
<organization>University Of Southampton</organization>
<roles>
<role>Developer</role>
</roles>
</contributor>
<contributor>
<name>Nick Dance</name>
<organization>University Of Southampton</organization>
</contributor>
<contributor>
<name>Paul Hickman</name>
<organization>University Of Southampton</organization>
<roles>
<role>Developer</role>
</roles>
</contributor>
<contributor>
<name>Jeff Reeve</name>
<organization>University Of Southampton</organization>
</contributor>
<contributor>
<name>Ricky Spaven</name>
<organization>University Of Southampton</organization>
</contributor>
<contributor>
<name>Paolo Imbalzano</name>
<organization>Invocom Plc</organization>
</contributor>
<contributor>
<name>Don Keir</name>
<organization>Sidonis Plc</organization>
</contributor>
<contributor>
<name>Martin Hobbs</name>
<organization>Sidonis Plc</organization>
</contributor>
<contributor>
<name>Bob Potter</name>
<organization>Arqiva Plc</organization>
</contributor>
<contributor>
<name>Cliff C. Faurer</name>
<organization>Automagic llc</organization>
</contributor>
<contributor>
<name>Matt Brozowski</name>
<organization>OpenNMS Inc</organization>
</contributor>
<contributor>
<name>Tarus Balog</name>
<organization>OpenNMS Inc</organization>
</contributor>
</contributors>
<!--
This project builds an OSS/J interface for OpenNMS.
It is released with OpenNMS under the AGPL liscence
It uses code contributed by the University of Southampton

This project leverages the OSSbeans project.


See http://sourceforge.net/projects/openoss
OSSbeans are released under the Apache-2 liscence by the
University of Southampton
-->
<build>
<plugins>
<plugin>
<groupId>org.opennms.maven.plugins</groupId>
<artifactId>castor-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<executions>
<execution>
<id>add-source</id>
<phase>generate-sources</phase>
<goals>
<goal>add-source</goal>
</goals>
<configuration>
<sources>
<source>${project.build.directory}/generated-
sources/castor</source>
</sources>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<descriptors>
<descriptor>src/assembly/xsds.xml</descriptor>
</descriptors>
<tarLongFileMode>posix</tarLongFileMode>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<systemPropertyVariables>
<qosd.config.directory>$
{project.build.testOutputDirectory}</qosd.config.directory>
</systemPropertyVariables>
</configuration>
</plugin>
</plugins>
</build>
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.8</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jxr-plugin</artifactId>
<version>2.3</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-project-info-reports-plugin</artifactId>
<version>2.4</version>
<reportSets>
<reportSet>
<reports>
<report>dependencies</report>
<report>project-team</report>
<report>mailing-list</report>
<!--
Continuous Integration report will be omitted
<report>cim</report>

Issue tracking report will be omitted


<report>issue-tracking</report>
-->
<report>license</report>
<report>scm</report>
</reports>
</reportSet>
</reportSets>
</plugin>
</plugins>
</reporting>
<dependencies>
<dependency>
<groupId>org.openoss</groupId>
<artifactId>OSSbeans-xml</artifactId>
<scope>compile</scope>
<exclusions>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring</artifactId>
</exclusion>
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
<exclusion>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.openoss</groupId>
<artifactId>OSSbeans-qos-ejb</artifactId>
<exclusions>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring</artifactId>
</exclusion>
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
<exclusion>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
</exclusion>
</exclusions>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>castor-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-model</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-services</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>jboss</groupId>
<artifactId>jbossmq-client</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>jboss</groupId>
<artifactId>jboss-j2ee</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>jboss</groupId>
<artifactId>jboss-client</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>jboss</groupId>
<artifactId>jboss-common</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>xmlbeans</groupId>
<artifactId>xbean</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>stax</groupId>
<artifactId>stax-api</artifactId>
<scope>compile</scope>
</dependency>
<!--
<dependency>
<groupId>xmlbeans</groupId>
<artifactId>xmlbeans-jsr173-api</artifactId>
<scope>compile</scope>
</dependency>
-->
<!-- alternative download from BEA site
<dependency>
<groupId>javax.xml</groupId>
<artifactId>jsr173</artifactId>
<scope>compile</scope>
</dependency>
-->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrd-jrobin</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jrrd2-dependencies</artifactId>
<scope>test</scope>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrdtool-api</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.db</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.http</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.services</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.tests</groupId>
<artifactId>org.opennms.tests.mock-elements</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.soa</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<dependencyManagement>
<dependencies>
<!-- external dependencies -->
<!-- PLEASE KEEP THESE IN ALPHABETICAL ORDER -->
<dependency>
<groupId>jboss</groupId>
<artifactId>jbossmq-client</artifactId>
<version>4.0.2</version>
</dependency>
<dependency>
<groupId>jboss</groupId>
<artifactId>jboss-j2ee</artifactId>
<version>4.0.2</version>
</dependency>
<dependency>
<groupId>jboss</groupId>
<artifactId>jboss-client</artifactId>
<version>4.0.2</version>
</dependency>
<dependency>
<groupId>jboss</groupId>
<artifactId>jboss-common</artifactId>
<version>4.0.2</version>
</dependency>
<dependency>
<groupId>org.openoss</groupId>
<artifactId>OSSbeans-qos-ejb</artifactId>
<version>2.1.0</version>
</dependency>
<dependency>
<groupId>org.openoss</groupId>
<artifactId>OSSbeans-xml</artifactId>
<version>2.1.0</version>
</dependency>
<!-- recommended to try stax api instead of jsr173
see: http://www.mail-archive.com/dev@xmlbeans.apache.org/msg00926.html
-->
<dependency>
<groupId>stax</groupId>
<artifactId>stax-api</artifactId>
<version>1.0.1</version>
</dependency>
<dependency>
<groupId>xmlbeans</groupId>
<artifactId>xbean</artifactId>
<version>2.1.0</version>
</dependency>
<!-- needs downloaded manually from bea site
<dependency>
<groupId>javax.xml</groupId>
<artifactId>jsr173</artifactId>
<version>1.0</version>
</dependency>
-->
<!-- needs downloaded manually from xmlbeans site
<dependency>
<groupId>xmlbeans</groupId>
<artifactId>xmlbeans-jsr173-api</artifactId>
<version>1.0</version>
</dependency>
-->
</dependencies>
</dependencyManagement>
<repositories>
<repository>
<snapshots><enabled>false</enabled></snapshots>
<releases><enabled>true</enabled></releases>
<id>openoss-repo</id>
<name>Sourceforge OSSbeans Release Repository</name>
<url>http://maven.opennms.org/content/repositories/openoss-repo/</url>
</repository>
</repositories>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<artifactId>opennms-tools</artifactId>
<groupId>org.opennms</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>opennms-rrd-converter</artifactId>
<name>OpenNMS RRD Converter</name>
<build>
<plugins>
<plugin>
<inherited>false</inherited>
<artifactId>maven-shade-plugin</artifactId>
<version>1.4</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<!--
<filter>
<artifact>*:*</artifact>
<excludes>
<exclude>META-INF/*.MF</exclude>
</excludes>
</filter>
-->
<shadedArtifactAttached>true</shadedArtifactAttached>
<shadedClassifierName>jar-with-dependencies</shadedClassifierName>
<transformers>
<transformer
implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer
">

<mainClass>org.opennms.tools.rrd.converter.JRobinConverter</mainClass>
</transformer>
</transformers>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>commons-cli</groupId>
<artifactId>commons-cli</artifactId>
</dependency>
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jrobin-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrd-model</artifactId>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>opennms-tip</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.tip</groupId>
<artifactId>cxf-dependencies</artifactId>
<packaging>pom</packaging>
<name>OpenNMS TIP CXF Dependencies</name>
<description>
This module is used to provide a single artifact that the opennms project
can depend on to use the apache cxf libraries
</description>
<properties>
<cxf.version>2.2.10</cxf.version>
</properties>
<dependencies>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-core</artifactId>
<version>${cxf.version}</version>
<exclusions>
<exclusion>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
</exclusion>
<exclusion>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-simple</artifactId>
<version>${cxf.version}</version>
<exclusions>
<exclusion>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
</exclusion>
<exclusion>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
<version>${cxf.version}</version>
<exclusions>
<exclusion>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
</exclusion>
<exclusion>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-databinding-aegis</artifactId>
<version>${cxf.version}</version>
<exclusions>
<exclusion>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
</exclusion>
<exclusion>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-local</artifactId>
<version>${cxf.version}</version>
<exclusions>
<exclusion>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
</exclusion>
<exclusion>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
<version>${cxf.version}</version>
<exclusions>
<exclusion>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
</exclusion>
<exclusion>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
<version>${cxf.version}</version>
<exclusions>
<exclusion>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
</exclusion>
<exclusion>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-jms</artifactId>
<version>${cxf.version}</version>
<exclusions>
<exclusion>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
</exclusion>
<exclusion>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-management</artifactId>
<version>${cxf.version}</version>
<exclusions>
<exclusion>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
</exclusion>
<exclusion>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-common-utilities</artifactId>
<version>${cxf.version}</version>
<exclusions>
<exclusion>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
</exclusion>
<exclusion>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jaxb-dependencies</artifactId>
<type>pom</type>
<scope>${provided.by.opennms}</scope>
</dependency>
</dependencies>
<repositories>
<repository>
<snapshots><enabled>false</enabled></snapshots>
<releases><enabled>true</enabled></releases>
<id>opennms-repo</id>
<name>OpenNMS Maven Repository</name>
<url>http://maven.opennms.org/content/groups/opennms.org-release</url>
</repository>
<!-- OpenNMS private download URL -->
<!-- see http://www.opennms.org/wiki/TIP_Maven_Repository -->
<repository>
<releases/>
<id>tip-repo</id>
<url>http://tip.opennms.org/content/repositories/tip-repo</url>
</repository>
<repository>
<snapshots/>
<id>tip-snapshot</id>
<url>http://tip.opennms.org/content/repositories/tip-snapshot</url>
</repository>
</repositories>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>opennms-tip</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.tip</groupId>
<artifactId>openejb-dependencies</artifactId>
<packaging>pom</packaging>
<name>OpenNMS TIP OpenEJB Dependencies</name>
<description>
This module is used to provide a single artifact that the opennms project
can depend on to use the Open EJB Container
</description>
<properties>
<openejb.version>3.1.4</openejb.version>
<openejb.javaee-api.version>5.0-3</openejb.javaee-api.version>
</properties>
<dependencies>
<dependency>
<groupId>org.apache.openejb</groupId>
<artifactId>openejb-core</artifactId>
<version>${openejb.version}</version>
<exclusions>
<exclusion>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
</exclusion>
<exclusion>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.openejb</groupId>
<artifactId>openejb-spring</artifactId>
<version>${openejb.version}</version>
<exclusions>
<exclusion>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
</exclusion>
<exclusion>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring</artifactId>
</exclusion>
</exclusions>
</dependency>
<!-- needed if we are going to run open ejb embedded in jetty -->
<dependency>
<groupId>org.apache.openejb</groupId>
<artifactId>openejb-server</artifactId>
<version>${openejb.version}</version>
<exclusions>
<exclusion>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
</exclusion>
<exclusion>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.openejb</groupId>
<artifactId>openejb-ejbd</artifactId>
<version>${openejb.version}</version>
<exclusions>
<exclusion>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
</exclusion>
<exclusion>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.openejb</groupId>
<artifactId>openejb-telnet</artifactId>
<version>${openejb.version}</version>
<exclusions>
<exclusion>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
</exclusion>
<exclusion>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.openejb</groupId>
<artifactId>javaee-api</artifactId>
<version>${openejb.javaee-api.version}</version>
<exclusions>
<exclusion>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
</exclusion>
<exclusion>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jaxb-dependencies</artifactId>
<type>pom</type>
<scope>${provided.by.opennms}</scope>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-dependencies</artifactId>
<type>pom</type>
<scope>${provided.by.opennms}</scope>
</dependency>
</dependencies>
<repositories>
<repository>
<snapshots><enabled>false</enabled></snapshots>
<releases><enabled>true</enabled></releases>
<id>opennms-repo</id>
<name>OpenNMS Maven Repository</name>
<url>http://maven.opennms.org/content/groups/opennms.org-release</url>
</repository>
<!-- OpenNMS private download URL -->
<!-- see http://www.opennms.org/wiki/TIP_Maven_Repository -->
<repository>
<releases/>
<id>tip-repo</id>
<url>http://tip.opennms.org/content/repositories/tip-repo</url>
</repository>
<repository>
<snapshots/>
<id>tip-snapshot</id>
<url>http://tip.opennms.org/content/repositories/tip-snapshot</url>
</repository>
</repositories>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>opennms-tip</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.tip</groupId>
<artifactId>opennms-tip-ram</artifactId>
<packaging>war</packaging>
<name>OpenNMS Resource Alarm Interface</name>
<properties>
<web.port>8080</web.port>
<tip-api.version>0.2.0-SNAPSHOT</tip-api.version>
<slf4j.version>1.6.1</slf4j.version>
</properties>
<build>
<!-- <outputDirectory>war/WEB-INF/classes</outputDirectory> -->
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<configuration>
<archiveClasses>true</archiveClasses>
</configuration>
</plugin>
<plugin>
<groupId>org.mortbay.jetty</groupId>
<artifactId>jetty-maven-plugin</artifactId>
<version>7.0.1.v20091125</version>
<configuration>
<scanIntervalSeconds>10</scanIntervalSeconds>
<systemProperties>
<systemProperty>
<name>log4j.configuration</name>
<value>file:${basedir}/runInPlace-log4j.properties</value>
</systemProperty>
</systemProperties>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-eclipse-plugin</artifactId>
<configuration>
<additionalBuildcommands>

<buildcommand>org.springframework.ide.eclipse.core.springbuilder</buildcommand>
</additionalBuildcommands>
<additionalProjectnatures>

<projectnature>org.springframework.ide.eclipse.core.springnature</projectnature>
</additionalProjectnatures>
<classpathContainers>

<classpathContainer>org.eclipse.jdt.launching.JRE_CONTAINER</classpathContainer>
</classpathContainers>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<!-- Local Interface Project TIP_RAM Model Generated Dependencies -->
<dependency>
<groupId>org.tmforum.tip</groupId>
<artifactId>TIP_RAM_JvtSpecPackage</artifactId>
<version>${tip-api.version}</version>
<exclusions>
<exclusion>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
</exclusion>
<exclusion>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring</artifactId>
</exclusion>
</exclusions>
</dependency>
<!-- NOTE - scope may need to be test? -->
<dependency>
<groupId>org.openoss.tip</groupId>
<artifactId>TIP_RAM_EjbImplGenSrcPackage</artifactId>
<version>${tip-api.version}</version>
<exclusions>
<exclusion>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
</exclusion>
<exclusion>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.openoss.tip</groupId>
<artifactId>TIP_RAM_SoapImplGenSrcPackage</artifactId>
<version>${tip-api.version}</version>
<exclusions>
<exclusion>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
</exclusion>
<exclusion>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring</artifactId>
</exclusion>
</exclusions>
</dependency>
<!-- external dependencies -->
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jersey-dependencies</artifactId>
<scope>${provided.by.opennms}</scope>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jaxb-dependencies</artifactId>
<scope>${provided.by.opennms}</scope>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-web-dependencies</artifactId>
<scope>${provided.by.opennms}</scope>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.tip</groupId>
<artifactId>cxf-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.tip</groupId>
<artifactId>openejb-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${slf4j.version}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<version>${slf4j.version}</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<scope>${provided.by.opennms}</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>jcl-over-slf4j</artifactId>
<version>${slf4j.version}</version>
<type>jar</type>
<scope>compile</scope>
</dependency>
</dependencies>
<!-- special case, we need the stuff above as direct dependencies -->
<repositories>
<repository>
<snapshots><enabled>false</enabled></snapshots>
<releases><enabled>true</enabled></releases>
<id>opennms-repo</id>
<name>OpenNMS Maven Repository</name>
<url>http://maven.opennms.org/content/groups/opennms.org-release</url>
</repository>
<!-- OpenNMS private download URL -->
<!-- see http://www.opennms.org/wiki/TIP_Maven_Repository -->
<repository>
<releases/>
<id>tip-repo</id>
<url>http://tip.opennms.org/content/repositories/tip-repo</url>
</repository>
<repository>
<snapshots/>
<id>tip-snapshot</id>
<url>http://tip.opennms.org/content/repositories/tip-snapshot</url>
</repository>
</repositories>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>opennms-tools</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms</groupId>
<artifactId>opennms-tip</artifactId>
<packaging>pom</packaging>
<name>OpenNMS Tip Interfaces</name>
<modules>
<module>cxf-dependencies</module>
<module>openejb-dependencies</module>
<module>tip-framework-dependencies</module>
<module>opennms-tip-ram</module>
</modules>
<profiles>
<profile>
<id>opennms-jetty</id>
<activation>
<property>
<name>container</name>
<value>opennms</value>
</property>
</activation>
<properties>
<provided.by.opennms>provided</provided.by.opennms>
</properties>
</profile>
<profile>
<id>standalone-jetty</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<properties>
<provided.by.opennms>compile</provided.by.opennms>
</properties>
</profile>
</profiles>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.opennms.tip</groupId>
<artifactId>cxf-dependencies</artifactId>
<version>${project.version}</version>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.tip</groupId>
<artifactId>openejb-dependencies</artifactId>
<version>${project.version}</version>
<type>pom</type>
</dependency>
</dependencies>
</dependencyManagement>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>opennms-tip</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.tip</groupId>
<artifactId>tip-framework-dependencies</artifactId>
<packaging>pom</packaging>
<name>OpenNMS TIP Framework Dependencies</name>
<description>
This module is used to provide a single artifact that the opennms project
can depend on to use the Open Tip Framework
</description>
<properties>
<tip-framework.version>1.1.0-SNAPSHOT</tip-framework.version>
</properties>
<dependencies>
<!-- External TIP dependencies -->
<!-- TIP Internal model dependencies -->
<!-- TIP Framework -->
<!-- TIP Platform -->
<dependency>
<groupId>org.tmforum.tip</groupId>
<artifactId>TIP_Generator_Internal_JvtSpecPackage</artifactId>
<version>${tip-framework.version}</version>
<exclusions>
<exclusion>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
</exclusion>
<exclusion>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.openoss.tip</groupId>
<artifactId>TIP_Generator_Internal_EjbImplGenSrcPackage</artifactId>
<version>${tip-framework.version}</version>
<exclusions>
<exclusion>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
</exclusion>
<exclusion>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.openoss.tip</groupId>
<artifactId>TIP_Generator_Internal_SoapImplGenSrcPackage</artifactId>
<version>${tip-framework.version}</version>
<exclusions>
<exclusion>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
</exclusion>
<exclusion>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring</artifactId>
</exclusion>
</exclusions>
</dependency>
<!-- TIP Common model dependencies -->
<!-- TIP Framework -->
<!-- TIP Platform -->
<dependency>
<groupId>org.tmforum.tip</groupId>
<artifactId>TIP_Common_JvtSpecPackage</artifactId>
<version>${tip-framework.version}</version>
<exclusions>
<exclusion>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
</exclusion>
<exclusion>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.openoss.tip</groupId>
<artifactId>TIP_Common_EjbImplGenSrcPackage</artifactId>
<version>${tip-framework.version}</version>
<exclusions>
<exclusion>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
</exclusion>
<exclusion>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
</exclusion>
<exclusion>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-api</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.openoss.tip</groupId>
<artifactId>TIP_Common_SoapImplGenSrcPackage</artifactId>
<version>${tip-framework.version}</version>
<exclusions>
<exclusion>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
</exclusion>
<exclusion>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring</artifactId>
</exclusion>
</exclusions>
</dependency>
<!-- TIP Framework base interface specification dependencies -->
<dependency>
<groupId>org.tmforum.tip</groupId>
<artifactId>TIP_JvtSpec_BaseInterfaces</artifactId>
<version>${tip-framework.version}</version>
<exclusions>
<exclusion>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
</exclusion>
<exclusion>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring</artifactId>
</exclusion>
</exclusions>
</dependency>
<!-- TIP Platform base implementation class dependencies -->
<dependency>
<groupId>org.openoss.tip</groupId>
<artifactId>TIP_EjbImpl_BaseClasses</artifactId>
<version>${tip-framework.version}</version>
<exclusions>
<exclusion>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
</exclusion>
<exclusion>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jaxb-dependencies</artifactId>
<scope>${provided.by.opennms}</scope>
<type>pom</type>
</dependency>
</dependencies>
<repositories>
<repository>
<snapshots><enabled>false</enabled></snapshots>
<releases><enabled>true</enabled></releases>
<id>opennms-repo</id>
<name>OpenNMS Maven Repository</name>
<url>http://maven.opennms.org/content/groups/opennms.org-release</url>
</repository>
<!-- OpenNMS private download URL -->
<!-- see http://www.opennms.org/wiki/TIP_Maven_Repository -->
<repository>
<releases/>
<id>tip-repo</id>
<url>http://tip.opennms.org/content/repositories/tip-repo</url>
</repository>
<repository>
<snapshots/>
<id>tip-snapshot</id>
<url>http://tip.opennms.org/content/repositories/tip-snapshot</url>
</repository>
</repositories>
</project>
<?xml version="1.0"?>
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.rrd.utils</groupId>
<artifactId>perfdata-receiver</artifactId>
<packaging>jar</packaging>
<version>1.0.1-SNAPSHOT</version>
<name>perfdata-receiver</name>
<url>http://maven.apache.org</url>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<!-- best lock down version of the plugin too -->
<configuration>
<source>1.5</source>
<target>1.5</target>
</configuration>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.2-beta-5</version>
<configuration>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
<archive>
<manifest>
<mainClass>org/opennms/rrd/utils/PerfDataReceiver</mainClass>
</manifest>
</archive>
<tarLongFileMode>posix</tarLongFileMode>
</configuration>
<executions>
<execution>
<id>make-assembly</id>
<!-- this is used for inheritance merges -->
<phase>package</phase>
<!-- append to the packaging phase. -->
<goals>
<goal>single</goal>
<!-- goals == mojos -->
</goals>
</execution>
</executions>
</plugin>
</plugins>
</pluginManagement>
</build>
<dependencies>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrd-tcp</artifactId>
<version>27.0.5</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.google.protobuf</groupId>
<artifactId>protobuf-java</artifactId>
<version>2.2.0</version>
<scope>compile</scope>
</dependency>
</dependencies>
<pluginRepositories>
<pluginRepository>
<snapshots>
<enabled>false</enabled>
</snapshots>
<releases>
<enabled>true</enabled>
</releases>
<id>maven-repo</id>
<name>Maven Central</name>
<url>http://maven.opennms.org/content/repositories/central/</url>
</pluginRepository>
<pluginRepository>
<snapshots>
<enabled>false</enabled>
</snapshots>
<releases>
<enabled>true</enabled>
</releases>
<id>opennms-repo</id>
<name>OpenNMS Repository</name>
<url>http://maven.opennms.org/content/groups/opennms.org-release</url>
</pluginRepository>
</pluginRepositories>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>opennms-tools</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.phonebook</artifactId>
<name>OpenNMS Features Phonebook</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>
<Export-Package>org.opennms.sms.phonebook.*;version="$
{project.version}"</Export-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<!-- direct dependencies -->
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
</dependency>
<!-- OSGi Stuff -->
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
<scope>provided</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.compendium</artifactId>
<scope>provided</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>pax-exam-dependencies</artifactId>
<type>pom</type>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<artifactId>opennms</artifactId>
<groupId>org.opennms</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>opennms-tools</artifactId>
<packaging>pom</packaging>
<name>OpenNMS Tools</name>
<modules>
<module>access-point-monitor</module>
<module>opennms-eventd-stresser</module>
<module>opennms-qosdaemon</module>
<module>opennms-rrd-converter</module>
<module>groovy-tools</module>
<module>csv-requisitions</module>
<module>csv-address</module>
<module>phonebook</module>
</modules>
<profiles>
<profile>
<!-- this profile is only activated while tagging so versions get updated -->
<id>tagging</id>
<activation>
<property>
<name>tagging</name>
</property>
</activation>
<modules>
<module>config-normalizer</module>
<module>mib2events</module>
<module>quickbase-troubleticketer</module>
<module>jrobin-spike-hunter</module>
<module>scriptd-event-proxy</module>
<module>jrb-to-rrd-converter</module>
<module>jrb-to-rrd-converter</module>
<module>csv-requisitions</module>
<module>csv-address</module>
<module>metric-repository-converter</module>
</modules>
</profile>
</profiles>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<artifactId>opennms-tools</artifactId>
<groupId>org.opennms</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>quickbase-troubleticketer</artifactId>
<packaging>jar</packaging>
<name>OpenNMS Quickbase Trouble Ticketer</name>
<build>
<plugins>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<descriptors>
<descriptor>src/main/assembly/quickbase-bundle.xml</descriptor>
</descriptors>
<appendAssemblyId>false</appendAssemblyId>
<tarLongFileMode>posix</tarLongFileMode>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms.features.ticketing</groupId>
<artifactId>org.opennms.features.ticketing.api</artifactId>
<scope>provided</scope>
</dependency>
</dependencies>
<!-- this jar is not yet released so we disable it during tagging -->
<profiles>
<profile>
<id>not-tagging</id>
<activation>
<property>
<name>!tagging</name>
</property>
</activation>
<dependencies>
<dependency>
<groupId>com.intuit</groupId>
<artifactId>quickbase-api</artifactId>
<version>1.0</version>
</dependency>
</dependencies>
</profile>
</profiles>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<artifactId>opennms-tools</artifactId>
<groupId>org.opennms</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>remedy-troubleticketer</artifactId>
<packaging>jar</packaging>
<name>OpenNMS Remedy ARS Trouble Ticketer</name>

<build>
<plugins>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>attached</goal>
</goals>
</execution>
</executions>
<configuration>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
<!-- appendAssemblyId>false</appendAssemblyId -->
<tarLongFileMode>posix</tarLongFileMode>
<encoding>UTF-8</encoding>
</configuration>
</plugin>

<plugin>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-codegen-plugin</artifactId>
<version>2.4.0</version>
<executions>
<execution>
<id>generate-sources</id>
<phase>generate-sources</phase>
<configuration>
<sourceRoot>$
{basedir}/target/generated/src/main/java</sourceRoot>
<wsdlOptions>

<wsdlOption>
<wsdl>$
{basedir}/src/main/resources/wsdl/WSTTCreate.wsdl</wsdl>
</wsdlOption>
</wsdlOptions>
</configuration>
<goals>
<goal>wsdl2java</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>

<dependencies>
<dependency>
<groupId>org.opennms.features.ticketing</groupId>
<artifactId>org.opennms.features.ticketing.api</artifactId>
<scope>provided</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<artifactId>opennms-tools</artifactId>
<groupId>org.opennms</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>scriptd-event-proxy</artifactId>
<name>OpenNMS Scriptd Event Proxy</name>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-eclipse-plugin</artifactId>
<configuration>
<additionalBuildcommands>

<buildcommand>org.springframework.ide.eclipse.core.springbuilder</buildcommand>
</additionalBuildcommands>
<additionalProjectnatures>

<projectnature>org.springframework.ide.eclipse.core.springnature</projectnature>
</additionalProjectnatures>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-api</artifactId>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<artifactId>opennms-tools</artifactId>
<groupId>org.opennms</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>selector-tracker</artifactId>
<name>OpenNMS Selector Tracker</name>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>aspectj-maven-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<goals>
<goal>compile</goal>
<goal>test-compile</goal>
</goals>
</execution>
</executions>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
<dependencies>
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>aspectjrt</artifactId>
<version>1.8.1</version>
</dependency>
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>aspectjweaver</artifactId>
<version>1.8.1</version>
</dependency>
</dependencies>
</plugin>
</plugins>
</build>
<dependencies>
<!-- this is needed to get aspectj dependencies -->
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?xml version="1.0"?>
<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/maven-v4_0_0.xsd">
<parent>
<artifactId>opennms-tools</artifactId>
<groupId>org.opennms</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.netmgt.mib2events</groupId>
<artifactId>spectrum-event-importer</artifactId>
<packaging>jar</packaging>
<name>spectrum-event-importer</name>
<url>http://maven.apache.org</url>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-config</artifactId>
<scope>compile</scope>
<version>${project.version}</version>
<exclusions>
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-dependencies</artifactId>
<type>pom</type>
<exclusions>
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.lib</artifactId>
</dependency>
<dependency>
<groupId>commons-cli</groupId>
<artifactId>commons-cli</artifactId>
<scope>compile</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifestFile>src/main/resources/META-INF/MANIFEST.MF</manifestFile>
</archive>
</configuration>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>attached</goal>
</goals>
</execution>
</executions>
<configuration>
<archive>
<manifest>

<mainClass>org.opennms.netmgt.tools.spectrum.SpectrumTrapImporter</mainClass>
</manifest>
</archive>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
<!-- appendAssemblyId>false</appendAssemblyId -->
<tarLongFileMode>posix</tarLongFileMode>
</configuration>
</plugin>
</plugins>
</build>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.opennms-tools</groupId>
<artifactId>org.opennms.opennms-tools.syslog-profiler</artifactId>
<version>1.8.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.opennms-tools.syslog-profiler</groupId>
<artifactId>syslog-profiler</artifactId>
<packaging>pom</packaging>
<name>OpenNMS Syslog Profiler (Single Jar)</name>
<dependencies>
<dependency>
<groupId>org.opennms.tests</groupId>
<artifactId>org.opennms.tests.mock-elements</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>opennms-tools</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.opennms-tools</groupId>
<artifactId>org.opennms.opennms-tools.syslog-profiler</artifactId>
<packaging>pom</packaging>
<name>OpenNMS Syslog Profiler</name>
<modules>
<module>profiler</module>
<module>onejar</module>
</modules>
<!--
<repositories>
<repository>
<snapshots>
<enabled>false</enabled>
</snapshots>
<releases>
<enabled>true</enabled>
</releases>
<id>maven-repo</id>
<name>Maven Central</name>
<url>http://maven.opennms.org/content/repositories/central/</url>
</repository>
<repository>
<snapshots>
<enabled>false</enabled>
</snapshots>
<releases>
<enabled>true</enabled>
</releases>
<id>opennms-repo</id>
<name>OpenNMS Repository</name>
<url>http://maven.opennms.org/content/groups/opennms.org-release</url>
</repository>
</repositories>
-->
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms.opennms-tools</groupId>
<artifactId>org.opennms.opennms-tools.syslog-profiler</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.opennms-tools.syslog-profiler</groupId>
<artifactId>org.opennms.opennms-tools.syslog-profiler.profiler</artifactId>
<packaging>jar</packaging>
<name>OpenNMS Syslog Profiler (Main)</name>
<dependencies>
<dependency>
<groupId>commons-cli</groupId>
<artifactId>commons-cli</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.daemon</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.xml</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<artifactId>opennms</artifactId>
<groupId>org.opennms</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>opennms-util</artifactId>
<name>OpenNMS Utilities</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.core.concurrent.*;version="${project.version}",
org.opennms.core.fiber.*;version="${project.version}",
org.opennms.core.queue.*;version="${project.version}",
org.opennms.core.resource.*;version="${project.version}",
org.opennms.core.resource.db.*;version="${project.version}",
<!-- Don't export org.opennms.core.utils to avoid conflicts with
core/lib -->
<!-- org.opennms.core.utils.*;version="${project.version}", -->
org.opennms.core.utils.url.*;version="${project.version}",
org.opennms.core.utils.http.*;version="${project.version}",
org.opennms.core.utils.jexl.*;version="${project.version}"
</Export-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-jexl</artifactId>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>jcl-over-slf4j</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jaxb-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
</dependency>
<dependency>
<groupId>xalan</groupId>
<artifactId>serializer</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.lib</artifactId>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
</dependency>
</dependencies>
</project>
<?xml version="1.0"?>
<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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>opennms</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>opennms-web-api</artifactId>
<name>OpenNMS Web APIs</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>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.lib</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-config</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-model</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-api</artifactId>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>${gsonVersion}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.distributed</groupId>
<artifactId>org.opennms.features.distributed.kv-store.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-provision-persistence</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.reporting</groupId>
<artifactId>org.opennms.features.reporting.core</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jfreechart-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>servlet-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-security-core-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-web-dependencies</artifactId>
<type>pom</type>
</dependency>
<!-- test dependencies -->
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.lib</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.db</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.services</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-test-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-mock</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrd-jrobin</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jrrd2-dependencies</artifactId>
<scope>test</scope>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrdtool-api</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.persistence.rrd</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?xml version="1.0"?>
<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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>opennms</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms</groupId>
<artifactId>opennms-web-dependencies</artifactId>
<packaging>pom</packaging>
<name>OpenNMS Web Dependencies</name>
<dependencies>
<dependency>
<groupId>commons-dbcp</groupId>
<artifactId>commons-dbcp</artifactId>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
</dependency>
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
</dependency>
<!-- org.opennms packages -->
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-config</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-config-model</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-javamail-api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-model</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-provisiond</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-provision-persistence</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-reporting</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrd-api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrd-jrobin</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrdtool-api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rws</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-util</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-web-api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.web-assets</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.springframework-security</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>dnsjava-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>hibernate-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>javamail-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>snmp-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-security-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-web-dependencies</artifactId>
<type>pom</type>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<artifactId>opennms</artifactId>
<groupId>org.opennms</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>opennms-webapp-rest</artifactId>
<packaging>war</packaging>
<name>OpenNMS :: Web Application :: REST</name>
<properties>
<!--
This is used by runInPlace.sh to get the overwise provided
onms libs into the WEB-INF/lib for jetty
-->
<onmsLibScope>provided</onmsLibScope>
</properties>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<phase>test-compile</phase>
<goals><goal>copy</goal></goals>
</execution>
</executions>
<configuration>
<artifactItems>
<artifactItem>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jaxb-dependencies</artifactId>
<type>pom</type>
<overWrite>false</overWrite>
<outputDirectory>${basedir}/target/endorsed</outputDirectory>
</artifactItem>
</artifactItems>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<configuration>
<archiveClasses>true</archiveClasses>
</configuration>
</plugin>

<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<executions>
<execution>
<id>attach-artifacts</id>
<phase>package</phase>
<goals>
<goal>attach-artifact</goal>
</goals>
<configuration>
<artifacts>
<artifact>
<file>target/opennms-webapp-rest-$
{project.version}/WEB-INF/lib/opennms-webapp-rest-${project.version}.jar</file>
<type>jar</type>
</artifact>
</artifacts>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>runInPlace</id>
<activation><activeByDefault>false</activeByDefault></activation>
<properties>
<onmsLibScope>compile</onmsLibScope>
</properties>
<dependencies>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-api</artifactId>
<version>${log4j2Version}</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
<version>${log4j2Version}</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-1.2-api</artifactId>
<version>${log4j2Version}</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-slf4j-impl</artifactId>
<version>${log4j2Version}</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-icmp-jna</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-icmp-best</artifactId>
</dependency>
</dependencies>
</profile>
</profiles>
<dependencies>

<!-- indirect OpenNMS dependencies that belong in $OPENNMS_HOME/lib -->


<!-- these should all be <scope>${onmsLibScope}</scope> and also included in
opennms-base-assembly -->

<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao</artifactId>
<scope>${onmsLibScope}</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-provision-persistence</artifactId>
<scope>${onmsLibScope}</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrdtool-api</artifactId>
<scope>${onmsLibScope}</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-alarm-northbounder-email</artifactId>
<scope>${onmsLibScope}</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-alarm-northbounder-syslog</artifactId>
<scope>${onmsLibScope}</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-alarm-northbounder-snmptrap</artifactId>
<scope>${onmsLibScope}</scope>
</dependency>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.rest-provider</artifactId>
<version>${project.version}</version>
<scope>${onmsLibScope}</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-web-dependencies</artifactId>
<type>pom</type>
<scope>${onmsLibScope}</scope>
<!--
We have to exclude this Java compiler from the classpath because it
conflicts with one bundled inside gwt-dev that is used when GWT compiles
code into Javascript.

http://code.google.com/p/google-web-toolkit/issues/detail?id=5290
-->
<exclusions>
<exclusion>
<groupId>org.eclipse.jdt.core.compiler</groupId>
<artifactId>ecj</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>cxf-dependencies</artifactId>
<type>pom</type>
<scope>${onmsLibScope}</scope>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.soa</artifactId>
<scope>${onmsLibScope}</scope>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.lib</artifactId>
<scope>${onmsLibScope}</scope>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.db</artifactId>
<scope>${onmsLibScope}</scope>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.config</artifactId>
<scope>${onmsLibScope}</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<scope>${onmsLibScope}</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.bsm</groupId>
<artifactId>org.opennms.features.bsm.service.api</artifactId>
<version>${project.version}</version>
<scope>${onmsLibScope}</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.rest</groupId>
<artifactId>org.opennms.features.rest.mapper</artifactId>
<version>${project.version}</version>
<scope>${onmsLibScope}</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.enlinkd</groupId>
<artifactId>org.opennms.features.enlinkd.service.api</artifactId>
<scope>${onmsLibScope}</scope>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>${gsonVersion}</version>
</dependency>
<dependency>
<groupId>javax.validation</groupId>
<artifactId>validation-api</artifactId>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-validator-annotation-processor</artifactId>
</dependency>

<!-- Discovery -->


<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.discovery</artifactId>
<scope>${onmsLibScope}</scope>
</dependency>

<dependency>
<groupId>org.opennms.features.timeformat</groupId>
<artifactId>org.opennms.features.timeformat.api</artifactId>
<version>${project.version}</version>
<scope>${onmsLibScope}</scope>
</dependency>

<dependency>
<groupId>org.opennms</groupId>
<artifactId>org.opennms.config-dao.poll-outages.api</artifactId>
<version>${project.version}</version>
<scope>${onmsLibScope}</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>org.opennms.config-dao.thresholding.api</artifactId>
<version>${project.version}</version>
<scope>${onmsLibScope}</scope>
</dependency>

<dependency>
<groupId>org.opennms.features.timeformat</groupId>
<artifactId>org.opennms.features.timeformat.impl</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>

<!-- CORS support -->


<dependency>
<groupId>org.ebaysf.web</groupId>
<artifactId>cors-filter</artifactId>
<version>1.0.1</version>
</dependency>

<!-- test dependencies -->


<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-mock</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-provision-persistence</artifactId>
<type>test-jar</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-detector-lineoriented</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-icmp-jna</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-icmp-best</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrd-api</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrd-jrobin</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jrrd2-dependencies</artifactId>
<scope>test</scope>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.db</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.rest</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.xml</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.services</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.persistence.rrd</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.ticketing</groupId>
<artifactId>org.opennms.features.ticketing.daemon</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.enlinkd</groupId>
<artifactId>org.opennms.features.enlinkd.persistence.impl</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.enlinkd</groupId>
<artifactId>org.opennms.features.enlinkd.service.impl</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.skyscreamer</groupId>
<artifactId>jsonassert</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>
<!-- Expose the test context for thresholding DAOs -->
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.thresholding.impl</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<!-- Expose the test context for poller DAOs -->
<groupId>org.opennms</groupId>
<artifactId>opennms-services</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.distributed</groupId>
<artifactId>org.opennms.features.distributed.kv-
store.json.postgres</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
</dependencies>

<pluginRepositories>
<pluginRepository>
<snapshots><enabled>false</enabled></snapshots>
<releases><enabled>true</enabled></releases>
<id>opennms-repo</id>
<name>OpenNMS Repository</name>
<url>http://maven.opennms.org/content/groups/opennms.org-release</url>
</pluginRepository>
</pluginRepositories>

<repositories>
<repository>
<snapshots><enabled>false</enabled></snapshots>
<releases><enabled>true</enabled></releases>
<id>opennms-repo</id>
<name>OpenNMS Repository</name>
<url>http://maven.opennms.org/content/groups/opennms.org-release</url>
</repository>
</repositories>

</project>
<?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/maven-v4_0_0.xsd">
<parent>
<artifactId>opennms</artifactId>
<groupId>org.opennms</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>opennms-webapp</artifactId>
<packaging>war</packaging>
<name>OpenNMS Web Application</name>
<properties>
<moduleName>org.opennms.dashboard.Dashboard</moduleName>
<moduleHtml>index.html</moduleHtml>
<web.port>8080</web.port>
<!-- this is used by runInPlace.sh to get the overwise provided
nms libs into the WEB-INF/lib for jetty -->
<onmsLibScope>provided</onmsLibScope>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<id>unpack-js</id>
<phase>process-resources</phase>
<goals><goal>unpack</goal></goals>
<configuration>
<artifactItems>
<artifactItem>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.web-assets</artifactId>
<version>${project.version}</version>
<classifier>dist</classifier>
<overWrite>true</overWrite>
<outputDirectory>target/opennms-webapp-$
{project.version}</outputDirectory>
</artifactItem>
</artifactItems>
<excludes>META-INF/**</excludes>
</configuration>
</execution>
<execution>
<id>copy-jaxb-dependencies</id>
<phase>test-compile</phase>
<goals><goal>copy</goal></goals>
<configuration>
<artifactItems>
<artifactItem>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jaxb-dependencies</artifactId>
<type>pom</type>
<overWrite>false</overWrite>
<outputDirectory>${basedir}/target/endorsed</outputDirectory>
</artifactItem>
</artifactItems>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-clean-plugin</artifactId>
<configuration>
<filesets>
<fileset>
<directory>tomcat</directory>
</fileset>
</filesets>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<configuration>
<archiveClasses>true</archiveClasses>
<archive>
<manifestFile>${project.build.outputDirectory}/META-
INF/MANIFEST.MF</manifestFile>
</archive>
<webResources>
<resource>
<filtering>true</filtering>
<directory>${basedir}/src/main/web-filtered</directory>
</resource>
</webResources>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<extensions>true</extensions>
<executions>
<execution>
<id>bundle-manifest</id>
<phase>process-classes</phase>
<goals>
<goal>manifest</goal>
</goals>
</execution>
</executions>
<configuration>
<supportedProjectTypes>
<supportedProjectType>bundle</supportedProjectType>
<supportedProjectType>jar</supportedProjectType>
<supportedProjectType>war</supportedProjectType>
</supportedProjectTypes>
<instructions>
<Bundle-RequiredExecutionEnvironment>JavaSE-1.8</Bundle-
RequiredExecutionEnvironment>
<Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
<Bundle-Version>${project.version}</Bundle-Version>

<!-- Specify the servlet path for the WAR -->


<Webapp-Context>opennms</Webapp-Context> <!-- Deprecated -->
<Web-ContextPath>opennms</Web-ContextPath>

<!--
Add the webapp JAR itself and WEB-INF/classes to the bundle
classpath.
All embedded JAR files will be appended to this list as well.
-->
<Bundle-ClassPath>.,WEB-INF/classes,WEB-INF/lib/opennms-webapp-$
{project.version}.jar</Bundle-ClassPath>
<!-- Directory that will hold embedded dependency JAR files -->
<Embed-Directory>WEB-INF/lib</Embed-Directory>
<!--
Embed everything with 'compile' or 'runtime' scope. Dependencies with
'provided' scope will be loaded out of OSGi
or from the shared classpath of /opt/opennms/lib.
-->
<Embed-Dependency>*;scope=compile|runtime</Embed-Dependency>
<!-- Embed transitive dependencies in WEB-INF/lib -->
<Embed-Transitive>true</Embed-Transitive>

<Import-Package>
<!--
These are required classes that are not autodetected by bnd from:
- web.xml
- Spring
-->
org.eclipse.jetty.servlet,
org.opennms.core.soa.config,
org.springframework.beans.factory.config;version="[4.0,5)",
org.springframework.context.config;version="[4.0,5)",
org.springframework.context.support;version="[4.0,5)",
org.springframework.js.resource, <!-- No version because webflow is a
wrapped dep :/ -->
org.springframework.orm.hibernate3.support;version="[4.0,5)",
<!-- Spring Security namespace handler -->
org.springframework.security.config;version="[3.2,4)",
org.springframework.security.web.authentication;version="[3.2,4)",
org.springframework.transaction.config;version="[4.0,5)",
org.springframework.web.context;version="[4.0,5)",
org.springframework.web.filter;version="[4.0,5)",

<!-- Mark some packages that dependency JARs rely on as optional -->
<!-- Optional dependencies of jdom -->
oracle.xml*;resolution:=optional,
org.jaxen*;resolution:=optional,
<!-- Optional dependencies on old JAXP implementations -->
com.sun.org.apache*;resolution:=optional,
<!-- Optional dependency on Tomcat taglibs -->
org.apache.taglibs*;resolution:=optional,
<!-- These are probably optional dependencies of BSF -->
org.mozilla.javascript;resolution:=optional,
org.python.core;resolution:=optional,
org.python.util;resolution:=optional,

<!-- Exclude some deprecated packages that get detected by bnd -->
<!-- Exclude FOP 0.20.0 package -->
!org.apache.fop.messaging,
<!-- Deprecated dependency on Apache Avalon LogKit -->
!org.apache.log,
<!-- Exclude sitemesh, not sure where the hell it is coming from -->
!com.opensymphony.module.sitemesh.filter,
<!-- Exclude JUnit, not sure where the hell it is coming from -->
!junit*,
<!-- Exclude Gilead, it is an optional GWT dependency -->
!net.sf.gilead*,
<!-- This is a spurious code generation dependency -->
!org.zeroturnaround.javarebel,
*
</Import-Package>
<!--
TODO: Exclude all packages from export to get the webapp to load.
This needs to be changed to allow the webapp to function. We need to
resolve
package conflicts between opennms-webapp and other projects.
-->
<Export-Package>
<!--
org.opennms.web.account.selfService,
org.opennms.web.admin.discovery,
org.opennms.web.admin.nodeManagement,
org.opennms.web.admin.notification,
org.opennms.web.admin.roles,
org.opennms.web.admin.users,
org.opennms.web.alarm,
org.opennms.web.asset,
org.opennms.web.category,
org.opennms.web.element,
org.opennms.web.event,
org.opennms.web.graph,
org.opennms.web.mail,
org.opennms.web.nodelabel
-->
!*
</Export-Package>
</instructions>
</configuration>
</plugin>

<!-- plugin to use to run webapp in an embedded tomcat -->


<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>tomcat-maven-plugin</artifactId>
<version>1.1</version>
<configuration>
<path>/${project.artifactId}</path>
<port>${web.port}</port>
</configuration>
</plugin>
<!-- plugin to use to run webapp in an embedded jetty -->
<plugin>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-maven-plugin</artifactId>
<configuration>
<contextPath>/opennms</contextPath>
<scanIntervalSeconds>10</scanIntervalSeconds>
<connectors>
<connector
implementation="org.eclipse.jetty.server.nio.SelectChannelConnector">
<port>${web.port}</port>
<maxIdleTime>60000</maxIdleTime>
</connector>
</connectors>
</configuration>
</plugin>

<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<descriptors>
<descriptor>src/assembly/meta-inf.xml</descriptor>
<descriptor>src/assembly/xsds.xml</descriptor>
</descriptors>
<overrideUid>0</overrideUid>
<overrideGid>0</overrideGid>
<tarLongFileMode>posix</tarLongFileMode>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<executions>
<execution>
<id>attach-artifacts</id>
<phase>package</phase>
<goals>
<goal>attach-artifact</goal>
</goals>
<configuration>
<artifacts>
<artifact>
<file>target/opennms-webapp-${project.version}/WEB-
INF/lib/opennms-webapp-${project.version}.jar</file>
<type>jar</type>
</artifact>
</artifacts>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
<pluginManagement>
<plugins>
<!--This plugin's configuration is used to store Eclipse m2e settings
only. It has no influence on the Maven build itself.-->
<plugin>
<groupId>org.eclipse.m2e</groupId>
<artifactId>lifecycle-mapping</artifactId>
<version>1.0.0</version>
<configuration>
<lifecycleMappingMetadata>
<pluginExecutions>
<pluginExecution>
<pluginExecutionFilter>

<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-
plugin</artifactId>
<versionRange>[2.4,)</versionRange>
<goals><goal>copy</goal></goals>
</pluginExecutionFilter>
<action><ignore/></action>
</pluginExecution>
</pluginExecutions>
</lifecycleMappingMetadata>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
<profiles>
<profile>
<id>runInPlace</id>
<activation><activeByDefault>false</activeByDefault></activation>
<properties>
<onmsLibScope>compile</onmsLibScope>
</properties>
<dependencies>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-api</artifactId>
<version>${log4j2Version}</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
<version>${log4j2Version}</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-1.2-api</artifactId>
<version>${log4j2Version}</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-slf4j-impl</artifactId>
<version>${log4j2Version}</version>
<scope>runtime</scope>
</dependency>
</dependencies>
</profile>
<profile>
<id>jspc</id>
<activation><activeByDefault>true</activeByDefault></activation>
<build>
<plugins>
<plugin>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-jspc-maven-plugin</artifactId>
<executions>
<execution>
<id>jspc</id>
<goals>
<goal>jspc</goal>
</goals>
<configuration>
<keepSources>true</keepSources>
<webXmlFragment>${basedir}/target/web.xml.jspc-
insert</webXmlFragment>
<generatedClasses>${basedir}/target/jsp-
classes</generatedClasses>
<useProvidedScope>true</useProvidedScope>
<tldJarNamePatterns>.*\.jar$</tldJarNamePatterns>
</configuration>
</execution>
</executions>
<!-- add some jars to the plugin classpath so they can be searched
for .tld files -->
<dependencies>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-web-dependencies</artifactId>
<type>pom</type>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-security-dependencies</artifactId>
<type>pom</type>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.extremecomponents</groupId>
<artifactId>extremecomponents</artifactId>
<version>1.0.1</version>
<exclusions>
<exclusion>
<groupId>taglibs</groupId>
<artifactId>standard</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jstl-dependencies</artifactId>
<type>pom</type>
<version>${project.version}</version>
</dependency>
</dependencies>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<dependencies>
<!-- this dependency only exists for unpacking into the final webapp, hence
scope=provided -->
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.web-assets</artifactId>
<version>${project.version}</version>
<classifier>dist</classifier>
<scope>provided</scope>
</dependency>
<!-- ...but this one contains code -->
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.web-assets</artifactId>
<scope>${onmsLibScope}</scope>
</dependency>

<!-- indirect OpenNMS dependencies that belong in $OPENNMS_HOME/lib -->


<!-- these should all be <scope>${onmsLibScope}</scope> and also included in
opennms-base-assembly -->

<dependency>
<groupId>org.eclipse.jetty.websocket</groupId>
<artifactId>websocket-servlet</artifactId>
<version>${jettyVersion}</version>
</dependency>

<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao</artifactId>
<scope>${onmsLibScope}</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-services</artifactId>
<scope>${onmsLibScope}</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.enlinkd</groupId>
<artifactId>org.opennms.features.enlinkd.persistence.api</artifactId>
<version>${project.version}</version>
<scope>${onmsLibScope}</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.enlinkd</groupId>
<artifactId>org.opennms.features.enlinkd.service.api</artifactId>
<version>${project.version}</version>
<scope>${onmsLibScope}</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-web-api</artifactId>
<scope>${onmsLibScope}</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-reporting</artifactId>
<scope>${onmsLibScope}</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-provision-persistence</artifactId>
<scope>${onmsLibScope}</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrd-jrobin</artifactId>
<scope>${onmsLibScope}</scope>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jrrd2-dependencies</artifactId>
<scope>${onmsLibScope}</scope>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrdtool-api</artifactId>
<scope>${onmsLibScope}</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-web-dependencies</artifactId>
<type>pom</type>
<scope>${onmsLibScope}</scope>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.soa</artifactId>
<scope>${onmsLibScope}</scope>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.db</artifactId>
<scope>${onmsLibScope}</scope>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.sysprops</artifactId>
<version>${project.version}</version>
<scope>${onmsLibScope}</scope>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.config</artifactId>
<scope>${onmsLibScope}</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.sink</groupId>
<artifactId>org.opennms.core.ipc.sink.common</artifactId>
<version>${project.version}</version>
<scope>${onmsLibScope}</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.rpc</groupId>
<artifactId>org.opennms.core.ipc.rpc.common</artifactId>
<version>${project.version}</version>
<scope>${onmsLibScope}</scope>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>felix-dependencies</artifactId>
<type>pom</type>
<scope>${onmsLibScope}</scope>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>rancid-dependencies</artifactId>
<type>pom</type>
<scope>${onmsLibScope}</scope>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>snmp-dependencies</artifactId>
<type>pom</type>
<scope>${onmsLibScope}</scope>
</dependency>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.instrumentationLogReader</artifactId>
<scope>${onmsLibScope}</scope>
</dependency>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.discovery</artifactId>
<scope>${onmsLibScope}</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.reporting</groupId>
<artifactId>org.opennms.features.reporting.core</artifactId>
<scope>${onmsLibScope}</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.reporting</groupId>
<artifactId>org.opennms.features.reporting.api</artifactId>
<scope>${onmsLibScope}</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.reporting</groupId>
<artifactId>org.opennms.features.reporting.availability</artifactId>
<scope>${onmsLibScope}</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.reporting</groupId>
<artifactId>org.opennms.features.reporting.model</artifactId>
<scope>${onmsLibScope}</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.reporting</groupId>
<artifactId>org.opennms.features.reporting.dao</artifactId>
<scope>${onmsLibScope}</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.reporting</groupId>
<artifactId>org.opennms.features.reporting.repository</artifactId>
<scope>${onmsLibScope}</scope>
</dependency>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.request-tracker</artifactId>
<scope>${onmsLibScope}</scope>
</dependency>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.springframework-security</artifactId>
<scope>${onmsLibScope}</scope>
</dependency>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.system-report</artifactId>
<scope>${onmsLibScope}</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.bsm</groupId>
<artifactId>org.opennms.features.bsm.service.api</artifactId>
<version>${project.version}</version>
<scope>${onmsLibScope}</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.measurements</groupId>
<artifactId>org.opennms.features.measurements.impl</artifactId>
<scope>${onmsLibScope}</scope>
</dependency>

<!-- indirect 3rd-party dependencies that belong in $OPENNMS_HOME/lib -->


<!-- these should all be <scope>${onmsLibScope}</scope> and also included in
opennms-base-assembly -->

<dependency>
<groupId>commons-beanutils</groupId>
<artifactId>commons-beanutils</artifactId>
<scope>${onmsLibScope}</scope>
</dependency>
<dependency>
<groupId>commons-collections</groupId>
<artifactId>commons-collections</artifactId>
<scope>${onmsLibScope}</scope>
</dependency>
<dependency>
<groupId>commons-digester</groupId>
<artifactId>commons-digester</artifactId>
<scope>${onmsLibScope}</scope>
</dependency>
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
<scope>${onmsLibScope}</scope>
</dependency>
<dependency>
<groupId>commons-validator</groupId>
<artifactId>commons-validator</artifactId>
<scope>${onmsLibScope}</scope>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<scope>${onmsLibScope}</scope>
</dependency>
<dependency>
<groupId>net.sf.json-lib</groupId>
<artifactId>json-lib</artifactId>
<classifier>jdk15</classifier>
<scope>${onmsLibScope}</scope>
<exclusions>
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.opencsv</groupId>
<artifactId>opencsv</artifactId>
</dependency>
<dependency>
<groupId>opensymphony</groupId>
<artifactId>ognl</artifactId>
<scope>${onmsLibScope}</scope>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-jexl</artifactId>
<scope>${onmsLibScope}</scope>
</dependency>
<dependency>
<groupId>org.apache.xmlgraphics</groupId>
<artifactId>batik-dom</artifactId>
<scope>${onmsLibScope}</scope>
</dependency>
<dependency>
<groupId>org.apache.xmlgraphics</groupId>
<artifactId>batik-svg-dom</artifactId>
<scope>${onmsLibScope}</scope>
</dependency>
<dependency>
<groupId>org.apache.xmlgraphics</groupId>
<artifactId>batik-transcoder</artifactId>
<scope>${onmsLibScope}</scope>
<exclusions>
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.xmlgraphics</groupId>
<artifactId>batik-xml</artifactId>
<scope>${onmsLibScope}</scope>
</dependency>
<dependency>
<groupId>org.apache.xmlgraphics</groupId>
<artifactId>batik-util</artifactId>
<scope>${onmsLibScope}</scope>
</dependency>
<dependency>
<groupId>org.apache.taglibs</groupId>
<artifactId>taglibs-standard-impl</artifactId>
<scope>${onmsLibScope}</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<scope>${onmsLibScope}</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>jcl-over-slf4j</artifactId>
<scope>${onmsLibScope}</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>org.opennms.config-dao.thresholding.api</artifactId>
<version>${project.version}</version>
<scope>${onmsLibScope}</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>org.opennms.config-dao.poll-outages.api</artifactId>
<version>${project.version}</version>
<scope>${onmsLibScope}</scope>
</dependency>

<!-- indirect 3rd-party dependencies that belong in WEB-INF/lib -->


<!-- these should all be <scope>compile</scope> -->

<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi</artifactId>
<exclusions>
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
<exclusion>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.rometools</groupId>
<artifactId>rome</artifactId>
<exclusions>
<exclusion>
<groupId>jdom</groupId>
<artifactId>jdom</artifactId>
</exclusion>
</exclusions>
</dependency>
<!-- Use an OSGi-compatible jdom bundle -->
<dependency>
<groupId>org.apache.servicemix.bundles</groupId>
<artifactId>org.apache.servicemix.bundles.jdom</artifactId>
<version>1.1_4</version>
</dependency>
<dependency>
<groupId>org.extremecomponents</groupId>
<artifactId>extremecomponents</artifactId>
<exclusions>
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
</exclusions>
</dependency>

<!--

JMesa is the latest version of the extremecomponents library. We


should eventually migrate our code to use it.

<dependency>
<groupId>org.jmesa</groupId>
<artifactId>jmesa</artifactId>
</dependency>
-->
<dependency>
<groupId>net.sf.jung</groupId>
<artifactId>jung-api</artifactId>
</dependency>
<dependency>
<groupId>net.sf.jung</groupId>
<artifactId>jung-graph-impl</artifactId>
</dependency>
<dependency>
<groupId>net.sf.jung</groupId>
<artifactId>jung-algorithms</artifactId>
</dependency>
<dependency>
<groupId>net.sf.jung</groupId>
<artifactId>jung-visualization</artifactId>
</dependency>
<dependency>
<groupId>org.freemarker</groupId>
<artifactId>freemarker</artifactId>
<version>${freemarkerVersion}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.topology</groupId>
<artifactId>org.opennms.features.topology.link</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.owasp.encoder</groupId>
<artifactId>encoder-jsp</artifactId>
<version>${owaspEncoderVersion}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-taglib</artifactId>
<version>${project.version}</version>
</dependency>

<!-- test dependencies -->


<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-mock</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-provision-persistence</artifactId>
<type>test-jar</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-icmp-jna</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-icmp-best</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.db</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.http</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.rest</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.snmp</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.xml</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.services</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.tests</groupId>
<artifactId>org.opennms.tests.mock-elements</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.events</groupId>
<artifactId>org.opennms.features.events.daemon</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.persistence.rrd</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.distributed</groupId>
<artifactId>org.opennms.features.distributed.kv-
store.json.postgres</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.easymock</groupId>
<artifactId>easymock</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.directory.server</groupId>
<artifactId>apacheds-core</artifactId>
<version>1.0.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.directory.server</groupId>
<artifactId>apacheds-server-jndi</artifactId>
<version>1.0.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.awaitility</groupId>
<artifactId>awaitility</artifactId>
<version>3.1.6</version>
<scope>test</scope>
</dependency>
</dependencies>

<pluginRepositories>
<pluginRepository>
<snapshots><enabled>false</enabled></snapshots>
<releases><enabled>true</enabled></releases>
<id>opennms-repo</id>
<name>OpenNMS Repository</name>
<url>http://maven.opennms.org/content/groups/opennms.org-release</url>
</pluginRepository>
</pluginRepositories>

<repositories>
<repository>
<snapshots><enabled>false</enabled></snapshots>
<releases><enabled>true</enabled></releases>
<id>opennms-repo</id>
<name>OpenNMS Repository</name>
<url>http://maven.opennms.org/content/groups/opennms.org-release</url>
</repository>
</repositories>

</project>
<?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/maven-v4_0_0.xsd">
<parent>
<artifactId>opennms</artifactId>
<groupId>org.opennms</groupId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>opennms-wmi</artifactId>
<name>OpenNMS WMI Library</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>
<!-- Don't export any packages, expose services only. -->
<Export-Package></Export-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-config</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-model</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jcifs-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jinterop-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>commons-cli</groupId>
<artifactId>commons-cli</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.easymock</groupId>
<artifactId>easymock</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-provision-api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.test-api</artifactId>
<scope>test</scope>
</dependency>
</dependencies>

<repositories>
<repository>
<snapshots><enabled>false</enabled></snapshots>
<releases><enabled>true</enabled></releases>
<id>opennms-repo</id>
<name>OpenNMS Repository</name>
<url>http://maven.opennms.org/content/groups/opennms.org-release</url>
</repository>
</repositories>

</project>
<?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/maven-v4_0_0.xsd">
<!-- OpenNMS Top-Level POM -->
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms</groupId>
<artifactId>opennms</artifactId>
<version>27.0.5</version>
<packaging>pom</packaging>
<name>OpenNMS</name>
<url>http://opennms.org/</url>
<description>
OpenNMS is the world's first enterprise grade network management platform
developed under the open source model. It consists of a community supported open-
source project as well as a commercial services, training and support organization.
</description>
<licenses>
<license>
<name>GNU Affero General Public License</name>
<url>http://www.gnu.org/licenses/agpl.html</url>
<comments>
This Maven metadata is provided for informational purposes only. For
specific licensing
questions, please contact: OpenNMS(R) Licensing (license@opennms.org)
</comments>
</license>
</licenses>
<issueManagement>
<system>Jira</system>
<url>http://issues.opennms.org/</url>
</issueManagement>
<ciManagement>
<system>Bamboo</system>
<url>http://bamboo.internal.opennms.com:8085/</url>
<notifiers>
<notifier>
<type>htmlmail</type>
<address>ci@lists.opennms.com</address>
</notifier>
</notifiers>
</ciManagement>
<developers>
<developer>
<id>soleger</id>
<name>Seth Leger</name>
<email>seth@opennms.org</email>
<roles>
<role>OGP Member</role>
<role>Software Architect</role>
</roles>
<organization>The OpenNMS Group</organization>
<timezone>-5</timezone>
</developer>
<developer>
<id>brozow</id>
<name>Matt Brozowski</name>
<email>brozow@opennms.org</email>
<roles>
<role>OGP Member</role>
<role>Software Architect</role>
</roles>
<organization>The OpenNMS Group</organization>
<timezone>-5</timezone>
</developer>
<developer>
<id>rangerrick</id>
<name>Benjamin Reed</name>
<email>ranger@opennms.org</email>
<roles>
<role>OGP Member</role>
<role>Software Developer</role>
</roles>
<organization>The OpenNMS Group</organization>
<timezone>-5</timezone>
</developer>
</developers>
<mailingLists>
<mailingList>
<name>OpenNMS Discuss List</name>
<subscribe>https://lists.sourceforge.net/lists/listinfo/opennms-
discuss</subscribe>
<unsubscribe>https://lists.sourceforge.net/lists/listinfo/opennms-
discuss</unsubscribe>
<post>opennms-discuss@lists.sourcforge.net</post>
<archive>http://sourceforge.net/mailarchive/forum.php?forum=opennms-
discuss</archive>
</mailingList>
<mailingList>
<name>OpenNMS Developer's List</name>
<subscribe>https://lists.sourceforge.net/lists/listinfo/opennms-
devel</subscribe>
<unsubscribe>https://lists.sourceforge.net/lists/listinfo/opennms-
devel</unsubscribe>
<post>opennms-devel@lists.sourcforge.net</post>
<archive>http://sourceforge.net/mailarchive/forum.php?forum=opennms-
devel</archive>
</mailingList>
<mailingList>
<name>OpenNMS Install Help List</name>
<subscribe>https://lists.sourceforge.net/lists/listinfo/opennms-
install</subscribe>
<unsubscribe>https://lists.sourceforge.net/lists/listinfo/opennms-
install</unsubscribe>
<post>opennms-install@lists.sourcforge.net</post>
<archive>http://sourceforge.net/mailarchive/forum.php?forum=opennms-
install</archive>
</mailingList>
<mailingList>
<name>OpenNMS Source Control List</name>
<subscribe>https://lists.sourceforge.net/lists/listinfo/opennms-
cvs</subscribe>
<unsubscribe>https://lists.sourceforge.net/lists/listinfo/opennms-
cvs</unsubscribe>
<post>opennms-cvs@lists.sourcforge.net</post>
<archive>http://sourceforge.net/mailarchive/forum.php?forum=opennms-
cvs</archive>
</mailingList>
</mailingLists>
<scm>
<connection>scm:git:https://github.com/OpenNMS/opennms.git</connection>
<developerConnection>scm:git:https://$
{user.name}@github.com/OpenNMS/opennms.git</developerConnection>
<url>https://github.com/OpenNMS/opennms</url>
</scm>
<modules>
<!-- build -->
<module>checkstyle</module>

<!-- new structure -->


<module>dependencies</module>
<module>core</module>
<module>container</module>
<module>features</module>
<module>integrations</module>
<module>protocols</module>
<module>tests</module>
<module>integration-tests</module>

<!-- old structure -->


<module>opennms-util</module>
<module>opennms-bootstrap</module>
<module>opennms-model</module>
<module>opennms-ackd</module>
<module>opennms-alarms</module>
<module>opennms-config-tester</module>
<module>opennms-dao-api</module>
<module>opennms-dao</module>
<module>opennms-dao-mock</module>
<module>opennms-icmp</module>
<module>opennms-javamail</module>
<module>opennms-rrd</module>
<module>opennms-config-api</module>
<module>opennms-config-jaxb</module>
<module>opennms-config</module>
<module>opennms-config-model</module>
<module>opennms-provision</module>
<module>opennms-enterprise-reporting</module>
<module>opennms-services</module>
<module>opennms-taglib</module>
<module>opennms-jetty</module>
<module>opennms-correlation</module>
<module>opennms-reporting</module>
<module>opennms-web-api</module>
<module>opennms-web-dependencies</module>
<module>opennms-webapp</module>
<module>opennms-webapp-rest</module>
<module>opennms-wmi</module>
<module>opennms-asterisk</module>
<module>opennms-config-dao</module>
</modules>
<build>
<extensions>
<extension>
<groupId>org.apache.maven.wagon</groupId>
<artifactId>wagon-ssh-external</artifactId>
<version>2.6</version>
</extension>
</extensions>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.sonarsource.scanner.maven</groupId>
<artifactId>sonar-maven-plugin</artifactId>
<version>${sonarVersion}</version>
<dependencies>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>apache-jsp</artifactId>
<version>${jettyVersion}</version>
<exclusions>
<exclusion>
<groupId>org.mortbay.jasper</groupId>
<artifactId>apache-el</artifactId>
</exclusion>
<exclusion>
<groupId>org.mortbay.jasper</groupId>
<artifactId>apache-jsp</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>javax.el</groupId>
<artifactId>javax.el-api</artifactId>
<version>3.0.0</version>
</dependency>
</dependencies>
</plugin>
<!--
<plugin>
<groupId>ch.elca.el4j.maven.plugins</groupId>
<artifactId>maven-depgraph-plugin</artifactId>
<version>1.9</version>
</plugin>
-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-install-plugin</artifactId>
<version>${maven.install.plugin.version}</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<version>3.4</version>
</plugin>
<plugin>
<groupId>org.asciidoctor</groupId>
<artifactId>asciidoctor-maven-plugin</artifactId>
<version>${asciidoctorVersion}</version>
</plugin>
<plugin>
<groupId>net.nicoulaj.maven.plugins</groupId>
<artifactId>checksum-maven-plugin</artifactId>
<version>1.5</version>
</plugin>
<plugin>
<groupId>org.apache.servicemix.tooling</groupId>
<artifactId>depends-maven-plugin</artifactId>
<version>1.2</version>
</plugin>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<version>3.0.1</version>
<extensions>true</extensions>
<configuration>
<obrRepository>NONE</obrRepository>
<instructions>
<!-- Don't add Import-Service MANIFEST.MF headers, just rely on normal
OSGi service resolution -->
<_removeheaders>Import-Service</_removeheaders>
</instructions>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>1.9.1</version>
</plugin>
<plugin>
<groupId>org.dstovall</groupId>
<artifactId>onejar-maven-plugin</artifactId>
<version>1.4.4</version>
<executions>
<execution>
<configuration>
<onejarVersion>0.96</onejarVersion>
<attachToBuild>true</attachToBuild>
</configuration>
<phase>package</phase>
<goals>
<goal>one-jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>gwt-maven-plugin</artifactId>
<version>${gwtPluginVersion}</version>
<dependencies>
<dependency>
<groupId>com.google.gwt</groupId>
<artifactId>gwt-user</artifactId>
<version>${gwtVersion}</version>
</dependency>
<dependency>
<groupId>com.google.gwt</groupId>
<artifactId>gwt-dev</artifactId>
<version>${gwtVersion}</version>
</dependency>
</dependencies>
<executions>
<execution>
<goals>
<goal>compile</goal>
</goals>
</execution>
<execution>
<id>test</id>
<phase>test</phase>
<goals>
<goal>test</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>axistools-maven-plugin</artifactId>
<version>1.4</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>buildnumber-maven-plugin</artifactId>
<version>1.2</version>
<configuration>
<doCheck>false</doCheck>
<getRevisionOnlyOnce>true</getRevisionOnlyOnce>
<revisionOnScmFailure>0</revisionOnScmFailure>
</configuration>
<executions>
<execution>
<phase>validate</phase>
<goals><goal>create</goal></goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jxr-plugin</artifactId>
<version>2.5</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.8.2</version>
<configuration>
<deployAtEnd>false</deployAtEnd>
<retryFailedDeploymentCount>2</retryFailedDeploymentCount>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>2.10</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.10.4</version>
<configuration>
<maxmemory>3g</maxmemory>
<additionalparam>-Xdoclint:none</additionalparam>
<failOnError>false</failOnError>
<tags>
<tag>
<name>hibernate.class</name>
<placement>a</placement>
<head>Hibernate class:</head>
</tag>
<tag>
<name>hibernate.column</name>
<placement>a</placement>
<head>Hibernate column:</head>
</tag>
<tag>
<name>hibernate.component</name>
<placement>a</placement>
<head>Hibernate component:</head>
</tag>
<tag>
<name>hibernate.composite-element</name>
<placement>a</placement>
<head>Hibernate composite-element:</head>
</tag>
<tag>
<name>hibernate.id</name>
<placement>a</placement>
<head>Hibernate id:</head>
</tag>
<tag>
<name>hibernate.key</name>
<placement>a</placement>
<head>Hibernate key:</head>
</tag>
<tag>
<name>hibernate.list</name>
<placement>a</placement>
<head>Hibernate list:</head>
</tag>
<tag>
<name>hibernate.list-index</name>
<placement>a</placement>
<head>Hibernate list-index:</head>
</tag>
<tag>
<name>hibernate.many-to-many</name>
<placement>a</placement>
<head>Hibernate many-to-many:</head>
</tag>
<tag>
<name>hibernate.many-to-one</name>
<placement>a</placement>
<head>Hibernate many-to-one:</head>
</tag>
<tag>
<name>hibernate.mapping</name>
<placement>a</placement>
<head>Hibernate mapping:</head>
</tag>
<tag>
<name>hibernate.one-to-many</name>
<placement>a</placement>
<head>Hibernate one-to-many:</head>
</tag>
<tag>
<name>hibernate.property</name>
<placement>a</placement>
<head>Hibernate property:</head>
</tag>
<tag>
<name>hibernate.set</name>
<placement>a</placement>
<head>Hibernate set:</head>
</tag>
<tag>
<name>hibernate.version</name>
<placement>a</placement>
<head>Hibernate version:</head>
</tag>
</tags>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.0.2</version>
<configuration>
<keystore>${webstart.keystore}</keystore>
<keypass>${webstart.keypass}</keypass>
<storepass>${webstart.storepass}</storepass>
<alias>${webstart.keyalias}</alias>
<dnameCn>${webstart.dnameCn}</dnameCn>
<dnameCn>${webstart.dnameCn}</dnameCn>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jarsigner-plugin</artifactId>
<version>1.2</version>
<configuration>
<keystore>${webstart.keystore}</keystore>
<keypass>${webstart.keypass}</keypass>
<storepass>${webstart.storepass}</storepass>
<alias>${webstart.keyalias}</alias>
<dnameCn>${webstart.dnameCn}</dnameCn>
<dnameCn>${webstart.dnameCn}</dnameCn>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-project-info-reports-plugin</artifactId>
<version>2.4</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<version>3.0.0</version>
<configuration>
<overrideUid>0</overrideUid>
<overrideGid>0</overrideGid>
<tarLongFileMode>posix</tarLongFileMode>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-clean-plugin</artifactId>
<version>2.6.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-eclipse-plugin</artifactId>
<version>${maven.eclipse.plugin.version}</version>
</plugin>
<plugin>
<groupId>org.ops4j</groupId>
<artifactId>maven-pax-plugin</artifactId>
<version>${maven.pax.plugin.version}</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>${maven.surefire.plugin.version}</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<version>${maven.failsafe.plugin.version}</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>3.2.2</version>
<configuration>
<archiveClasses>true</archiveClasses>
<outputFileNameMapping>@{artifactId}@-
@{baseVersion}@.@{extension}@</outputFileNameMapping>
<archive>
<manifest>
<addClasspath>true</addClasspath>
<classpathLayoutType>custom</classpathLayoutType>
<customClasspathLayout>WEB-INF/lib/$${artifact.groupIdPath}/$$
{artifact.artifactId}-$${artifact.baseVersion}$${dashClassifier?}.$$
{artifact.extension}</customClasspathLayout>
</manifest>
</archive>
</configuration>
</plugin>
<!-- Make sure that this version of gmaven roughly matches the version of
groovy that we depend on -->
<plugin>
<groupId>org.codehaus.gmaven</groupId>
<artifactId>gmaven-plugin</artifactId>
<version>1.4</version>
<configuration>
<providerSelection>1.8</providerSelection>
</configuration>
<dependencies>
<dependency>
<groupId>org.codehaus.gmaven.runtime</groupId>
<artifactId>gmaven-runtime-1.8</artifactId>
<version>1.4</version>
</dependency>
<dependency>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy-all</artifactId>
<version>${groovyVersion}</version>
</dependency>
</dependencies>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>native-maven-plugin</artifactId>
<version>1.0-alpha-7</version>
</plugin>
<plugin>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-maven-plugin</artifactId>
<version>${jettyVersion}</version>
</plugin>
<plugin>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-jspc-maven-plugin</artifactId>
<version>${jettyVersion}</version>
</plugin>
<!--This plugin's configuration is used to store Eclipse m2e settings only.
It has no influence on the Maven build itself.-->
<plugin>
<groupId>org.eclipse.m2e</groupId>
<artifactId>lifecycle-mapping</artifactId>
<version>1.0.0</version>
<configuration>
<lifecycleMappingMetadata>
<pluginExecutions>
<pluginExecution>
<pluginExecutionFilter>
<groupId>org.codehaus.gmaven</groupId>
<artifactId>gmaven-plugin</artifactId>
<versionRange>[1.0,)</versionRange>
<goals>
<goal>execute</goal>
</goals>
</pluginExecutionFilter>
<action>
<ignore/>
</action>
</pluginExecution>
<pluginExecution>
<pluginExecutionFilter>
<groupId>org.codehaus.gmaven</groupId>
<artifactId>gmaven-plugin</artifactId>
<versionRange>[1.0,)</versionRange>
<goals>
<goal>compile</goal>
<goal>testCompile</goal>
</goals>
</pluginExecutionFilter>
<action>
<execute/>
</action>
</pluginExecution>
<pluginExecution>
<pluginExecutionFilter>
<groupId>org.codehaus.mojo</groupId>
<artifactId>webstart-maven-plugin</artifactId>
<versionRange>[0.9,)</versionRange>
<goals>
<goal>jnlp-download-servlet</goal>
</goals>
</pluginExecutionFilter>
<action>
<ignore/>
</action>
</pluginExecution>
<pluginExecution>
<pluginExecutionFilter>
<groupId>org.codehaus.mojo</groupId>
<artifactId>axistools-maven-plugin</artifactId>
<versionRange>[1.4,)</versionRange>
<goals>
<goal>wsdl2java</goal>
</goals>
</pluginExecutionFilter>
<action>
<ignore/>
</action>
</pluginExecution>
<pluginExecution>
<pluginExecutionFilter>
<groupId>com.sun.tools.jxc.maven2</groupId>
<artifactId>maven-jaxb-schemagen-plugin</artifactId>
<versionRange>[1.2,2.0)</versionRange>
<goals>
<goal>generate</goal>
</goals>
</pluginExecutionFilter>
<action>
<ignore/>
</action>
</pluginExecution>
<pluginExecution>
<pluginExecutionFilter>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-jspc-maven-plugin</artifactId>
<versionRange>[1.0,)</versionRange>
<goals>
<goal>jspc</goal>
</goals>
</pluginExecutionFilter>
<action>
<ignore/>
</action>
</pluginExecution>
<pluginExecution>
<pluginExecutionFilter>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<versionRange>[1.0,)</versionRange>
<goals>
<goal>add-source</goal>
</goals>
</pluginExecutionFilter>
<action>
<execute>
<runOnConfiguration>true</runOnConfiguration>
<runOnIncremental>true</runOnIncremental>
</execute>
</action>
</pluginExecution>
<pluginExecution>
<pluginExecutionFilter>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<versionRange>[1.0,)</versionRange>
<goals>
<goal>check</goal>
</goals>
</pluginExecutionFilter>
<action>
<ignore/>
</action>
</pluginExecution>
<pluginExecution>
<pluginExecutionFilter>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<versionRange>[1.0.0,)</versionRange>
<goals>
<goal>copy</goal>
<goal>copy-dependencies</goal>
<goal>unpack</goal>
</goals>
</pluginExecutionFilter>
<action>
<ignore/>
</action>
</pluginExecution>
<pluginExecution>
<pluginExecutionFilter>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<versionRange>[1.0.0,)</versionRange>
<goals>
<goal>properties</goal>
</goals>
</pluginExecutionFilter>
<action>
<execute/>
</action>
</pluginExecution>
<pluginExecution>
<pluginExecutionFilter>
<groupId>org.apache.servicemix.tooling </groupId>
<artifactId>depends-maven-plugin</artifactId>
<versionRange>[1.2,)</versionRange>
<goals>
<goal>generate-depends-file</goal>
</goals>
</pluginExecutionFilter>
<action>
<execute/>
</action>
</pluginExecution>
<pluginExecution>
<pluginExecutionFilter>
<groupId>org.codehaus.mojo</groupId>
<artifactId>gwt-maven-plugin</artifactId>
<versionRange>[2.5.1,)</versionRange>
<goals>
<goal>resources</goal>
</goals>
</pluginExecutionFilter>
<action>
<ignore/>
</action>
</pluginExecution>
<pluginExecution>
<pluginExecutionFilter>
<groupId>com.vaadin</groupId>
<artifactId>vaadin-maven-plugin</artifactId>
<versionRange>[1.0.2,)</versionRange>
<goals>
<goal>resources</goal>
<goal>update-widgetset</goal>
</goals>
</pluginExecutionFilter>
<action>
<ignore></ignore>
</action>
</pluginExecution>
<pluginExecution>
<pluginExecutionFilter>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<versionRange>[1.0,)</versionRange>
<goals>
<goal>java</goal>
</goals>
</pluginExecutionFilter>
<action>
<execute></execute>
</action>
</pluginExecution>
<pluginExecution>
<pluginExecutionFilter>
<groupId>org.apache.karaf.tooling</groupId>
<artifactId>karaf-maven-plugin</artifactId>
<versionRange>[4.0,)</versionRange>
<goals>
<goal>assembly</goal>
</goals>
</pluginExecutionFilter>
<action>
<ignore/>
</action>
</pluginExecution>
</pluginExecutions>
</lifecycleMappingMetadata>
</configuration>
</plugin>
<plugin>
<groupId>org.jvnet.jaxb2.maven2</groupId>
<artifactId>maven-jaxb2-plugin</artifactId>
<version>0.12.3</version>
</plugin>
<plugin>
<groupId>de.qaware.maven</groupId>
<artifactId>go-offline-maven-plugin</artifactId>
<version>1.2.5</version>
<configuration>
<dynamicDependencies>
<DynamicDependency>
<groupId>org.apache.maven.surefire</groupId>
<artifactId>surefire-junit3</artifactId>
<version>${maven.surefire.plugin.version}</version>
<repositoryType>PLUGIN</repositoryType>
</DynamicDependency>
<DynamicDependency>
<groupId>org.apache.maven.surefire</groupId>
<artifactId>surefire-junit3</artifactId>
<version>${maven.smoke.surefire.plugin.version}</version>
<repositoryType>PLUGIN</repositoryType>
</DynamicDependency>
<DynamicDependency>
<groupId>org.apache.maven.surefire</groupId>
<artifactId>surefire-junit4</artifactId>
<version>${maven.surefire.plugin.version}</version>
<repositoryType>PLUGIN</repositoryType>
</DynamicDependency>
<DynamicDependency>
<groupId>org.apache.maven.surefire</groupId>
<artifactId>surefire-junit4</artifactId>
<version>${maven.smoke.surefire.plugin.version}</version>
<repositoryType>PLUGIN</repositoryType>
</DynamicDependency>
<DynamicDependency>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<version>${maven.antrun.plugin.version}</version>
<repositoryType>PLUGIN</repositoryType>
</DynamicDependency>
<DynamicDependency>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<version>3.0.0</version>
<repositoryType>PLUGIN</repositoryType>
</DynamicDependency>
<DynamicDependency>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven.compiler.plugin.version}</version>
<repositoryType>PLUGIN</repositoryType>
</DynamicDependency>
<DynamicDependency>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<version>${maven.smoke.surefire.plugin.version}</version>
<repositoryType>PLUGIN</repositoryType>
</DynamicDependency>
<DynamicDependency>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-install-plugin</artifactId>
<version>${maven.install.plugin.version}</version>
<repositoryType>PLUGIN</repositoryType>
</DynamicDependency>
<DynamicDependency>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>${maven.resources.plugin.version}</version>
<repositoryType>PLUGIN</repositoryType>
</DynamicDependency>
<DynamicDependency>
<groupId>org.opennms.maven.plugins</groupId>
<artifactId>structure-maven-plugin</artifactId>
<version>1.0</version>
<repositoryType>PLUGIN</repositoryType>
</DynamicDependency>
<DynamicDependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.8.0</version> <!-- minion-core -->
<repositoryType>MAIN</repositoryType>
</DynamicDependency>
<DynamicDependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.8.5</version> <!-- smoke-tests -->
<repositoryType>MAIN</repositoryType>
</DynamicDependency>
<DynamicDependency>
<groupId>javax.samples.jnlp</groupId>
<artifactId>jnlp-servlet</artifactId>
<version>1.6.0</version>
<repositoryType>MAIN</repositoryType>
</DynamicDependency>
</dynamicDependencies>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<version>3.0.0-M3</version>
</plugin>
<plugin>
<groupId>org.opennms.maven.plugins</groupId>
<artifactId>structure-maven-plugin</artifactId>
<version>1.0</version>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<executions>
<execution>
<id>enforce-maven</id>
<goals>
<goal>enforce</goal>
</goals>
<configuration>
<rules>
<requireMavenVersion>
<version>[3.5,)</version>
</requireMavenVersion>
<requireJavaVersion>
<version>[1.8.0,9)</version>
</requireJavaVersion>
</rules>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-clean-plugin</artifactId>
<inherited>false</inherited>
<executions>
<execution>
<id>remove-source-tarball</id>
<phase>process-resources</phase>
<goals><goal>clean</goal></goals>
<configuration>
<excludeDefaultDirectories>true</excludeDefaultDirectories>
<filesets>
<fileset>
<directory>target</directory>
<excludes><exclude>**/*</exclude></excludes>
<includes><include>${project.name}-${project.version}-
source.*</include></includes>
</fileset>
</filesets>
</configuration>
</execution>
<execution>
<id>clean</id>
<phase>clean</phase>
<goals><goal>clean</goal></goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<inherited>false</inherited>
<executions>
<execution>
<phase>process-resources</phase>
<goals><goal>single</goal></goals>
<configuration>
<finalName>${install.package.name}-${project.version}</finalName>
<descriptors>
<descriptor>src/assembly/source.xml</descriptor>
</descriptors>
<classifier>source</classifier>
<skipAssembly>${build.skip.tarball}</skipAssembly>
<overrideUid>0</overrideUid>
<overrideGid>0</overrideGid>
<tarLongFileMode>posix</tarLongFileMode>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-eclipse-plugin</artifactId>
<configuration>
<additionalConfig>
<file>
<name>.settings/org.eclipse.jdt.core.prefs</name>

<url>https://opennms.svn.sourceforge.net/svnroot/opennms/opennms/trunk/src/main/ecl
ipse/org.eclipse.jdt.core.prefs</url>
</file>
</additionalConfig>
</configuration>
</plugin>
<plugin>
<groupId>org.ops4j</groupId>
<artifactId>maven-pax-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>${maven.resources.plugin.version}</version>
<configuration>
<encoding>UTF-8</encoding>
<escapeString>\</escapeString>
<delimiters>
<delimiter>${*}</delimiter>
</delimiters>
<useDefaultDelimiters>false</useDefaultDelimiters>
</configuration>
</plugin>
<plugin>
<inherited>false</inherited>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<version>${maven.antrun.plugin.version}</version>
<executions>
<execution>
<phase>validate</phase>
<configuration>
<target>
<property name="opennms.build.basedir" location="." />
<echo message="base directory is ${opennms.build.basedir}" />
</target>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven.compiler.plugin.version}</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
<encoding>UTF-8</encoding>
<optimize>true</optimize>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.0.1</version>
<executions>
<execution>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>${maven.surefire.plugin.version}</version>
<configuration>
<!-- Don't specify argLine here or it will override the argLine property
value -->
<skip>${skipSurefire}</skip>
<systemPropertyVariables>
<!-- Turn off queuing in the RRD output -->
<org.opennms.rrd.usequeue>false</org.opennms.rrd.usequeue>
<java.awt.headless>true</java.awt.headless>
<java.locale.providers>CLDR,COMPAT</java.locale.providers>
<mock.debug>${mock.debug}</mock.debug>
<mock.rundbtests>${mock.rundbtests}</mock.rundbtests>
<mock.leaveDatabase>${mock.leaveDatabase}</mock.leaveDatabase>
<mock.leaveDatabaseOnFailure>$
{mock.leaveDatabaseOnFailure}</mock.leaveDatabaseOnFailure>
<mock.db.driver>${mock.db.driver}</mock.db.driver>
<mock.db.url>${mock.db.url}</mock.db.url>
<mock.db.adminUser>${mock.db.adminUser}</mock.db.adminUser>
<mock.db.adminPassword>${mock.db.adminPassword}</mock.db.adminPassword>
<mock.runSnmpTests>${mock.runSnmpTests}</mock.runSnmpTests>
<mock.snmpHost>${mock.snmpHost}</mock.snmpHost>
<opennms.library.jicmp>${opennms.library.jicmp}</opennms.library.jicmp>
<opennms.library.jrrd>${opennms.library.jrrd}</opennms.library.jrrd>
<install.rrdtool.bin>${install.rrdtool.bin}</install.rrdtool.bin>
<runRemedyTests>${runRemedyTests}</runRemedyTests>
<runOtrsTests>${runOtrsTests}</runOtrsTests>
<runRtTests>${runRtTests}</runRtTests>
<runMailTests>${runMailTests}</runMailTests>
<runPingTests>${runPingTests}</runPingTests>
<skipIpv6Tests>${skipIpv6Tests}</skipIpv6Tests>
<proxy.port>${proxy.port}</proxy.port>
<opennms.version>${project.version}</opennms.version>
<!-- <opennms.unit.test>true</opennms.unit.test> -->
</systemPropertyVariables>
<forkCount>1</forkCount>
<reuseForks>false</reuseForks>
<rerunFailingTestsCount>$
{ci.rerunFailingTestsCount}</rerunFailingTestsCount>
<reportsDirectory>${project.build.directory}/surefire-reports-$
{ci.instance}</reportsDirectory>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<configuration>
<!-- Don't specify argLine here or it will override the argLine property
value -->
<systemPropertyVariables>
<java.locale.providers>CLDR,COMPAT</java.locale.providers>
<!-- The javax.net.ssl ones are used by integrations/opennms-jasper-
extensions -->
<javax.net.ssl.keyStore>target/test-
keystore.jks</javax.net.ssl.keyStore>

<javax.net.ssl.keyStorePassword>password</javax.net.ssl.keyStorePassword>
<javax.net.ssl.trustStore>target/test-
keystore.jks</javax.net.ssl.trustStore>

<javax.net.ssl.trustStorePassword>password</javax.net.ssl.trustStorePassword>
<!-- <ssl.debug>true</ssl.debug> -->
<!-- <javax.net.debug>ssl,handshake,verbose</javax.net.debug> -->
</systemPropertyVariables>
<!--
Configure failsafe to put reports in the surefire unit test directory
so that
Bamboo and Sonar tally the test results properly.

https://jira.atlassian.com/browse/BAM-15446
-->
<forkCount>1</forkCount>
<!-- We don't reuse forks - any given test should not take longer than
the given timeout -->
<forkedProcessTimeoutInSeconds>$
{test.fork.timeout}</forkedProcessTimeoutInSeconds>
<reuseForks>false</reuseForks>
<rerunFailingTestsCount>$
{ci.rerunFailingTestsCount}</rerunFailingTestsCount>
<skipITs>${skipITs}</skipITs>
<reportsDirectory>${project.build.directory}/failsafe-reports-$
{ci.instance}</reportsDirectory>
</configuration>
<executions>
<execution>
<goals>
<goal>integration-test</goal>
<goal>verify</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9.1</version>
<executions>
<execution>
<id>aggregate</id>
<goals><goal>aggregate</goal></goals>
<phase>site</phase>
<configuration>
<use>false</use>
<aggregate>true</aggregate>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>com.atlassian.maven.plugins</groupId>
<artifactId>maven-clover2-plugin</artifactId>
<version>${cloverVersion}</version>
<configuration>
<generatePdf>true</generatePdf>
<generateXml>true</generateXml>
<generateHtml>true</generateHtml>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-xjc-plugin</artifactId>
<version>${cxfXjcVersion}</version>
</plugin>
</plugins>
</build>

<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-report-plugin</artifactId>
<version>${maven.surefire.report.plugin.version}</version>
<reportSets>
<reportSet>
<id>unit-tests</id>
<reports>
<report>report-only</report>
</reports>
</reportSet>
<reportSet>
<id>integration-tests</id>
<reports>
<report>failsafe-report-only</report>
</reports>
</reportSet>
</reportSets>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-pmd-plugin</artifactId>
<version>3.4</version>
<configuration>
<targetJdk>1.8</targetJdk>
<rulesets>
<!--
<ruleset>/rulesets/basic-jsf.xml</ruleset>
<ruleset>/rulesets/basic-jsp.xml</ruleset>
-->
<ruleset>/rulesets/basic.xml</ruleset>
<!--
<ruleset>/rulesets/braces.xml</ruleset>
<ruleset>/rulesets/clone.xml</ruleset>
<ruleset>/rulesets/codesize.xml</ruleset>
-->
<ruleset>/rulesets/controversial.xml</ruleset>
<!--
<ruleset>/rulesets/coupling.xml</ruleset>
<ruleset>/rulesets/design.xml</ruleset>
<ruleset>/rulesets/favorites.xml</ruleset>
<ruleset>/rulesets/finalizers.xml</ruleset>
<ruleset>/rulesets/imports.xml</ruleset>
<ruleset>/rulesets/j2ee.xml</ruleset>
<ruleset>/rulesets/javabeans.xml</ruleset>
<ruleset>/rulesets/junit.xml</ruleset>
<ruleset>/rulesets/logging-jakarta-commons.xml</ruleset>
<ruleset>/rulesets/logging-java.xml</ruleset>
<ruleset>/rulesets/migrating.xml</ruleset>
<ruleset>/rulesets/migrating_to_13.xml</ruleset>
<ruleset>/rulesets/migrating_to_14.xml</ruleset>
<ruleset>/rulesets/migrating_to_15.xml</ruleset>
<ruleset>/rulesets/naming.xml</ruleset>
<ruleset>/rulesets/optimizations.xml</ruleset>
<ruleset>/rulesets/scratchpad.xml</ruleset>
<ruleset>/rulesets/strictexception.xml</ruleset>
<ruleset>/rulesets/strings.xml</ruleset>
<ruleset>/rulesets/sunsecure.xml</ruleset>
<ruleset>/rulesets/typeresolution.xml</ruleset>
<ruleset>/rulesets/unusedcode.xml</ruleset>
-->
</rulesets>
<format>xml</format>
<linkXref>true</linkXref>
<sourceEncoding>utf-8</sourceEncoding>
<minimumTokens>100</minimumTokens>
</configuration>
</plugin>
<!--
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
</plugin>
-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jxr-plugin</artifactId>
<version>2.5</version>
</plugin>
<!--
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>taglist-maven-plugin</artifactId>
<version>2.0</version>
</plugin>
-->
</plugins>
</reporting>

<properties>
<!--
Surefire forked JVM arguments
@see http://maven.apache.org/surefire/maven-surefire-plugin/examples/system-
properties.html

Use 1GB of heap for running tests.

Set java.security.egd so that entropy exhaustion doesn't cause


problematic pauses when starting MockSnmpAgent in unit tests.

Add target/endorsed as an endorsed API directory in case projects require it.


-->
<argLineMemory>-Xmx1g</argLineMemory>
<argLine>${argLineMemory} -Djava.security.egd=/dev/./urandom
-Djava.endorsed.dirs=${basedir}/target/endorsed</argLine>
<skipITs>true</skipITs>

<!--
This is on by default now that root is not required for pinging.
If you have issues with this, see https://wiki.opennms.org/wiki/ICMP for
enabling non-root ping.
However, we need to set the default in a profile (NMS-8838).
<runPingTests>true</runPingTests> -->

<maxCpus>2</maxCpus>

<!-- make sure CLDR is the default locale provider anywhere in the maven
process -->
<java.locale.providers>CLDR,COMPAT</java.locale.providers>

<build.skip.tarball>false</build.skip.tarball>

<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>

<!-- maven surefire/failsafe version added here so it could be overridden -->


<!--
CAUTION: Do not upgrade to 2.18.1, 2.19, or 2.19.1 because the
org.opennms.core.test.karaf.KarafTestCase classes are experiencing
the following bug in those versions (even thought it is claimed to
have been fixed in 2.19.1):

https://issues.apache.org/jira/browse/SUREFIRE-1193
-->
<maven.testing.plugin.version>2.18</maven.testing.plugin.version>
<maven.failsafe.plugin.version>$
{maven.testing.plugin.version}</maven.failsafe.plugin.version>
<maven.surefire.plugin.version>$
{maven.testing.plugin.version}</maven.surefire.plugin.version>
<maven.surefire.report.plugin.version>$
{maven.testing.plugin.version}</maven.surefire.report.plugin.version>

<maven.eclipse.plugin.version>2.10</maven.eclipse.plugin.version>
<maven.pax.plugin.version>1.5</maven.pax.plugin.version>
<maven.shade.plugin.version>2.4.3</maven.shade.plugin.version>
<antlr.version>2.7.7</antlr.version>
<sass.maven.plugin.version>1.1.2-ONMS-20131018-1</sass.maven.plugin.version>

<!-- other plugin versions -->

<maven.smoke.surefire.plugin.version>2.22.2</maven.smoke.surefire.plugin.version>
<!-- see smoke-test/pom.xml -->
<maven.antrun.plugin.version>1.8</maven.antrun.plugin.version> <!-- see smoke-
test/pom.xml -->
<maven.compiler.plugin.version>3.8.1</maven.compiler.plugin.version>
<maven.install.plugin.version>2.5.2</maven.install.plugin.version>
<maven.resources.plugin.version>3.1.0</maven.resources.plugin.version>

<!-- turn down the default DEBUG logLevel. Override on the command line if you
want -->
<mock.logLevel>WARN</mock.logLevel>
<mock.debug>false</mock.debug>
<mock.rundbtests>true</mock.rundbtests>
<mock.leaveDatabase>false</mock.leaveDatabase>
<mock.leaveDatabaseOnFailure>false</mock.leaveDatabaseOnFailure>
<mock.db.driver>org.postgresql.Driver</mock.db.driver>
<mock.db.url>jdbc:postgresql://localhost:5432/</mock.db.url>
<mock.db.adminUser>postgres</mock.db.adminUser>
<mock.db.adminPassword/>
<mock.runSnmpTests>false</mock.runSnmpTests>
<mock.snmpHost>localhost</mock.snmpHost>
<install.version>${project.version}</install.version>
<display.version>${install.version}</display.version>
<opennms.home>${dist.dir}/${dist.name}</opennms.home>
<opennms.osgi.version>27.0.5</opennms.osgi.version>
<maven.metadata.legacy>true</maven.metadata.legacy>
<root.dir>${project.basedir}</root.dir>
<dist.dir>${root.dir}/target</dist.dir>
<dist.name>opennms-${project.version}</dist.name>

<!-- install.prefix: a prefix used for installation in or chroot -->


<install.prefix/>
<install.package.name>opennms</install.package.name>
<install.package.description>OpenNMS</install.package.description>
<install.dir>${opennms.home}</install.dir>
<install.init.dir>${install.dir}/bin</install.init.dir>
<install.webapps.dir>${install.dir}/webapps</install.webapps.dir>
<install.servlet.dir>${install.webapps.dir}/opennms</install.servlet.dir>
<install.share.dir>${install.dir}/share</install.share.dir>
<install.bin.dir>${install.dir}/bin</install.bin.dir>
<install.contrib.dir>${install.dir}/contrib</install.contrib.dir>
<install.etc.dir>${install.dir}/etc</install.etc.dir>
<install.logs.dir>${install.dir}/logs</install.logs.dir>
<install.pid.file>${install.logs.dir}/opennms.pid</install.pid.file>

<install.postgresql.service>postgresql</install.postgresql.service>
<install.database.name>opennms</install.database.name>
<install.database.user>opennms</install.database.user>
<install.database.password>opennms</install.database.password>
<install.database.admin.user>postgres</install.database.admin.user>
<install.database.admin.password/>
<install.database.driver>org.postgresql.Driver</install.database.driver>
<install.database.bindir>/usr/bin</install.database.bindir>
<install.rrdtool.bin>/usr/bin/rrdtool</install.rrdtool.bin>
<install.perl.bin>/usr/bin/perl</install.perl.bin>

<runMailTests>true</runMailTests>

<!-- rpm specific -->


<rpm.install.dir>/opt/opennms</rpm.install.dir>
<rpm.build.executable>rpmbuild</rpm.build.executable>
<rpm.build.docs>1</rpm.build.docs>
<rpm.sign>false</rpm.sign>
<rpm.buildtests>false</rpm.buildtests>
<rpm.database.user>opennms</rpm.database.user>
<rpm.additional.args/>
<rpm.database.name>opennms</rpm.database.name>
<rpm.database.password>opennms</rpm.database.password>

<!-- code signing properties - used in opennms-webstart -->


<webstart.keystore>${project.build.directory}/build-generated-
keystore.ks</webstart.keystore>
<webstart.keypass>opennms</webstart.keypass>
<webstart.storepass>opennms</webstart.storepass>
<webstart.keyalias>opennms-webstart-key</webstart.keyalias>
<webstart.keystore.delete>true</webstart.keystore.delete>
<webstart.keygen>true</webstart.keygen>
<webstart.dnameCn>${user.name}</webstart.dnameCn>
<webstart.dnameL/>
<webstart.dnameSt/>
<webstart.dnameC/>

<updatePolicy>interval:60</updatePolicy> <!-- 60 minutes -->


<maven.clover.licenseLocation>$
{user.home}/.m2/clover.license</maven.clover.licenseLocation>

<karaf.servicemix.specs.version>2.9.0</karaf.servicemix.specs.version>
<hawtio.version>2.0.0</hawtio.version>

<!-- dependency versions -->


<oldAsmVersion>99.99.99-exclude-and-use-org.ow2.asm.asm-all-
instead</oldAsmVersion>
<args4jVersion>2.32</args4jVersion>
<asmVersion>5.0.4</asmVersion>
<asciidoctorVersion>1.5.6</asciidoctorVersion>
<asciidoctorjVersion>1.6.2</asciidoctorjVersion>
<asciidoctorjPdfVersion>1.5.3</asciidoctorjPdfVersion>
<activemqVersion>5.14.5</activemqVersion>
<atomikosVersion>3.9.2</atomikosVersion>
<awsSqsMessagingVersion>1.0.4</awsSqsMessagingVersion>
<awsSdkVersion>1.11.218</awsSdkVersion>
<batikVersion>1.7</batikVersion>
<bouncyCastleVersion>1.66</bouncyCastleVersion>
<bsfVersion>2.4.0</bsfVersion>
<bsonVersion>3.5.0</bsonVersion>
<caffeineVersion>2.8.0</caffeineVersion>
<camelVersion>2.19.1</camelVersion>
<cassandraUnitVersion>3.11.2.0</cassandraUnitVersion>
<!-- Match Newts version -->
<cassandraVersion>3.5.0</cassandraVersion>
<cloverVersion>3.2.0</cloverVersion>
<commonsBeanutilsVersion>1.9.4</commonsBeanutilsVersion>
<commonsCodecVersion>1.10</commonsCodecVersion>
<commonsCollectionsVersion>3.2.2</commonsCollectionsVersion>
<commonsConfigurationVersion>1.6</commonsConfigurationVersion>
<commonsCsvVersion>1.5</commonsCsvVersion>
<commonsDigesterVersion>2.1</commonsDigesterVersion>
<commonsJexlVersion>2.1.1</commonsJexlVersion>
<commonsJxpathVersion>1.3</commonsJxpathVersion>
<commonsIoVersion>2.5</commonsIoVersion>
<commonsLangVersion>2.6</commonsLangVersion>
<commonsLang3Version>3.4</commonsLang3Version>
<commonsLoggingVersion>99.99.99-use-jcl-over-slf4j</commonsLoggingVersion>
<commonsMath3Version>3.5</commonsMath3Version>
<commonsValidatorVersion>1.6</commonsValidatorVersion>
<concurrentTreesVersion>2.5.0</concurrentTreesVersion>
<c3p0Version>0.9.5.4</c3p0Version>
<curatorVersion>3.2.1</curatorVersion>
<cxfVersion>3.2.8</cxfVersion>
<cxfXjcVersion>3.3.0</cxfXjcVersion>
<dhcp4javaVersion>1.1.0</dhcp4javaVersion>
<dnsjavaVersion>2.1.9_1</dnsjavaVersion>
<dropwizardMetricsVersion>3.1.2</dropwizardMetricsVersion>
<ecjVersion>4.4.2</ecjVersion>
<eclipseGeminiVersion>2.0.0.RELEASE</eclipseGeminiVersion>
<eclipselinkVersion>2.5.1</eclipselinkVersion>
<elasticsearchNettyVersion>4.1.43.Final</elasticsearchNettyVersion>
<elasticsearchTargetVersion>7.6.2</elasticsearchTargetVersion>
<felixBridgeVersion>4.0.4</felixBridgeVersion>
<felixProxyVersion>3.0.4</felixProxyVersion>
<fopVersion>1.0</fopVersion>
<freemarkerVersion>2.3.23</freemarkerVersion>
<fstVersion>2.47</fstVersion>
<geohashVersion>1.4.0</geohashVersion>
<geronimoVersion>1.1.1</geronimoVersion>
<groovyVersion>2.4.5</groovyVersion>
<grpcVersion>1.30.0</grpcVersion>
<gsonVersion>2.8.5</gsonVersion>
<guavaVersion>18.0</guavaVersion>
<guavagRPCVersion>28.2-jre</guavagRPCVersion>
<guavaOldVersion>17.0</guavaOldVersion>
<gwtVersion>2.8.2</gwtVersion>
<gwtPluginVersion>${gwtVersion}</gwtPluginVersion>
<h2databaseVersion>1.4.197</h2databaseVersion>
<hawtioVersion>1.4.68</hawtioVersion>
<hibernateValidatorVersion>4.3.2.Final</hibernateValidatorVersion>
<hikaricpVersion>2.5.1</hikaricpVersion>
<httpcoreVersion>4.4.4</httpcoreVersion>
<httpclientVersion>4.5.2</httpclientVersion>
<httpasyncclientVersion>4.1.3</httpasyncclientVersion>
<jacksonVersion>1.9.13</jacksonVersion>
<jackson2Version>2.10.0</jackson2Version>
<jacocoVersion>0.8.5</jacocoVersion>
<jasperreportsVersion>6.3.0</jasperreportsVersion>
<jasperreportsMavenPluginVersion>1.0-beta-4-OPENNMS-20160912-
1</jasperreportsMavenPluginVersion>
<jcifsVersion>2.1.4</jcifsVersion>
<jcommonVersion>1.0.23</jcommonVersion>
<jettyVersion>9.4.34.v20201102</jettyVersion>
<jestVersion>5.3.3</jestVersion>
<jestGsonVersion>${gsonVersion}</jestGsonVersion>
<jfreechartVersion>1.0.19</jfreechartVersion>
<jinteropVersion>3.0.0</jinteropVersion>
<jldapVersion>4.3</jldapVersion>
<jmxremote.optional.version>1.0_01-ea</jmxremote.optional.version>
<jnaVersion>4.4.0</jnaVersion>
<jodaTimeVersion>2.1</jodaTimeVersion>
<jrubyVersion>9.2.6.0</jrubyVersion>
<jsonVersion>20171018</jsonVersion>
<jsoupVersion>1.7.2</jsoupVersion>
<jsonlibVersion>2.4</jsonlibVersion>
<jsonlibBundleVersion>2.4_1</jsonlibBundleVersion>
<karafVersion>4.2.6</karafVersion>
<kafkaBundleVersion>2.4.0_1</kafkaBundleVersion>
<kafkaVersion>2.4.0</kafkaVersion>
<liquibaseVersion>3.6.3</liquibaseVersion>
<lmaxDisruptorVersion>3.3.2</lmaxDisruptorVersion>
<log4jVersion>99.99.99-use-log4j2</log4jVersion>
<log4j2Version>2.13.2</log4j2Version>
<mapstructVersion>1.3.0.Final</mapstructVersion>
<minaVersion>2.0.16</minaVersion>
<mockitoVersion>3.4.6</mockitoVersion>
<netty4Version>4.1.48.Final</netty4Version>
<newtsVersion>1.5.2</newtsVersion>
<paxExamVersion>4.13.1</paxExamVersion>
<paxSwissboxVersion>1.8.2</paxSwissboxVersion>
<paxWebVersion>7.2.8</paxWebVersion>
<protobufVersion>3.12.0</protobufVersion>
<protobuf2Version>2.6.1</protobuf2Version>
<postgresqlVersion>42.2.5</postgresqlVersion>
<powermockVersion>2.0.7</powermockVersion>
<okhttpVersion>3.10.0</okhttpVersion>
<okioVersion>1.14.0</okioVersion>
<opennmsApiVersion>0.5.1</opennmsApiVersion>
<opennmsApiVersionOsgi>0.5.1</opennmsApiVersionOsgi>
<osgiVersion>6.0.0</osgiVersion>
<osgiCompendiumVersion>5.0.0</osgiCompendiumVersion>
<osgiEnterpriseVersion>5.0.0</osgiEnterpriseVersion>
<owaspEncoderVersion>1.2.1</owaspEncoderVersion>
<owaspHtmlSanitizerVersion>20170515.1</owaspHtmlSanitizerVersion>
<osgiJaxRsVersion>1.0.2.ONMS</osgiJaxRsVersion>
<opencsvVersion>2.3</opencsvVersion>
<opentracingVersion>0.31.0</opentracingVersion>
<jeagertracingVersion>0.34.0</jeagertracingVersion>
<quartzVersion>2.2.3</quartzVersion>
<rancidApiVersion>1.0.4</rancidApiVersion>
<rateLimitedLoggerVersion>2.0.1</rateLimitedLoggerVersion>
<resilience4jVersion>0.17.0</resilience4jVersion>
<rocksdbjniVersion>5.18.3</rocksdbjniVersion>
<scalaLibraryVersion>2.12.8</scalaLibraryVersion>
<scalaLoggingVersion>3.9.0</scalaLoggingVersion>
<scalaVersion>2.12</scalaVersion>
<servicemixSpecsVersion>2.9.0</servicemixSpecsVersion>
<servletApiVersion>3.1.0</servletApiVersion>
<slf4jVersion>1.7.26</slf4jVersion>
<smackVersion>4.0.6</smackVersion>
<snmp4jVersion>2.5.5</snmp4jVersion>
<snmp4jagentVersion>2.5.3</snmp4jagentVersion>
<sonarVersion>3.7.0.1746</sonarVersion>
<spockVersion>1.1-groovy-2.4</spockVersion>
<tape2Version>2.0.0-beta1</tape2Version>
<trackerVersion>0.7</trackerVersion>
<twitter4jVersion>3.0.6</twitter4jVersion>
<xalanVersion>2.7.2</xalanVersion>
<xercesVersion>2.9.1</xercesVersion>
<xmlApisVersion>1.4.01</xmlApisVersion>
<wsdl4jVersion>1.6.3</wsdl4jVersion>
<wsmanVersion>1.2.3</wsmanVersion>
<zookeeperVersion>3.4.7</zookeeperVersion>

<springVersion>4.2.9.RELEASE_1</springVersion>
<!-- ALWAYS change aspectj to match the version referenced in the spring poms
-->
<aspectjVersion>1.8.6</aspectjVersion>
<springWebFlowVersion>2.3.4.RELEASE</springWebFlowVersion>
<springSecurityVersion>3.2.7.RELEASE</springSecurityVersion>
<springLdapVersion>${springSecurityVersion}</springLdapVersion>
<springSecurityKerberosVersion>1.0.1.RELEASE</springSecurityKerberosVersion>

<!-- moved here from topology features -->


<jungVersion>2.0.1</jungVersion>
<vaadinVersion>8.5.2</vaadinVersion>
<!-- Requiring a more recent plugin version which passes the classpath via ENV
-->
<vaadin.plugin.version>${vaadinVersion}</vaadin.plugin.version>
<vaadinAddonContextMenuVersion>2.0.0</vaadinAddonContextMenuVersion>
<vaadinAddonConfirmDialogVersion>3.2.0</vaadinAddonConfirmDialogVersion>
<vaadinJavaMaxMemory>1g</vaadinJavaMaxMemory>
<vaadinLocalWorkers>${maxCpus}</vaadinLocalWorkers>
<skipPdfGeneration>true</skipPdfGeneration>
<skipSignJar>true</skipSignJar>

<!-- nodejs development -->


<frontendPluginVersion>1.11.0</frontendPluginVersion>
<nodeVersion>v10.19.0</nodeVersion>
<npmVersion>6.13.4</npmVersion>

<!-- CI Settings -->


<ci.instance>0</ci.instance>
<ci.rerunFailingTestsCount>0</ci.rerunFailingTestsCount>
<!-- Limit ITs to 30 minutes by default -->
<test.fork.timeout>1800</test.fork.timeout>
</properties>

<profiles>
<profile>
<id>enable.snapshots</id>
<activation>
<property><name>enable.snapshots</name><value>true</value></property>
</activation>
<repositories>
<repository>
<snapshots><enabled>true</enabled><updatePolicy>$
{updatePolicy}</updatePolicy></snapshots>
<releases><enabled>false</enabled><updatePolicy>$
{updatePolicy}</updatePolicy></releases>
<id>opennms-snapshots</id>
<name>OpenNMS Snapshot Maven Repository</name>
<url>http://maven.opennms.org/content/groups/opennms.org-snapshot/</url>
</repository>
</repositories>
</profile>
<profile>
<id>opt-local-rrdtool</id>
<activation>
<file>
<exists>/opt/local/bin/rrdtool</exists>
</file>
</activation>
<properties>
<install.rrdtool.bin>/opt/local/bin/rrdtool</install.rrdtool.bin>
</properties>
</profile>
<profile>
<id>fink-rrdtool</id>
<activation>
<file>
<exists>/sw/bin/rrdtool</exists>
</file>
</activation>
<properties>
<install.rrdtool.bin>/sw/bin/rrdtool</install.rrdtool.bin>
</properties>
</profile>
<profile>
<id>usr-bin-rrdtool</id>
<activation>
<file>
<exists>/usr/bin/rrdtool</exists>
</file>
</activation>
<properties>
<install.rrdtool.bin>/usr/bin/rrdtool</install.rrdtool.bin>
</properties>
</profile>
<profile>
<id>usr-local-bin-rrdtool</id>
<activation>
<file>
<exists>/usr/local/bin/rrdtool</exists>
</file>
</activation>
<properties>
<install.rrdtool.bin>/usr/local/bin/rrdtool</install.rrdtool.bin>
</properties>
</profile>
<profile>
<id>usr-local-rrdtool-bin-rrdtool</id>
<activation>
<file>
<exists>/usr/local/rrdtool/bin/rrdtool</exists>
</file>
</activation>
<properties>
<install.rrdtool.bin>/usr/local/rrdtool/bin/rrdtool</install.rrdtool.bin>
</properties>
</profile>
<!--
This is for the rrdtool package from Blastwave.org.
See this for more information:

http://www.blastwave.org/packages.php/rrdtool
-->
<profile>
<id>solaris-blastwave-rrdtool</id>
<activation>
<file>
<exists>/opt/csw/bin/rrdtool</exists>
</file>
</activation>
<properties>
<install.rrdtool.bin>/opt/csw/bin/rrdtool</install.rrdtool.bin>
</properties>
</profile>
<profile>
<id>assemblies</id>
<modules>
<module>opennms-full-assembly</module>
</modules>
</profile>
<profile>
<id>build-bamboo</id>
<modules>
<module>opennms-full-assembly</module>
</modules>
</profile>
<profile>
<id>run-expensive-tasks</id>
<properties>
<skipPdfGeneration>false</skipPdfGeneration>
<skipSignJar>false</skipSignJar>
</properties>
</profile>
<profile>
<id>smoke</id>
<activation>
<property>
<name>smoke</name>
</property>
</activation>
<properties>
<build.skip.tarball>true</build.skip.tarball>
</properties>
<modules>
<module>smoke-test</module>
</modules>
</profile>
<profile>
<id>jdk7+</id>
<activation>
<jdk>[1.7,9)</jdk>
</activation>
<build>
<plugins>
<plugin>
<groupId>com.sun.tools.jxc.maven2</groupId>
<artifactId>maven-jaxb-schemagen-plugin</artifactId>
<version>1.2</version>
<dependencies>
<dependency>
<groupId>com.sun</groupId>
<artifactId>tools</artifactId>
<version>1.8</version>
<scope>system</scope>
<systemPath>${java.home}/../lib/tools.jar</systemPath>
</dependency>
</dependencies>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>default-runPingTests</id>
<activation>
<property>
<name>!runPingTests</name>
</property>
</activation>
<properties>
<runPingTests>true</runPingTests>
</properties>
</profile>
<profile>
<id>checkstyle</id>
<activation>
<property>
<name>!disable.checkstyle</name>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>2.17</version>
<dependencies>
<dependency>
<groupId>com.puppycrawl.tools</groupId>
<artifactId>checkstyle</artifactId>
<version>7.6</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>org.opennms.checkstyle</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.github.sevntu-checkstyle</groupId>
<artifactId>sevntu-checkstyle-maven-plugin</artifactId>
<version>1.25.0</version>
</dependency>
</dependencies>
<configuration>
<configLocation>nms_checks.xml</configLocation>
<suppressionsLocation>checkstyle-
suppressions.xml</suppressionsLocation>
<!-- <sourceDirectory> is needed so that checkstyle ignores the
generated sources directory -->
<sourceDirectory>${project.build.sourceDirectory}</sourceDirectory>
<includeResources>true</includeResources>
<includeTestSourceDirectory>true</includeTestSourceDirectory>
<includeTestResources>true</includeTestResources>
<failsOnError>false</failsOnError>
<consoleOutput>true</consoleOutput>
</configuration>
<executions>
<execution>
<id>check-license</id>
<goals>
<goal>check</goal>
</goals>
<phase>process-sources</phase>
<configuration>
<configLocation>check-license.xml</configLocation>
<suppressionsLocation>license-
suppressions.xml</suppressionsLocation>
<headerLocation>AGPL-LICENSE.regexp.txt</headerLocation>
<includeResources>false</includeResources>
<includeTestSourceDirectory>true</includeTestSourceDirectory>
<includeTestResources>false</includeTestResources>
<sourceDirectory>$
{project.build.sourceDirectory}</sourceDirectory>
<failsOnError>false</failsOnError>
<consoleOutput>true</consoleOutput>
</configuration>
</execution>
<execution>
<id>check-style</id>
<goals>
<goal>check</goal>
</goals>
<phase>process-sources</phase>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>code-coverage</id>
<activation>
<property>
<name>code.coverage</name>
<value>true</value>
</property>
</activation>
<build>
<plugins>
<!-- Jacoco code coverage testing library -->
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>${jacocoVersion}</version>
<executions>
<execution>
<id>before-unit-test-execution</id>
<goals>
<goal>prepare-agent</goal>
</goals>
<configuration>
<append>true</append>
<destFile>${project.build.directory}/jacoco-output/jacoco-
unit.exec</destFile>
</configuration>
</execution>
<!--
<execution>
<id>after-unit-test-execution</id>
<phase>test</phase>
<goals>
<goal>report</goal>
</goals>
<configuration>
<dataFile>${project.build.directory}/jacoco-output/jacoco-
unit.exec</dataFile>
<outputDirectory>${project.build.directory}/jacoco-surefire-$
{ci.instance}</outputDirectory>
</configuration>
</execution>
-->
<execution>
<id>before-integration-test-execution</id>
<phase>pre-integration-test</phase>
<goals>
<goal>prepare-agent</goal>
</goals>
<configuration>
<append>true</append>
<destFile>${project.build.directory}/jacoco-output/jacoco-
it.exec</destFile>
</configuration>
</execution>
<!--
<execution>
<id>after-integration-test-execution</id>
<phase>post-integration-test</phase>
<goals>
<goal>report</goal>
</goals>
<configuration>
<dataFile>${project.build.directory}/jacoco-output/jacoco-
it.exec</dataFile>
<outputDirectory>${project.build.directory}/jacoco-failsafe-$
{ci.instance}</outputDirectory>
</configuration>
</execution>
-->
<execution>
<id>merge-unit-and-integration</id>
<phase>post-integration-test</phase>
<goals>
<goal>merge</goal>
</goals>
<configuration>
<fileSets>
<fileSet>
<directory>${project.build.directory}/jacoco-
output/</directory>
<includes>
<include>*.exec</include>
</includes>
</fileSet>
</fileSets>
<destFile>${project.build.directory}/jacoco-merged-$
{ci.instance}.exec</destFile>
</configuration>
</execution>
<execution>
<id>create-merged-report</id>
<phase>post-integration-test</phase>
<goals>
<goal>report</goal>
</goals>
<configuration>
<dataFile>${project.build.directory}/jacoco-merged-$
{ci.instance}.exec</dataFile>
<outputDirectory>${project.build.directory}/jacoco-merged-report-
${ci.instance}</outputDirectory>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<dependencyManagement>
<dependencies>
<!-- opennms dependencies that are outside of the opennms/trunk project -->
<!-- PLEASE KEEP THESE IN ALPHABETICAL ORDER -->
<dependency>
<groupId>org.opennms.api.integration</groupId>
<artifactId>opennms-provisioning</artifactId>
<version>1.0.0</version>
</dependency>
<dependency>
<groupId>com.sun</groupId>
<artifactId>tools</artifactId>
<version>1.8</version>
<scope>system</scope>
<systemPath>${java.home}/../lib/tools.jar</systemPath>
</dependency>

<!-- opennms dependencies -->


<!-- PLEASE KEEP THESE IN ALPHABETICAL ORDER -->
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-ackd</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>org.opennms.checkstyle</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.logging</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.logging.log4j</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.camel</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.config</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.criteria</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.db</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.db.install</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.lib</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.osgid</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.rpc</groupId>
<artifactId>org.opennms.core.ipc.rpc.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.rpc</groupId>
<artifactId>org.opennms.core.ipc.rpc.camel</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.rpc</groupId>
<artifactId>org.opennms.core.ipc.rpc.common</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.rpc</groupId>
<artifactId>org.opennms.core.ipc.rpc.commands</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.rpc</groupId>
<artifactId>org.opennms.core.ipc.rpc.utils</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.rpc</groupId>
<artifactId>org.opennms.core.ipc.rpc.xml</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.sink</groupId>
<artifactId>org.opennms.core.ipc.sink.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.sink</groupId>
<artifactId>org.opennms.core.ipc.sink.xml</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.common</groupId>
<artifactId>org.opennms.core.ipc.common.kafka-shell</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.runtime</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.schema</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.schema</artifactId>
<classifier>liquibase</classifier>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core.snmp</groupId>
<artifactId>org.opennms.core.snmp.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.soa</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.spring</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.spring-web</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.tasks</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.upgrade</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.web</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.web-assets</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.xml</artifactId>
<version>${project.version}</version>
</dependency>
<!-- only used at build-time -->
<dependency>
<groupId>org.opennms.core.build</groupId>
<artifactId>org.opennms.core.build.keystore</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.lib</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.activemq</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.camel</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.collection</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.db</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.dns</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.http</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.rest</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.services</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.snmp</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.xml</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.dhcpd</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.discovery</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.geocoder</groupId>
<artifactId>org.opennms.features.geocoder.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.geocoder</groupId>
<artifactId>org.opennms.features.geocoder.google</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.geocoder</groupId>
<artifactId>org.opennms.features.geocoder.nominatim</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.jdbc-collector</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.name-cutter</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.notifications</groupId>
<artifactId>org.opennms.features.notifications.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.mib-compiler</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.request-tracker</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.phonebook</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.system-report</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.events</groupId>
<artifactId>org.opennms.features.events.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.events</groupId>
<artifactId>org.opennms.features.events.daemon</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.events</groupId>
<artifactId>org.opennms.features.events.syslog</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.events</groupId>
<artifactId>org.opennms.features.events.traps</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.enlinkd</groupId>
<artifactId>org.opennms.features.enlinkd.service.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.enlinkd</groupId>
<artifactId>org.opennms.features.enlinkd.persistence.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.collectors</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.core</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.client-rpc</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.persistence.osgi</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.persistence.rrd</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.test-api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.thresholding.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.persistence.tcp</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.poller</groupId>
<artifactId>org.opennms.features.poller.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.poller</groupId>
<artifactId>org.opennms.features.poller.client-rpc</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.poller</groupId>
<artifactId>org.opennms.features.poller.shell</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.instrumentationLogReader</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>org.opennms.features.springframework-security</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.reporting</groupId>
<artifactId>org.opennms.features.reporting.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.reporting</groupId>
<artifactId>org.opennms.features.reporting.core</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.reporting</groupId>
<artifactId>org.opennms.features.reporting.dao</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.reporting</groupId>
<artifactId>org.opennms.features.reporting.sdo</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.reporting</groupId>
<artifactId>org.opennms.features.reporting.model</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.reporting</groupId>
<artifactId>org.opennms.features.reporting.jasper-reports</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.reporting</groupId>
<artifactId>org.opennms.features.reporting.availability</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.reporting</groupId>
<artifactId>org.opennms.features.reporting.repository</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.ticketing</groupId>
<artifactId>org.opennms.features.ticketing.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.provisioning</groupId>
<artifactId>org.opennms.features.provisioning.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.provisioning</groupId>
<artifactId>org.opennms.features.provisioning.lib</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.topology</groupId>
<artifactId>org.opennms.features.topology.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>vaadin</artifactId>
<version>${project.version}</version>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-map-provisioning-adapter</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rancid-provisioning-adapter</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-wsman-asset-provisioning-adapter</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-snmp-asset-provisioning-adapter</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-snmp-hardware-inventory-provisioning-
adapter</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.assemblies</groupId>
<artifactId>org.opennms.assemblies.webapp-full</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-alarmd</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-alarm-northbounder-email</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-alarm-northbounder-syslog</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-alarm-northbounder-snmptrap</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-alarm-northbounder-jms</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-alarm-northbounder-bsf</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-alarm-northbounder-drools</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>drools-correlation-engine</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-mock-simpleserver</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.tests</groupId>
<artifactId>org.opennms.tests.mock-snmp-agent</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>activemq-dependencies</artifactId>
<version>${project.version}</version>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>activemq-web-dependencies</artifactId>
<version>${project.version}</version>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>atomikos-dependencies</artifactId>
<version>${project.version}</version>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>aws-dependencies</artifactId>
<version>${project.version}</version>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>camel-dependencies</artifactId>
<version>${project.version}</version>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>camel-test-dependencies</artifactId>
<version>${project.version}</version>
<type>pom</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>liquibase-dependencies</artifactId>
<version>${project.version}</version>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>felix-dependencies</artifactId>
<version>${project.version}</version>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>geronimo-dependencies</artifactId>
<version>${project.version}</version>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>gwt-maps-dependencies</artifactId>
<version>${project.version}</version>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jasypt-dependencies</artifactId>
<version>${project.version}</version>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>javamail-dependencies</artifactId>
<version>${project.version}</version>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jaxb-dependencies</artifactId>
<version>${project.version}</version>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jcifs-dependencies</artifactId>
<version>${project.version}</version>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jfreechart-dependencies</artifactId>
<version>${project.version}</version>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jinterop-dependencies</artifactId>
<version>${project.version}</version>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jna-dependencies</artifactId>
<version>${project.version}</version>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jnlp-dependencies</artifactId>
<version>${project.version}</version>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jradius-dependencies</artifactId>
<version>${project.version}</version>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jrobin-dependencies</artifactId>
<version>${project.version}</version>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jrrd-dependencies</artifactId>
<version>${project.version}</version>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jrrd2-dependencies</artifactId>
<version>${project.version}</version>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jstl-dependencies</artifactId>
<version>${project.version}</version>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>pax-exam-dependencies</artifactId>
<version>${project.version}</version>
<type>pom</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>quartz-dependencies</artifactId>
<version>${project.version}</version>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>servlet-dependencies</artifactId>
<version>${project.version}</version>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>smslib-dependencies</artifactId>
<version>${project.version}</version>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-security-core-dependencies</artifactId>
<version>${project.version}</version>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-security-dependencies</artifactId>
<version>${project.version}</version>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-bootstrap</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-config-api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-config-jaxb</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-config</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-config-model</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-config-model</artifactId>
<version>${project.version}</version>
<classifier>xsds</classifier>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-config-tester</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-config-utils</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-correlator</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.daemon</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-mock</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-base-assembly</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-detector-bsf</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-detector-datagram</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-detector-dhcp</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-detector-generic</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-detector-jdbc</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-detector-jmx</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-detector-jms</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-detector-rdns-lookup</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-detector-lineoriented</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-detector-simple</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-detector-ssh</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-detector-web</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-detectorclient-rpc</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-provision-command</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-requisition-service</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>drools-dependencies</artifactId>
<version>${project.version}</version>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>hibernate-dependencies</artifactId>
<version>${project.version}</version>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-full-assembly</artifactId>
<version>${project.version}</version>
<type>tar.gz</type>
<classifier>dist</classifier>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-icmp-api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-icmp-jni</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-icmp-jni6</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-icmp-jna</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-icmp-best</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.icmp-jna</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-javamail-api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>opennms-integration-otrs</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>opennms-integration-otrs-31</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>opennms-integration-rt</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>opennms-integration-remedy</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-install</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>cxf-dependencies</artifactId>
<version>${project.version}</version>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-jetty</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>mina-dependencies</artifactId>
<version>${project.version}</version>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>netty-dependencies</artifactId>
<version>${project.version}</version>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-model</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-model</artifactId>
<version>${project.version}</version>
<classifier>xsds</classifier>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-provision-api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-provision-persistence</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-provision-persistence</artifactId>
<version>${project.version}</version>
<type>test-jar</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-provisiond</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>jmxconfiggenerator</artifactId>
<classifier>onejar</classifier>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.tests</groupId>
<artifactId>org.opennms.tests.mock-elements</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.jstl-support</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-reporting</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-reportd</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrd-api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrd-model</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrdtool-api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrdcached-api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrd-jrobin</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrd-tcp</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rws</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-services</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.measurements</groupId>
<artifactId>org.opennms.features.measurements.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.measurements</groupId>
<artifactId>org.opennms.features.measurements.impl</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-site</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jasper-dependencies</artifactId>
<version>${project.version}</version>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-dependencies</artifactId>
<version>${project.version}</version>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-web-dependencies</artifactId>
<version>${project.version}</version>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-test-dependencies</artifactId>
<version>${project.version}</version>
<type>pom</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-util</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-version</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-web-api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-web-dependencies</artifactId>
<version>${project.version}</version>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-webapp</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-webapp</artifactId>
<version>${project.version}</version>
<type>war</type>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-webapp</artifactId>
<version>${project.version}</version>
<type>tar.gz</type>
<classifier>meta-inf</classifier>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-webapp</artifactId>
<version>${project.version}</version>
<type>tar.gz</type>
<classifier>lib</classifier>
</dependency>
<dependency>
<groupId>org.opennms.features</groupId>
<artifactId>root-webapp</artifactId>
<version>${project.version}</version>
<type>war</type>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-webapp-ng</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-wmi</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-vmware</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>newts-dependencies</artifactId>
<version>${project.version}</version>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>smack-dependencies</artifactId>
<version>${project.version}</version>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>rancid-dependencies</artifactId>
<version>${project.version}</version>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-asterisk</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>asterisk-dependencies</artifactId>
<version>${project.version}</version>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>dnsjava-dependencies</artifactId>
<version>${project.version}</version>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>snmp4j-dependencies</artifactId>
<version>${project.version}</version>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>snmp4j-agent-dependencies</artifactId>
<version>${project.version}</version>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>snmp-dependencies</artifactId>
<version>${project.version}</version>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>snmp-test-dependencies</artifactId>
<version>${project.version}</version>
<type>pom</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>twitter4j-dependencies</artifactId>
<version>${project.version}</version>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>tracker-dependencies</artifactId>
<version>${project.version}</version>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jmx-dependencies</artifactId>
<version>${project.version}</version>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>owasp-dependencies</artifactId>
<version>${project.version}</version>
<type>pom</type>
</dependency>

<!-- external dependencies -->


<!-- PLEASE KEEP THESE IN ALPHABETICAL ORDER -->
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm-all</artifactId>
<version>${asmVersion}</version>
</dependency>
<dependency>
<groupId>asm</groupId>
<artifactId>asm</artifactId>
<version>${oldAsmVersion}</version>
</dependency>
<dependency>
<groupId>asm</groupId>
<artifactId>asm-analysis</artifactId>
<version>${oldAsmVersion}</version>
</dependency>
<dependency>
<groupId>asm</groupId>
<artifactId>asm-commons</artifactId>
<version>${oldAsmVersion}</version>
</dependency>
<dependency>
<groupId>asm</groupId>
<artifactId>asm-tree</artifactId>
<version>${oldAsmVersion}</version>
</dependency>
<dependency>
<groupId>asm</groupId>
<artifactId>asm-util</artifactId>
<version>${oldAsmVersion}</version>
</dependency>
<dependency>
<groupId>org.apache.ant</groupId>
<artifactId>ant</artifactId>
<version>1.10.9</version>
</dependency>
<dependency>
<groupId>antlr</groupId>
<artifactId>antlr</artifactId>
<version>${antlr.version}</version>
</dependency>
<dependency>
<groupId>axis</groupId>
<artifactId>axis</artifactId>
<version>1.4</version>
<exclusions>
<exclusion>
<groupId>axis</groupId>
<artifactId>axis-wsdl4j</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>axis</groupId>
<artifactId>axis-jaxrpc</artifactId>
<version>1.4</version>
</dependency>
<dependency>
<groupId>axis</groupId>
<artifactId>axis-saaj</artifactId>
<version>1.4</version>
</dependency>
<dependency>
<groupId>org.apache.camel</groupId>
<artifactId>camel-jms</artifactId>
<version>${camelVersion}</version>
</dependency>
<dependency>
<groupId>org.apache.camel</groupId>
<artifactId>camel-spring</artifactId>
<version>${camelVersion}</version>
</dependency>
<dependency>
<groupId>org.apache.xmlgraphics</groupId>
<artifactId>batik-dom</artifactId>
<version>${batikVersion}</version>
</dependency>
<dependency>
<groupId>org.apache.xmlgraphics</groupId>
<artifactId>batik-svg-dom</artifactId>
<version>${batikVersion}</version>
</dependency>
<dependency>
<groupId>org.apache.xmlgraphics</groupId>
<artifactId>batik-swing</artifactId>
<version>${batikVersion}</version>
</dependency>
<dependency>
<groupId>org.apache.xmlgraphics</groupId>
<artifactId>batik-transcoder</artifactId>
<version>${batikVersion}</version>
</dependency>
<dependency>
<groupId>org.apache.xmlgraphics</groupId>
<artifactId>batik-xml</artifactId>
<version>${batikVersion}</version>
</dependency>
<dependency>
<groupId>org.apache.xmlgraphics</groupId>
<artifactId>batik-util</artifactId>
<version>${batikVersion}</version>
</dependency>
<dependency>
<groupId>bsf</groupId>
<artifactId>bsf</artifactId>
<version>2.4.0</version>
<exclusions>
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>bsh</groupId>
<artifactId>bsh</artifactId>
<version>1.3.0</version>
</dependency>
<dependency>
<groupId>org.mongodb</groupId>
<artifactId>bson</artifactId>
<version>${bsonVersion}</version>
</dependency>
<dependency>
<groupId>com.github.ben-manes.caffeine</groupId>
<artifactId>caffeine</artifactId>
<version>${caffeineVersion}</version>
</dependency>
<dependency>
<groupId>cglib</groupId>
<artifactId>cglib-nodep</artifactId>
<version>2.2.2</version>
</dependency>
<dependency>
<groupId>com.helger</groupId>
<artifactId>dhcp4java</artifactId>
<version>${dhcp4javaVersion}</version>
</dependency>
<dependency>
<groupId>com.mchange</groupId>
<artifactId>c3p0</artifactId>
<version>${c3p0Version}</version>
</dependency>
<dependency>
<groupId>commons-beanutils</groupId>
<artifactId>commons-beanutils</artifactId>
<version>${commonsBeanutilsVersion}</version>
<exclusions>
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>commons-chain</groupId>
<artifactId>commons-chain</artifactId>
<version>1.2</version>
</dependency>
<dependency>
<groupId>commons-cli</groupId>
<artifactId>commons-cli</artifactId>
<version>1.2</version>
</dependency>
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
<version>${commonsCodecVersion}</version>
</dependency>
<dependency>
<groupId>commons-collections</groupId>
<artifactId>commons-collections</artifactId>
<version>${commonsCollectionsVersion}</version>
</dependency>
<dependency>
<groupId>commons-configuration</groupId>
<artifactId>commons-configuration</artifactId>
<version>${commonsConfigurationVersion}</version>
<exclusions>
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>commons-dbcp</groupId>
<artifactId>commons-dbcp</artifactId>
<version>1.4</version>
</dependency>
<dependency>
<groupId>commons-digester</groupId>
<artifactId>commons-digester</artifactId>
<version>${commonsDigesterVersion}</version>
<exclusions>
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-exec</artifactId>
<version>1.3</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-csv</artifactId>
<version>${commonsCsvVersion}</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpcore</artifactId>
<version>${httpcoreVersion}</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpcore-osgi</artifactId>
<version>${httpcoreVersion}</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>${httpclientVersion}</version>
<exclusions>
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient-osgi</artifactId>
<version>${httpclientVersion}</version>
<exclusions>
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpasyncclient-osgi</artifactId>
<version>${httpasyncclientVersion}</version>
<exclusions>
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>${commonsIoVersion}</version>
</dependency>
<dependency>
<groupId>commons-jxpath</groupId>
<artifactId>commons-jxpath</artifactId>
<version>${commonsJxpathVersion}</version>
</dependency>
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
<version>${commonsLangVersion}</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>${commonsLang3Version}</version>
</dependency>
<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
<version>${commonsLoggingVersion}</version>
</dependency>
<dependency>
<groupId>commons-net</groupId>
<artifactId>commons-net</artifactId>
<version>3.6</version>
</dependency>
<dependency>
<groupId>commons-pool</groupId>
<artifactId>commons-pool</artifactId>
<version>1.6</version>
</dependency>
<dependency>
<groupId>commons-validator</groupId>
<artifactId>commons-validator</artifactId>
<version>${commonsValidatorVersion}</version>
<exclusions>
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>commons-validator</groupId>
<artifactId>commons-validator-core</artifactId>
<version>${commonsValidatorVersion}</version>
<exclusions>
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.dbunit</groupId>
<artifactId>dbunit</artifactId>
<version>2.4.8</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>geoGoogle</groupId>
<artifactId>geoGoogle</artifactId>
<version>1.5.1-20110518onms1</version>
<exclusions>
<exclusion>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
</exclusion>
<exclusion>
<groupId>commons-collections</groupId>
<artifactId>commons-collections</artifactId>
</exclusion>
<exclusion>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
</exclusion>
<exclusion>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
</exclusion>
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
<exclusion>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
</exclusion>
<exclusion>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.reflections</groupId>
<artifactId>reflections</artifactId>
<version>0.9.10</version>
</dependency>
<dependency>
<groupId>com.googlecode.concurrent-locks</groupId>
<artifactId>concurrent-locks</artifactId>
<version>1.0.0</version>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>${guavaVersion}</version>
</dependency>
<dependency>
<groupId>com.google.gwt</groupId>
<artifactId>gwt-user</artifactId>
<version>${gwtVersion}</version>
<optional>true</optional>
</dependency>
<dependency>
<groupId>com.google.gwt</groupId>
<artifactId>gwt-dev</artifactId>
<version>${gwtVersion}</version>
</dependency>
<!-- Vaadin -->
<dependency>
<groupId>com.vaadin</groupId>
<artifactId>vaadin-compatibility-server</artifactId>
<version>${vaadinVersion}</version>
</dependency>
<dependency>
<groupId>com.vaadin</groupId>
<artifactId>vaadin-compatibility-shared</artifactId>
<version>${vaadinVersion}</version>
</dependency>
<dependency>
<groupId>com.vaadin</groupId>
<artifactId>vaadin-compatibility-client-compiled</artifactId>
<version>${vaadinVersion}</version>
</dependency>
<dependency>
<groupId>com.vaadin</groupId>
<artifactId>vaadin-compatibility-client</artifactId>
<version>${vaadinVersion}</version>
</dependency>
<dependency>
<groupId>com.vaadin</groupId>
<artifactId>vaadin-compatibility-themes</artifactId>
<version>${vaadinVersion}</version>
</dependency>
<dependency>
<groupId>com.vaadin</groupId>
<artifactId>vaadin-server</artifactId>
<version>${vaadinVersion}</version>
</dependency>
<dependency>
<groupId>com.vaadin</groupId>
<artifactId>vaadin-shared</artifactId>
<version>${vaadinVersion}</version>
</dependency>
<dependency>
<groupId>com.vaadin</groupId>
<artifactId>vaadin-client-compiled</artifactId>
<version>${vaadinVersion}</version>
</dependency>
<dependency>
<groupId>com.vaadin</groupId>
<artifactId>vaadin-client</artifactId>
<version>${vaadinVersion}</version>
</dependency>
<dependency>
<groupId>com.vaadin</groupId>
<artifactId>vaadin-themes</artifactId>
<version>${vaadinVersion}</version>
</dependency>
<dependency>
<groupId>com.vaadin</groupId>
<artifactId>vaadin-context-menu</artifactId>
<version>${vaadinAddonContextMenuVersion}</version>
</dependency>
<dependency>
<groupId>org.vaadin.addon</groupId>
<artifactId>confirmdialog</artifactId>
<version>${vaadinAddonConfirmDialogVersion}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.vaadin-components</groupId>
<artifactId>extender-service</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>opensymphony</groupId>
<artifactId>ognl</artifactId>
<version>2.6.11</version>
</dependency>
<dependency>
<groupId>com.opencsv</groupId>
<artifactId>opencsv</artifactId>
<version>3.9</version>
</dependency>
<dependency>
<groupId>net.sf.json-lib</groupId>
<artifactId>json-lib</artifactId>
<version>${jsonlibVersion}</version>
<classifier>jdk15</classifier>
</dependency>
<dependency>
<groupId>net.sf.jung</groupId>
<artifactId>jung-api</artifactId>
<version>${jungVersion}</version>
</dependency>
<dependency>
<groupId>net.sf.jung</groupId>
<artifactId>jung-graph-impl</artifactId>
<version>${jungVersion}</version>
</dependency>
<dependency>
<groupId>net.sf.jung</groupId>
<artifactId>jung-algorithms</artifactId>
<version>${jungVersion}</version>
</dependency>
<dependency>
<groupId>net.sf.jung</groupId>
<artifactId>jung-visualization</artifactId>
<version>${jungVersion}</version>
</dependency>
<dependency>
<groupId>net.sf.opencsv</groupId>
<artifactId>opencsv</artifactId>
<version>${opencsvVersion}</version>
</dependency>
<dependency>
<groupId>org.easymock</groupId>
<artifactId>easymock</artifactId>
<version>3.4</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.powermock</groupId>
<artifactId>powermock-module-junit4</artifactId>
<version>${powermockVersion}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.powermock</groupId>
<artifactId>powermock-api-easymock</artifactId>
<version>${powermockVersion}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.powermock</groupId>
<artifactId>powermock-api-mockito2</artifactId>
<version>${powermockVersion}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>net.sf.ehcache</groupId>
<artifactId>ehcache</artifactId>
<version>1.8.0</version>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.extremecomponents</groupId>
<artifactId>extremecomponents</artifactId>
<version>1.0.1</version>
<exclusions>
<exclusion>
<groupId>taglibs</groupId>
<artifactId>standard</artifactId>
</exclusion>
</exclusions>
</dependency>
<!--

JMesa is the latest version of the extremecomponents library. We


should eventually migrate our code to use it.

<dependency>
<groupId>org.jmesa</groupId>
<artifactId>jmesa</artifactId>
<version>3.0.4</version>
<exclusions>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-web</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc-portlet</artifactId>
</exclusion>
</exclusions>
</dependency>
-->
<dependency>
<groupId>com.caucho</groupId>
<artifactId>hessian</artifactId>
<version>3.1.5</version>
</dependency>
<dependency>
<groupId>com.github.detro.ghostdriver</groupId>
<artifactId>phantomjsdriver</artifactId>
<version>99.99.99-use-com-github-detro-phantomjsdriver-instead</version>
</dependency>
<dependency>
<groupId>com.github.detro</groupId>
<artifactId>phantomjsdriver</artifactId>
<version>99.99.99-use-com-codeborne-phantomjsdriver-until-1-2-1-is-
released</version>
</dependency>
<dependency>
<groupId>com.codeborne</groupId>
<artifactId>phantomjsdriver</artifactId>
<version>1.2.1</version>
</dependency>
<dependency>
<groupId>org.codehaus.jackson</groupId>
<artifactId>jackson-core-asl</artifactId>
<version>${jacksonVersion}</version>
</dependency>
<dependency>
<groupId>org.codehaus.jackson</groupId>
<artifactId>jackson-jaxrs</artifactId>
<version>${jacksonVersion}</version>
</dependency>
<dependency>
<groupId>org.codehaus.jackson</groupId>
<artifactId>jackson-mapper-asl</artifactId>
<version>${jacksonVersion}</version>
</dependency>
<dependency>
<groupId>org.codehaus.jackson</groupId>
<artifactId>jackson-xc</artifactId>
<version>${jacksonVersion}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-annotations</artifactId>
<version>${jackson2Version}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
<version>${jackson2Version}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>${jackson2Version}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.dataformat</groupId>
<artifactId>jackson-dataformat-cbor</artifactId>
<version>${jackson2Version}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.dataformat</groupId>
<artifactId>jackson-dataformat-smile</artifactId>
<version>${jackson2Version}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.dataformat</groupId>
<artifactId>jackson-dataformat-yaml</artifactId>
<version>${jackson2Version}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.datatype</groupId>
<artifactId>jackson-datatype-guava</artifactId>
<version>${jackson2Version}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.jaxrs</groupId>
<artifactId>jackson-jaxrs-base</artifactId>
<version>${jackson2Version}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.jaxrs</groupId>
<artifactId>jackson-jaxrs-json-provider</artifactId>
<version>${jackson2Version}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.module</groupId>
<artifactId>jackson-module-jaxb-annotations</artifactId>
<version>${jackson2Version}</version>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-validator</artifactId>
<version>${hibernateValidatorVersion}</version>
</dependency>
<dependency>
<groupId>javassist</groupId>
<artifactId>javassist</artifactId>
<version>9999.use-org-javassist-not-javassist</version>
</dependency>
<dependency>
<groupId>javax.annotation</groupId>
<artifactId>jsr250-api</artifactId>
<version>1.0</version>
</dependency>
<dependency>
<groupId>javax.activation</groupId>
<artifactId>activation</artifactId>
<version>1.1.1</version>
</dependency>
<dependency>
<groupId>javax.jnlp</groupId>
<artifactId>jnlp</artifactId>
<version>1.5.0</version>
</dependency>
<dependency>
<groupId>javax.mail</groupId>
<artifactId>mail</artifactId>
<version>1.4.5</version>
</dependency>
<!-- we want to use JPA 2.0. Do not add javax.persistence/persistence-api!
-->
<dependency>
<groupId>org.hibernate.javax.persistence</groupId>
<artifactId>hibernate-jpa-2.0-api</artifactId>
<version>1.0.1.Final</version>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-validator-annotation-processor</artifactId>
<version>4.1.0.Final</version>
</dependency>
<dependency>
<groupId>javax.samples.jnlp</groupId>
<artifactId>jnlp-servlet</artifactId>
<version>1.6.0</version>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>jstl</artifactId>
<version>99.99.99-exclude-and-use-dependencies-jstl-instead</version>
</dependency>
<dependency>
<groupId>javax.servlet.jsp</groupId>
<artifactId>jsp-api</artifactId>
<version>99.99.99-exclude-and-use-dependencies-servlet-instead</version>
</dependency>
<dependency>
<groupId>javax.validation</groupId>
<artifactId>validation-api</artifactId>
<version>1.0.0.GA</version>
</dependency>
<dependency>
<groupId>javax.validation</groupId>
<artifactId>validation-api</artifactId>
<version>1.0.0.GA</version>
<classifier>sources</classifier>
</dependency>
<dependency>
<groupId>javax.ws.rs</groupId>
<artifactId>jsr311-api</artifactId>
<version>99.99.99-exclude-and-use-javax.ws.rs-api-instead</version>
</dependency>
<dependency>
<groupId>javax.ws.rs</groupId>
<artifactId>javax.ws.rs-api</artifactId>
<version>2.1.1</version>
</dependency>
<dependency>
<groupId>javax.websocket</groupId>
<artifactId>javax.websocket-api</artifactId>
<version>1.1</version>
</dependency>
<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
<version>99.99.99-use-opennms-jaxb</version>
</dependency>
<dependency>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
<version>99.99.99-use-opennms-jaxb</version>
</dependency>
<dependency>
<groupId>jdom</groupId>
<artifactId>jdom</artifactId>
<version>99.99.99-exclude-and-use-org.apache.servicemix.bundles.jdom-
instead</version>
</dependency>
<dependency>
<groupId>io.dropwizard.metrics</groupId>
<artifactId>metrics-core</artifactId>
<version>${dropwizardMetricsVersion}</version>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>apache-jsp</artifactId>
<version>${jettyVersion}</version>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-annotations</artifactId>
<version>${jettyVersion}</version>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-continuation</artifactId>
<version>${jettyVersion}</version>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-deploy</artifactId>
<version>${jettyVersion}</version>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-http</artifactId>
<version>${jettyVersion}</version>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-io</artifactId>
<version>${jettyVersion}</version>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-jmx</artifactId>
<version>${jettyVersion}</version>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>apache-jstl</artifactId>
<version>${jettyVersion}</version>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-security</artifactId>
<version>${jettyVersion}</version>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-server</artifactId>
<version>${jettyVersion}</version>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-servlet</artifactId>
<version>${jettyVersion}</version>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-util</artifactId>
<version>${jettyVersion}</version>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-webapp</artifactId>
<version>${jettyVersion}</version>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-xml</artifactId>
<version>${jettyVersion}</version>
</dependency>
<dependency>
<groupId>org.eclipse.jetty.aggregate</groupId>
<artifactId>jetty-all-server</artifactId>
<version>${jettyVersion}</version>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-rewrite</artifactId>
<version>${jettyVersion}</version>
</dependency>
<dependency>
<groupId>org.eclipse.jetty.websocket</groupId>
<artifactId>websocket-server</artifactId>
<version>${jettyVersion}</version>
</dependency>
<!-- Make sure that this version matches the version from Jetty -->
<dependency>
<groupId>org.apache.taglibs</groupId>
<artifactId>taglibs-standard-impl</artifactId>
<version>1.2.5</version>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>${servletApiVersion}</version>
</dependency>
<dependency>
<groupId>com.jcraft</groupId>
<artifactId>jsch</artifactId>
<version>0.1.51</version>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>${mockitoVersion}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
<version>${osgiVersion}</version>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.compendium</artifactId>
<version>${osgiCompendiumVersion}</version>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.enterprise</artifactId>
<version>${osgiEnterpriseVersion}</version>
</dependency>
<dependency>
<groupId>org.jolokia</groupId>
<artifactId>jolokia-client-java</artifactId>
<version>1.3.3</version>
<exclusions>
<exclusion>
<artifactId>commons-logging</artifactId>
<groupId>commons-logging</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>joda-time</groupId>
<artifactId>joda-time</artifactId>
<version>${jodaTimeVersion}</version>
</dependency>
<dependency>
<groupId>org.skyscreamer</groupId>
<artifactId>jsonassert</artifactId>
<version>1.2.3</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-library</artifactId>
<version>1.3</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.spotify</groupId>
<artifactId>hamcrest-pojo</artifactId>
<version>1.2.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.jayway.awaitility</groupId>
<artifactId>awaitility</artifactId>
<version>1.7.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>net.sourceforge.jwebunit</groupId>
<artifactId>jwebunit-htmlunit-plugin</artifactId>
<version>2.5</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.karaf.shell</groupId>
<artifactId>org.apache.karaf.shell.core</artifactId>
<version>${karafVersion}</version>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-bom</artifactId>
<version>${log4j2Version}</version>
<scope>import</scope>
<type>pom</type>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>${log4jVersion}</version>
<scope>runtime</scope>
<exclusions>
<exclusion>
<groupId>javax.jms</groupId>
<artifactId>jms</artifactId>
</exclusion>
<exclusion>
<groupId>javax.mail</groupId>
<artifactId>mail</artifactId>
</exclusion>
<exclusion>
<groupId>com.sun.jdmk</groupId>
<artifactId>jmxtools</artifactId>
</exclusion>
<exclusion>
<groupId>com.sun.jmx</groupId>
<artifactId>jmxri</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.jsoup</groupId>
<artifactId>jsoup</artifactId>
<version>${jsoupVersion}</version>
</dependency>
<dependency>
<groupId>org.apache.mina</groupId>
<artifactId>mina-core</artifactId>
<version>${minaVersion}</version>
</dependency>
<dependency>
<groupId>mx4j</groupId>
<artifactId>mx4j-tools</artifactId>
<version>3.0.1</version>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-all</artifactId>
<version>${netty4Version}</version>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-codec</artifactId>
<version>${netty4Version}</version>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-transport</artifactId>
<version>${netty4Version}</version>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-handler</artifactId>
<version>${netty4Version}</version>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-buffer</artifactId>
<version>${netty4Version}</version>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-common</artifactId>
<version>${netty4Version}</version>
</dependency>
<dependency>
<groupId>com.novell.ldap</groupId>
<artifactId>jldap</artifactId>
<version>${jldapVersion}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${slf4jVersion}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<version>${log4jVersion}</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>jcl-over-slf4j</artifactId>
<version>${slf4jVersion}</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>log4j-over-slf4j</artifactId>
<version>${slf4jVersion}</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-aop</artifactId>
<version>99.99.99-exclude-and-use-opennms-spring-instead</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-asm</artifactId>
<version>99.99.99-exclude-and-use-opennms-spring-instead</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-aspects</artifactId>
<version>99.99.99-exclude-and-use-opennms-spring-instead</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-beans</artifactId>
<version>99.99.99-exclude-and-use-opennms-spring-instead</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>99.99.99-exclude-and-use-opennms-spring-instead</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context-support</artifactId>
<version>99.99.99-exclude-and-use-opennms-spring-instead</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>
<version>99.99.99-exclude-and-use-opennms-spring-instead</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-expression</artifactId>
<version>99.99.99-exclude-and-use-opennms-spring-instead</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-instrument</artifactId>
<version>99.99.99-exclude-and-use-opennms-spring-instead</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-jdbc</artifactId>
<version>99.99.99-exclude-and-use-opennms-spring-instead</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-jms</artifactId>
<version>99.99.99-exclude-and-use-opennms-spring-instead</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-orm</artifactId>
<version>99.99.99-exclude-and-use-opennms-spring-instead</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-oxm</artifactId>
<version>99.99.99-exclude-and-use-opennms-spring-instead</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-tx</artifactId>
<version>99.99.99-exclude-and-use-opennms-spring-instead</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-web</artifactId>
<version>99.99.99-exclude-and-use-opennms-spring-instead</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
<version>99.99.99-exclude-and-use-opennms-spring-instead</version>
</dependency>
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi</artifactId>
<version>3.16</version>
</dependency>
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<version>${postgresqlVersion}</version>
</dependency>
<dependency>
<groupId>com.google.protobuf</groupId>
<artifactId>protobuf-java</artifactId>
<version>${protobufVersion}</version>
</dependency>
<dependency>
<groupId>com.rometools</groupId>
<artifactId>rome</artifactId>
<version>1.7.2</version>
</dependency>
<dependency>
<groupId>com.ximpleware</groupId>
<artifactId>vtd-xml</artifactId>
<version>2.11</version>
</dependency>
<dependency>
<groupId>wsdl4j</groupId>
<artifactId>wsdl4j</artifactId>
<version>${wsdl4jVersion}</version>
</dependency>
<dependency>
<groupId>xalan</groupId>
<artifactId>xalan</artifactId>
<version>${xalanVersion}</version>
</dependency>
<dependency>
<groupId>xalan</groupId>
<artifactId>serializer</artifactId>
<version>${xalanVersion}</version>
</dependency>
<dependency>
<groupId>xerces</groupId>
<artifactId>xercesImpl</artifactId>
<version>${xercesVersion}</version>
</dependency>
<!-- 2.0.2 and 2.0.0 are invalid, 1.4.01 is the latest -->
<dependency>
<groupId>xml-apis</groupId>
<artifactId>xml-apis</artifactId>
<version>${xmlApisVersion}</version>
</dependency>
<dependency>
<groupId>org.krupczak</groupId>
<artifactId>xmp</artifactId>
<version>1.40</version>
</dependency>
<dependency>
<groupId>xmlunit</groupId>
<artifactId>xmlunit</artifactId>
<version>1.5</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-jexl</artifactId>
<version>${commonsJexlVersion}</version>
<exclusions>
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy-all</artifactId>
<version>${groovyVersion}</version>
</dependency>
<dependency>
<groupId>com.zaxxer</groupId>
<artifactId>HikariCP</artifactId>
<version>${hikaricpVersion}</version>
</dependency>
<dependency>
<groupId>org.eclipse.jdt.core.compiler</groupId>
<artifactId>ecj</artifactId>
<version>${ecjVersion}</version>
</dependency>
<dependency>
<groupId>com.swrve</groupId>
<artifactId>rate-limited-logger</artifactId>
<version>${rateLimitedLoggerVersion}</version>
</dependency>
<dependency>
<groupId>org.spockframework</groupId>
<artifactId>spock-core</artifactId>
<version>${spockVersion}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcpkix-jdk15on</artifactId>
<version>${bouncyCastleVersion}</version>
</dependency>
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcprov-jdk15on</artifactId>
<version>${bouncyCastleVersion}</version>
</dependency>
</dependencies>
</dependencyManagement>
<pluginRepositories>
<pluginRepository>
<id>central</id>
<name>Maven Central</name>
<url>https://repo1.maven.org/maven2/</url>
</pluginRepository>
<pluginRepository>
<id>opennms-repo</id>
<name>OpenNMS Repository</name>
<url>http://maven.opennms.org/content/groups/opennms.org-release/</url>
</pluginRepository>
</pluginRepositories>
<!--
This is required to override the effective POM's definition of Maven Central.
Versions of Maven *prior* to 3.2.3 will access Maven Central via HTTP.
In 3.2.3 (and newer), HTTPS is used.
Refer to: http://maven.apache.org/docs/3.2.3/release-notes.html
-->
<repositories>
<repository>
<id>central</id>
<name>Maven Central</name>
<url>https://repo1.maven.org/maven2/</url>
</repository>
<repository>
<id>eclipse-repository</id>
<name>Eclipse</name>
<url>https://repo1.maven.org/maven2/</url>
</repository>
</repositories>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>org.opennms.protocols</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.protocols</groupId>
<artifactId>org.opennms.protocols.cifs</artifactId>
<name>OpenNMS :: Protocols :: CIFS</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.easymock</groupId>
<artifactId>easymock</artifactId>
</dependency>
<dependency>
<groupId>org.powermock</groupId>
<artifactId>powermock-module-junit4</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.powermock</groupId>
<artifactId>powermock-api-easymock</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.poller</groupId>
<artifactId>org.opennms.features.poller.api</artifactId>
<type>jar</type>
</dependency>
<dependency>
<groupId>org.opennms.features.poller.monitors</groupId>
<artifactId>org.opennms.features.poller.monitors.core</artifactId>
<type>jar</type>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-util</artifactId>
<type>jar</type>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jcifs-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.services</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao</artifactId>
<scope>compile</scope>
</dependency>
</dependencies>

<repositories>
<repository>
<snapshots><enabled>false</enabled></snapshots>
<releases><enabled>true</enabled></releases>
<id>opennms-repo</id>
<name>OpenNMS Repository</name>
<url>http://maven.opennms.org/content/groups/opennms.org-release</url>
</repository>
</repositories>

</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>org.opennms.protocols</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.protocols</groupId>
<artifactId>org.opennms.protocols.nsclient</artifactId>
<name>OpenNMS :: Protocols :: NSClient</name>
<description>
This module provides NSClient discovery and monitoring to opennms.
</description>
<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>
<Import-Package>
org.eclipse.persistence.internal.jaxb;resolution:=optional,
org.eclipse.persistence.internal.jaxb.many;resolution:=optional,
org.opennms.core.network,
org.opennms.netmgt.collection.adapters,
*
</Import-Package>
</instructions>
</configuration>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<descriptors>
<descriptor>src/assembly/etc.xml</descriptor>
<descriptor>src/assembly/xsds.xml</descriptor>
</descriptors>
<overrideUid>0</overrideUid>
<overrideGid>0</overrideGid>
<tarLongFileMode>posix</tarLongFileMode>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-provision-api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-services</artifactId>
</dependency>
<dependency>
<groupId>commons-cli</groupId>
<artifactId>commons-cli</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-util</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-mock-simpleserver</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.lib</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.services</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.xml</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.test-api</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>opennms</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>org.opennms.protocols</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Protocols</name>
<modules>
<module>cifs</module>
<module>nsclient</module>
<module>radius</module>
<module>xml</module>
<module>xmp</module>
<module>selenium-monitor</module>
</modules>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>org.opennms.protocols</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.protocols</groupId>
<artifactId>org.opennms.protocols.radius</artifactId>
<name>OpenNMS :: Protocols :: RADIUS</name>
<description>
This module adds RADIUS support to OpenNMS.
</description>
<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</groupId>
<artifactId>opennms-provision-api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-web-api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.poller.monitors</groupId>
<artifactId>org.opennms.features.poller.monitors.core</artifactId>
<type>jar</type>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jradius-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<!-- This adds support for MD4 digest used by mschapv2 - NMS-9763 -->
<groupId>org.opennms.dependencies</groupId>
<artifactId>jcifs-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.services</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-mock</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.hynnet</groupId>
<artifactId>tinyradius</artifactId>
<version>1.0.1</version>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
</project>
<?xml version="1.0"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/xsd/maven-4.0.0.xsd"
xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<parent>
<groupId>org.opennms</groupId>
<artifactId>org.opennms.protocols</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.protocols</groupId>
<artifactId>selenium-monitor</artifactId>
<name>OpenNMS :: Protocols :: Selenium</name>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<seleniumVersion>2.53.1</seleniumVersion>
</properties>
<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>
</instructions>
</configuration>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<descriptors>
<descriptor>src/assembly/etc.xml</descriptor>
<descriptor>src/assembly/lib.xml</descriptor>
</descriptors>
<overrideUid>0</overrideUid>
<overrideGid>0</overrideGid>
<tarLongFileMode>posix</tarLongFileMode>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>

<dependencies>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-util</artifactId>
</dependency>

<dependency>
<groupId>org.opennms.features.poller</groupId>
<artifactId>org.opennms.features.poller.api</artifactId>
</dependency>

<dependency>
<groupId>org.hibernate.javax.persistence</groupId>
<artifactId>hibernate-jpa-2.0-api</artifactId>
</dependency>

<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<!-- Overrided scope from parent to compile -->
<scope>compile</scope>
</dependency>

<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-java</artifactId>
<version>${seleniumVersion}</version>
<exclusions>
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
</exclusions>
</dependency>

<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-support</artifactId>
<version>${seleniumVersion}</version>
<exclusions>
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
</exclusions>
</dependency>

<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-remote-driver</artifactId>
<version>${seleniumVersion}</version>
<exclusions>
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
</exclusions>
</dependency>

<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-firefox-driver</artifactId>
<version>${seleniumVersion}</version>
</dependency>

<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-chrome-driver</artifactId>
<version>${seleniumVersion}</version>
</dependency>

<dependency>
<groupId>com.codeborne</groupId>
<artifactId>phantomjsdriver</artifactId>
</dependency>

<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-api</artifactId>
<version>${seleniumVersion}</version>
</dependency>

<dependency>
<groupId>xerces</groupId>
<artifactId>xercesImpl</artifactId>
</dependency>

<dependency>
<groupId>xalan</groupId>
<artifactId>xalan</artifactId>
</dependency>

<dependency>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy-all</artifactId>
<exclusions>
<exclusion>
<groupId>asm</groupId>
<artifactId>asm</artifactId>
</exclusion>
<exclusion>
<groupId>asm</groupId>
<artifactId>asm-analysis</artifactId>
</exclusion>
<exclusion>
<groupId>asm</groupId>
<artifactId>asm-commons</artifactId>
</exclusion>
<exclusion>
<groupId>asm</groupId>
<artifactId>asm-tree</artifactId>
</exclusion>
<exclusion>
<groupId>asm</groupId>
<artifactId>asm-util</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm-all</artifactId>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</dependency>
<dependency> <!-- PhantomJS requires this library -->
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>${gsonVersion}</version>
</dependency>

<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.http</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.services</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>org.opennms.protocols</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.protocols</groupId>
<artifactId>org.opennms.protocols.xml</artifactId>
<name>OpenNMS :: Protocols :: XML Collector</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>
<!-- Don't export any packages, expose services only. -->
<Export-Package></Export-Package>
<Import-Package>
org.eclipse.persistence.internal.jaxb;resolution:=optional,
org.eclipse.persistence.internal.jaxb.many;resolution:=optional,
org.opennms.core.network,
org.opennms.netmgt.collection.adapters,
*
</Import-Package>
</instructions>
</configuration>
</plugin>
<!--
<plugin>
<groupId>com.sun.tools.jxc.maven2</groupId>
<artifactId>maven-jaxb-schemagen-plugin</artifactId>
<version>1.2</version>
<configuration>
<destdir>${project.build.directory}/xsds</destdir>
<srcdir>${basedir}/src/main/java</srcdir>
<verbose>false</verbose>
<includes>
<include>org/opennms/protocols/xml/config/*.java</include>
</includes>
<schemas>
<schema>
<namespace>http://xmlns.opennms.org/xsd/config/xml-
datacollection</namespace>
<file>xml-datacollection-config.xsd</file>
</schema>
</schemas>
</configuration>
<executions>
<execution>
<phase>process-sources</phase>
<goals>
<goal>generate</goal>
</goals>
</execution>
</executions>
</plugin>
-->
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<descriptors>
<descriptor>src/assembly/etc.xml</descriptor>
<descriptor>src/assembly/contrib.xml</descriptor>
<descriptor>src/assembly/xsds.xml</descriptor>
</descriptors>
<overrideUid>0</overrideUid>
<overrideGid>0</overrideGid>
<tarLongFileMode>posix</tarLongFileMode>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>test-jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jaxb-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-model</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-config</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.web</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.persistence.rrd</artifactId>
</dependency>
<dependency>
<groupId>com.jcraft</groupId>
<artifactId>jsch</artifactId>
</dependency>
<dependency>
<groupId>commons-jxpath</groupId>
<artifactId>commons-jxpath</artifactId>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>jcl-over-slf4j</artifactId>
</dependency>
<dependency>
<groupId>org.jsoup</groupId>
<artifactId>jsoup</artifactId>
</dependency>
<dependency>
<groupId>net.sf.json-lib</groupId>
<artifactId>json-lib</artifactId>
<classifier>jdk15</classifier>
<exclusions>
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.easymock</groupId>
<artifactId>easymock</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.http</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.collection</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.xml</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrd-api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrd-model</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrd-jrobin</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jrrd2-dependencies</artifactId>
<scope>test</scope>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrdtool-api</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-rrd-tcp</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>jrrd-dependencies</artifactId>
<scope>test</scope>
<type>pom</type>
</dependency>
<dependency>
<groupId>joda-time</groupId>
<artifactId>joda-time</artifactId>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.test-api</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-services</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>org.opennms.protocols</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.protocols</groupId>
<artifactId>org.opennms.protocols.xmp</artifactId>
<name>OpenNMS :: Protocols :: XMP (Cartographer) Agents</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>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<descriptors>
<descriptor>src/assembly/etc.xml</descriptor>
<descriptor>src/assembly/lib.xml</descriptor>
<descriptor>src/assembly/xsds.xml</descriptor>
</descriptors>
<overrideUid>0</overrideUid>
<overrideGid>0</overrideGid>
<tarLongFileMode>posix</tarLongFileMode>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-provision-api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-config</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-model</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-util</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.api</artifactId>
</dependency>
<dependency>
<groupId>commons-cli</groupId>
<artifactId>commons-cli</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.krupczak</groupId>
<artifactId>xmp</artifactId>
</dependency>
<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.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.test-api</artifactId>
<scope>test</scope>
</dependency>
</dependencies>

<repositories>
<repository>
<snapshots><enabled>false</enabled></snapshots>
<releases><enabled>true</enabled></releases>
<id>opennms-repo</id>
<name>OpenNMS Repository</name>
<url>http://maven.opennms.org/content/groups/opennms.org-release</url>
</repository>
</repositories>

</project>
<?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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms</groupId>
<artifactId>smoke-test</artifactId>
<version>27.0.5</version>
<name>OpenNMS Smoke Test</name>
<properties>
<skipITs>true</skipITs>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<updatePolicy>never</updatePolicy>
<camelVersion>2.19.1</camelVersion>
<frontendPluginVersion>0.0.29</frontendPluginVersion>
<jackson2Version>2.10.0</jackson2Version>
<jersey.version>2.28</jersey.version>
<karafVersion>4.2.6</karafVersion>
<selenium.version>3.141.59</selenium.version>
<testcontainers.version>1.12.5</testcontainers.version>
<test.fork.count>1</test.fork.count>
<!-- Limit ITs to 30 minutes by default -->
<test.fork.timeout>1800</test.fork.timeout>
</properties>
<build>
<testResources>
<testResource>
<directory>src/test/resources</directory>
<filtering>true</filtering>
</testResource>
</testResources>
<pluginManagement>
<plugins>
<!--This plugin's configuration is used to store Eclipse m2e settings only.
It has no influence on the Maven build itself.-->
<plugin>
<groupId>org.eclipse.m2e</groupId>
<artifactId>lifecycle-mapping</artifactId>
<version>1.0.0</version>
<configuration>
<lifecycleMappingMetadata>
<pluginExecutions>
<pluginExecution>
<pluginExecutionFilter>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<versionRange>[1.8,)</versionRange>
<goals><goal>run</goal></goals>
</pluginExecutionFilter>
<action><ignore></ignore></action>
</pluginExecution>
</pluginExecutions>
</lifecycleMappingMetadata>
</configuration>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<inherited>false</inherited>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.8</version>
<executions>
<execution>
<phase>validate</phase>
<configuration>
<target>
<echo message="skipITs = ${skipITs}"/>
</target>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
<encoding>UTF-8</encoding>
<optimize>true</optimize>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-install-plugin</artifactId>
<version>2.5.2</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>3.1.0</version>
<configuration>
<encoding>UTF-8</encoding>
<nonFilteredFileExtensions>
<nonFilteredFileExtension>raw</nonFilteredFileExtension>
<nonFilteredFileExtension>dat</nonFilteredFileExtension>
</nonFilteredFileExtensions>
</configuration>
<!-- Copy some default configuration for $OPENNMS_HOME/etc/ which is used
by some system tests -->
<executions>
<execution>
<id>copy-opennms-base-assembly-resources</id>
<phase>generate-test-resources</phase>
<goals>
<goal>copy-resources</goal>
</goals>
<configuration>
<outputDirectory>${basedir}/target/system-test-
resources</outputDirectory>
<resources>
<resource>
<directory>${basedir}/../opennms-base-
assembly/src/main/filtered</directory>
<filtering>true</filtering>
</resource>
</resources>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<version>2.22.2</version>
<configuration>
<!-- Don't specify argLine here or it will override the argLine property
value -->
<systemPropertyVariables/>
<!--
Configure failsafe to put reports in the surefire unit test directory
so that
Bamboo and Sonar tally the test results properly.

https://jira.atlassian.com/browse/BAM-15446
-->
<reportsDirectory>${project.build.directory}/surefire-
reports</reportsDirectory>
<forkCount>${test.fork.count}</forkCount>
<!-- We don't reuse forks - any given test should not take longer than
the given timeout -->
<forkedProcessTimeoutInSeconds>$
{test.fork.timeout}</forkedProcessTimeoutInSeconds>
<!-- Spawn a new JVM for every test so things don't leak over from one to
the next -->
<reuseForks>false</reuseForks>
<!-- Configure heap and GC -->
<argLine>-Xms1g -Xmx1g -XX:+UseG1GC</argLine>
</configuration>
<executions>
<execution>
<goals>
<goal>integration-test</goal>
<goal>verify</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<id>copy-dependency</id>
<phase>process-resources</phase>
<goals>
<goal>copy</goal>
</goals>
<configuration>
<outputDirectory>${project.build.directory}/deploy-
artifacts</outputDirectory>
<stripVersion>true</stripVersion>
<artifactItems>
<artifactItem>
<groupId>org.opennms.features.distributed</groupId>
<artifactId>org.opennms.features.distributed.dao-
test</artifactId>
<version>${project.version}</version>
<type>jar</type>
</artifactItem>
</artifactItems>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-annotations</artifactId>
<version>${jackson2Version}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
<version>${jackson2Version}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>${jackson2Version}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.dataformat</groupId>
<artifactId>jackson-dataformat-cbor</artifactId>
<version>${jackson2Version}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.dataformat</groupId>
<artifactId>jackson-dataformat-smile</artifactId>
<version>${jackson2Version}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.dataformat</groupId>
<artifactId>jackson-dataformat-yaml</artifactId>
<version>${jackson2Version}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.datatype</groupId>
<artifactId>jackson-datatype-guava</artifactId>
<version>${jackson2Version}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.jaxrs</groupId>
<artifactId>jackson-jaxrs-base</artifactId>
<version>${jackson2Version}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.jaxrs</groupId>
<artifactId>jackson-jaxrs-json-provider</artifactId>
<version>${jackson2Version}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.module</groupId>
<artifactId>jackson-module-jaxb-annotations</artifactId>
<version>${jackson2Version}</version>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-bootstrap</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-model</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-provision-persistence</artifactId>
<version>${project.version}</version>
<!-- Exclude all transitive dependencies -->
<exclusions>
<exclusion>
<groupId>*</groupId>
<artifactId>*</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.kafka</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.camel</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.web</artifactId>
<version>${project.version}</version>
<exclusions>
<exclusion>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpcore-osgi</artifactId>
</exclusion>
<exclusion>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient-osgi</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.xml</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.events</groupId>
<artifactId>org.opennms.features.events.syslog</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.topology</groupId>
<artifactId>org.opennms.features.topology.link</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.criteria</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>spring-test-dependencies</artifactId>
<version>${project.version}</version>
<type>pom</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>25.0-jre</version>
</dependency>
<dependency>
<groupId>org.opennms.features.jest</groupId>
<artifactId>org.opennms.features.jest.client</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpasyncclient</artifactId>
<version>4.1.3</version>
</dependency>
<dependency>
<groupId>org.apache.camel</groupId>
<artifactId>camel-elasticsearch</artifactId>
<version>${camelVersion}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.telemetry.protocols.bmp</groupId>
<artifactId>org.opennms.features.telemetry.protocols.bmp.adapter</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.telemetry.protocols.netflow</groupId>

<artifactId>org.opennms.features.telemetry.protocols.netflow.adapter</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.flows.rest</groupId>
<artifactId>org.opennms.features.flows.rest.api</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.distributed</groupId>
<artifactId>org.opennms.features.distributed.dao-test</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.ipc.sink</groupId>
<artifactId>org.opennms.core.ipc.sink.common</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.rest-assured</groupId>
<artifactId>rest-assured</artifactId>
<version>3.0.3</version>
</dependency>
<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>testcontainers</artifactId>
<version>${testcontainers.version}</version>
</dependency>
<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>selenium</artifactId>
<version>${testcontainers.version}</version>
</dependency>
<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>postgresql</artifactId>
<version>${testcontainers.version}</version>
</dependency>
<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>kafka</artifactId>
<version>${testcontainers.version}</version>
</dependency>
<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>elasticsearch</artifactId>
<version>${testcontainers.version}</version>
</dependency>
<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>cassandra</artifactId>
<version>${testcontainers.version}</version>
</dependency>
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-api</artifactId>
<version>${selenium.version}</version>
</dependency>
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-remote-driver</artifactId>
<version>${selenium.version}</version>
</dependency>
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-support</artifactId>
<version>${selenium.version}</version>
</dependency>
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-firefox-driver</artifactId>
<version>${selenium.version}</version>
</dependency>
<dependency>
<groupId>org.awaitility</groupId>
<artifactId>awaitility</artifactId>
<version>3.1.6</version>
</dependency>
<dependency>
<groupId>org.glassfish.jersey.core</groupId>
<artifactId>jersey-client</artifactId>
<version>${jersey.version}</version>
</dependency>
<dependency>
<groupId>org.glassfish.jersey.inject</groupId>
<artifactId>jersey-hk2</artifactId>
<version>${jersey.version}</version>
</dependency>
<dependency>
<groupId>org.glassfish.jersey.media</groupId>
<artifactId>jersey-media-json-jackson</artifactId>
<version>${jersey.version}</version>
</dependency>
<dependency>
<groupId>org.glassfish.jersey.media</groupId>
<artifactId>jersey-media-jaxb</artifactId>
<version>${jersey.version}</version>
</dependency>
<dependency>
<groupId>org.jsoup</groupId>
<artifactId>jsoup</artifactId>
<version>1.11.3</version>
</dependency>
<dependency>
<groupId>com.jcraft</groupId>
<artifactId>jsch</artifactId>
<version>0.1.55</version>
</dependency>
<dependency>
<groupId>com.hubspot.jinjava</groupId>
<artifactId>jinjava</artifactId>
<version>2.5.1</version>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.8.5</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>fluent-hc</artifactId>
<version>4.5.2</version>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-slf4j-impl</artifactId>
<version>2.11.2</version>
</dependency>
<dependency>
<groupId>org.opennms.features.flows</groupId>
<artifactId>org.opennms.features.flows.elastic</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opennms.features.telemetry.protocols.jti</groupId>
<artifactId>org.opennms.features.telemetry.protocols.jti.adapter</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.features.telemetry.protocols.graphite</groupId>

<artifactId>org.opennms.features.telemetry.protocols.graphite.adapter</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.dataformat</groupId>
<artifactId>jackson-dataformat-yaml</artifactId>
<version>${jackson2Version}</version>
</dependency>
</dependencies>
<repositories>
<repository>
<snapshots><enabled>false</enabled><updatePolicy>$
{updatePolicy}</updatePolicy></snapshots>
<releases><enabled>true</enabled><updatePolicy>$
{updatePolicy}</updatePolicy></releases>
<id>opennms-repo</id>
<name>OpenNMS Repository</name>
<url>http://maven.opennms.org/content/groups/opennms.org-release</url>
</repository>
<repository>
<snapshots><enabled>true</enabled><updatePolicy>$
{updatePolicy}</updatePolicy></snapshots>
<releases><enabled>false</enabled><updatePolicy>$
{updatePolicy}</updatePolicy></releases>
<id>opennms-snapshots</id>
<name>OpenNMS Snapshot Maven Repository</name>
<url>http://maven.opennms.org/content/groups/opennms.org-snapshot</url>
</repository>
</repositories>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>org.opennms.tests</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.tests</groupId>
<artifactId>org.opennms.tests.dao</artifactId>
<name>OpenNMS :: Tests :: DAOs</name>
<packaging>jar</packaging>
<dependencies>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao-mock</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-dao</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.services</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>org.opennms.tests</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.tests</groupId>
<artifactId>org.opennms.tests.mock-elements</artifactId>
<name>OpenNMS :: Tests :: Mock Elements</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.features.poller</groupId>
<artifactId>org.opennms.features.poller.api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-model</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-config-model</artifactId>
</dependency>
<dependency>
<groupId>org.opennms</groupId>
<artifactId>opennms-config-api</artifactId>
</dependency>
<dependency>
<groupId>org.opennms.features.collection</groupId>
<artifactId>org.opennms.features.collection.api</artifactId>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.opennms.core.test-api</groupId>
<artifactId>org.opennms.core.test-api.lib</artifactId>
<scope>compile</scope>
</dependency>
</dependencies>
</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>org.opennms.tests</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.tests</groupId>
<artifactId>org.opennms.tests.mock-snmp-agent</artifactId>
<name>OpenNMS :: Tests :: Mock SNMP Agent</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>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
<archive>
<manifest>
<mainClass>org.opennms.mock.snmp.MockSnmpAgent</mainClass>
</manifest>
</archive>
<overrideUid>0</overrideUid>
<overrideGid>0</overrideGid>
<tarLongFileMode>posix</tarLongFileMode>
</configuration>
<executions>
<execution>
<id>make-assembly</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opennms.dependencies</groupId>
<artifactId>snmp4j-agent-dependencies</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opennms.core</groupId>
<artifactId>org.opennms.core.lib</artifactId>
<scope>test</scope>
</dependency>
</dependencies>

<repositories>
<repository>
<snapshots><enabled>false</enabled></snapshots>
<releases><enabled>true</enabled></releases>
<id>opennms-repo</id>
<name>OpenNMS Repository</name>
<url>http://maven.opennms.org/content/groups/opennms.org-release</url>
</repository>
</repositories>

</project>
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.opennms</groupId>
<artifactId>opennms</artifactId>
<version>27.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>org.opennms.tests</artifactId>
<packaging>pom</packaging>
<name>OpenNMS :: Tests</name>
<modules>
<module>dao</module>
<module>mock-elements</module>
<module>mock-snmp-agent</module>
</modules>
</project>

You might also like