Honeynode test tool
[transportpce.git] / tests / honeynode / minimal-distribution-core / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ~ Copyright (c) 2017 Cisco and/or its affiliates.
4   ~
5   ~ Licensed under the Apache License, Version 2.0 (the "License");
6   ~ you may not use this file except in compliance with the License.
7   ~ You may obtain a copy of the License at:
8   ~
9   ~     http://www.apache.org/licenses/LICENSE-2.0
10   ~
11   ~ Unless required by applicable law or agreed to in writing, software
12   ~ distributed under the License is distributed on an "AS IS" BASIS,
13   ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14   ~ See the License for the specific language governing permissions and
15   ~ limitations under the License.
16   -->
17
18 <project xmlns="http://maven.apache.org/POM/4.0.0"
19          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
20          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
21     <parent>
22         <artifactId>impl-parent</artifactId>
23         <groupId>io.fd.honeycomb.common</groupId>
24         <version>1.18.01</version>
25         <relativePath/>
26     </parent>
27     <modelVersion>4.0.0</modelVersion>
28
29     <groupId>io.fd.honeycomb.transportpce</groupId>
30     <artifactId>minimal-distribution-core</artifactId>
31     <version>1.18.01</version>
32     <name>${project.artifactId}</name>
33
34     <properties>
35         <commons-io.version>2.5</commons-io.version>
36         <osgi.core.version>5.0.0</osgi.core.version>
37         <!-- Core guice modules does not need any yang modules itself -->
38         <skip.module.list.generation>true</skip.module.list.generation>
39     </properties>
40
41     <dependencies>
42         <!-- TPCE dependencies -->
43         <dependency>
44             <groupId>io.fd.honeycomb.transportpce</groupId>
45             <artifactId>honeynode-plugin-api</artifactId>
46             <version>${project.version}</version>
47         </dependency>
48         <!-- DI-->
49         <dependency>
50             <groupId>com.google.inject</groupId>
51             <artifactId>guice</artifactId>
52         </dependency>
53         <dependency>
54             <groupId>net.jmob</groupId>
55             <artifactId>guice.conf</artifactId>
56         </dependency>
57         <dependency>
58             <groupId>com.google.inject.extensions</groupId>
59             <artifactId>guice-multibindings</artifactId>
60         </dependency>
61         <dependency>
62             <groupId>io.fd.honeycomb</groupId>
63             <artifactId>binding-init</artifactId>
64             <version>${project.version}</version>
65         </dependency>
66         <!-- ODL -->
67         <dependency>
68             <groupId>org.opendaylight.yangtools</groupId>
69             <artifactId>yang-data-impl</artifactId>
70         </dependency>
71         <dependency>
72             <groupId>org.opendaylight.controller</groupId>
73             <artifactId>sal-core-api</artifactId>
74         </dependency>
75
76
77         <!-- OSGI Even tough not running in OSGI, dependency needs to be here since some deprecated MD-SAL APIs rely on osgi core -->
78         <dependency>
79             <groupId>org.osgi</groupId>
80             <artifactId>org.osgi.core</artifactId>
81             <version>${osgi.core.version}</version>
82         </dependency>
83
84         <!-- Northbound -->
85         <dependency>
86             <groupId>io.fd.honeycomb.northbound</groupId>
87             <artifactId>common</artifactId>
88             <version>${project.version}</version>
89         </dependency>
90
91         <!-- HC -->
92         <dependency>
93             <groupId>io.fd.honeycomb</groupId>
94             <artifactId>cfg-init</artifactId>
95             <version>${project.version}</version>
96         </dependency>
97         <dependency>
98             <groupId>io.fd.honeycomb</groupId>
99             <artifactId>notification-api</artifactId>
100             <version>${project.version}</version>
101         </dependency>
102         <dependency>
103             <groupId>io.fd.honeycomb</groupId>
104             <artifactId>rpc-impl</artifactId>
105             <version>${project.version}</version>
106         </dependency>
107         <dependency>
108             <groupId>io.fd.honeycomb</groupId>
109             <artifactId>data-impl</artifactId>
110             <version>${project.version}</version>
111         </dependency>
112         <dependency>
113             <groupId>io.fd.honeycomb</groupId>
114             <artifactId>honeycomb-impl</artifactId>
115             <version>${project.version}</version>
116         </dependency>
117         <dependency>
118             <groupId>io.fd.honeycomb</groupId>
119             <artifactId>notification-impl</artifactId>
120             <version>${project.version}</version>
121         </dependency>
122
123         <!-- Utilities -->
124         <dependency>
125             <groupId>com.google.guava</groupId>
126             <artifactId>guava</artifactId>
127         </dependency>
128         <dependency>
129             <groupId>commons-io</groupId>
130             <artifactId>commons-io</artifactId>
131             <version>${commons-io.version}</version>
132         </dependency>
133     </dependencies>
134 </project>