Honeynode test tool
[transportpce.git] / tests / honeynode / restconf / 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>restconf</artifactId>
31     <version>1.18.01</version>
32
33     <properties>
34         <jersey.version>1.19.1</jersey.version>
35         <servlet.version>3.1.0</servlet.version>
36         <jetty.version>9.3.11.v20160721</jetty.version>
37         <yang.modules.whitelist>
38             ${project.basedir}/src/main/resources/honeycomb-minimal-resources/config/restconf-whitelist.xml
39         </yang.modules.whitelist>
40     </properties>
41
42     <dependencies>
43         <!-- TPCE dependencies  -->
44         <dependency>
45             <groupId>io.fd.honeycomb.transportpce</groupId>
46             <artifactId>honeynode-plugin-impl</artifactId>
47             <version>${project.version}</version>
48         </dependency>
49          <dependency>
50             <groupId>io.fd.honeycomb.transportpce</groupId>
51             <artifactId>minimal-distribution-core</artifactId>
52             <version>${project.version}</version>
53         </dependency>
54         <!-- DI-->
55         <dependency>
56             <groupId>com.google.inject</groupId>
57             <artifactId>guice</artifactId>
58         </dependency>
59         <dependency>
60             <groupId>net.jmob</groupId>
61             <artifactId>guice.conf</artifactId>
62         </dependency>
63         <dependency>
64             <groupId>io.fd.honeycomb</groupId>
65             <artifactId>binding-init</artifactId>
66             <version>${project.version}</version>
67         </dependency>
68
69         <!-- Northbound common -->
70         <dependency>
71             <groupId>io.fd.honeycomb.northbound</groupId>
72             <artifactId>common</artifactId>
73             <version>${project.version}</version>
74         </dependency>
75
76         <!-- ODL-Restconf -->
77         <dependency>
78             <groupId>org.opendaylight.netconf</groupId>
79             <artifactId>sal-rest-connector</artifactId>
80         </dependency>
81
82         <!-- Jersey + Jetty for RESTCONF -->
83         <dependency>
84             <groupId>org.eclipse.jetty</groupId>
85             <artifactId>jetty-server</artifactId>
86             <version>${jetty.version}</version>
87         </dependency>
88         <dependency>
89             <groupId>javax.servlet</groupId>
90             <artifactId>javax.servlet-api</artifactId>
91             <version>${servlet.version}</version>
92         </dependency>
93         <dependency>
94             <groupId>org.eclipse.jetty</groupId>
95             <artifactId>jetty-webapp</artifactId>
96             <version>${jetty.version}</version>
97         </dependency>
98         <dependency>
99             <groupId>org.eclipse.jetty</groupId>
100             <artifactId>jetty-servlets</artifactId>
101             <version>${jetty.version}</version>
102         </dependency>
103         <dependency>
104             <groupId>com.sun.jersey</groupId>
105             <artifactId>jersey-server</artifactId>
106             <version>${jersey.version}</version>
107         </dependency>
108         <dependency>
109             <groupId>com.sun.jersey</groupId>
110             <artifactId>jersey-core</artifactId>
111             <version>${jersey.version}</version>
112         </dependency>
113         <dependency>
114             <groupId>com.sun.jersey</groupId>
115             <artifactId>jersey-servlet</artifactId>
116             <version>${jersey.version}</version>
117         </dependency>
118
119         <!-- javax.annotation -->
120         <dependency>
121             <groupId>com.google.code.findbugs</groupId>
122             <artifactId>jsr305</artifactId>
123         </dependency>
124     </dependencies>
125 </project>