HoneyNode Java 11 support for 121 devices
[transportpce.git] / tests / honeynode / 1.2.1 / honeynode-distribution / pom.xml
diff --git a/tests/honeynode/1.2.1/honeynode-distribution/pom.xml b/tests/honeynode/1.2.1/honeynode-distribution/pom.xml
new file mode 100644 (file)
index 0000000..6a18f13
--- /dev/null
@@ -0,0 +1,105 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project xmlns="http://maven.apache.org/POM/4.0.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>io.fd.honeycomb.common</groupId>
+    <artifactId>minimal-distribution-parent</artifactId>
+    <version>1.19.04</version>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>io.fd.honeycomb.transportpce</groupId>
+  <artifactId>honeynode-distribution</artifactId>
+  <properties>
+    <exec.parameters>-Xms128m -Xmx128m</exec.parameters>
+    <main.class>io.fd.honeycomb.infra.distro.Main</main.class>
+    <interfaces.mapping.version>1.19.04</interfaces.mapping.version>
+    <honeycomb.min.distro.version>1.19.04</honeycomb.min.distro.version>
+    <guice.version>4.2.2</guice.version>
+    <guice.config.version>1.4.1</guice.config.version>
+    <!--
+       Defines list of specific modules provided by the distribution
+       (adds them to base modules like NetconfModule and RestconfModule).
+       Module configuration is placed in 'modules' subdir of the target distro folder.
+       Modules can be disabled by commenting them out in the pom.xml
+       or modules configuration file.
+     -->
+    <distribution.modules>
+        io.fd.honeycomb.transportpce.device.DeviceModule,
+        io.fd.honeycomb.transportpce.device.DeviceWriterModule,
+        io.fd.honeycomb.transportpce.device.DeviceReaderModule,
+        io.fd.honeycomb.transportpce.device.DeviceRpcModule,
+        io.fd.honeycomb.transportpce.device.DeviceNotificationModule,
+    </distribution.modules>
+    <checkstyle.skip>true</checkstyle.skip>
+  </properties>
+  <build>
+    <plugins>
+      <plugin>
+        <artifactId>maven-compiler-plugin</artifactId>
+      </plugin>
+      <plugin>
+        <groupId>org.codehaus.gmaven</groupId>
+        <artifactId>groovy-maven-plugin</artifactId>
+      </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-jar-plugin</artifactId>
+      </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-dependency-plugin</artifactId>
+      </plugin>
+      <plugin>
+        <artifactId>maven-assembly-plugin</artifactId>
+      </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-checkstyle-plugin
+                                    </artifactId>
+                                    <versionRange>
+                                        [3.0.0,)
+                                    </versionRange>
+                                    <goals>
+                                        <goal>check</goal>
+                                    </goals>
+                                </pluginExecutionFilter>
+                                <action>
+                                    <ignore></ignore>
+                                </action>
+                            </pluginExecution>
+                        </pluginExecutions>
+                    </lifecycleMappingMetadata>
+                </configuration>
+            </plugin>
+        </plugins>
+    </pluginManagement>
+  </build>
+  <dependencies>
+    <!-- Dependency on honeynode plugin -->
+    <dependency>
+      <groupId>io.fd.honeycomb.transportpce</groupId>
+      <artifactId>honeynode-plugin-impl</artifactId>
+      <version>${interfaces.mapping.version}</version>
+    </dependency>
+    <!-- Dependency on TPCE distribution base -->
+    <dependency>
+      <groupId>io.fd.honeycomb.transportpce</groupId>
+      <artifactId>minimal-distribution</artifactId>
+      <version>${honeycomb.min.distro.version}</version>
+    </dependency>
+  </dependencies>
+</project>
\ No newline at end of file