Honeynode test tool
[transportpce.git] / tests / honeynode / honeynode-distribution / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.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">
3
4   <parent>
5     <groupId>io.fd.honeycomb.common</groupId>
6     <artifactId>minimal-distribution-parent</artifactId>
7     <version>1.18.01</version>
8   </parent>
9
10   <modelVersion>4.0.0</modelVersion>
11   <groupId>io.fd.honeycomb.transportpce</groupId>
12   <artifactId>honeynode-distribution</artifactId>
13   <version>1.18.01</version>
14
15   <properties>
16     <exec.parameters>-Xms128m -Xmx128m</exec.parameters>
17     <main.class>io.fd.honeycomb.infra.distro.Main</main.class>
18     <interfaces.mapping.version>1.18.01</interfaces.mapping.version>
19     <honeycomb.min.distro.version>1.18.01</honeycomb.min.distro.version>
20     <!--
21        Defines list of specific modules provided by the distribution
22        (adds them to base modules like NetconfModule and RestconfModule).
23
24        Module configuration is placed in 'modules' subdir of the target distro folder.
25        Modules can be disabled by commenting them out in the pom.xml
26        or modules configuration file.
27      -->
28     <distribution.modules>
29         io.fd.honeycomb.transportpce.device.DeviceModule,
30         io.fd.honeycomb.transportpce.device.DeviceWriterModule,
31         io.fd.honeycomb.transportpce.device.DeviceReaderModule,
32         io.fd.honeycomb.transportpce.device.DeviceRpcModule,
33     </distribution.modules>
34   </properties>
35
36   <build>
37     <plugins>
38       <plugin>
39         <artifactId>maven-compiler-plugin</artifactId>
40       </plugin>
41       <plugin>
42         <groupId>org.codehaus.gmaven</groupId>
43         <artifactId>groovy-maven-plugin</artifactId>
44       </plugin>
45       <plugin>
46         <groupId>org.apache.maven.plugins</groupId>
47         <artifactId>maven-jar-plugin</artifactId>
48       </plugin>
49       <plugin>
50         <groupId>org.apache.maven.plugins</groupId>
51         <artifactId>maven-dependency-plugin</artifactId>
52       </plugin>
53       <plugin>
54         <artifactId>maven-assembly-plugin</artifactId>
55       </plugin>
56     </plugins>
57   </build>
58
59   <dependencies>
60     <!-- Dependency on honeynode plugin -->
61     <dependency>
62       <groupId>io.fd.honeycomb.transportpce</groupId>
63       <artifactId>honeynode-plugin-impl</artifactId>
64       <version>${interfaces.mapping.version}</version>
65     </dependency>
66     <!-- Dependency on TPCE distribution base -->
67     <dependency>
68       <groupId>io.fd.honeycomb.transportpce</groupId>
69       <artifactId>minimal-distribution</artifactId>
70       <version>${honeycomb.min.distro.version}</version>
71     </dependency>
72
73   </dependencies>
74 </project>
75