ecff574594f9a48d1e4aac0ee458af7088644f88
[honeycomb.git] / infra / northbound / 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-SNAPSHOT</version>
25         <relativePath>../../../common/impl-parent</relativePath>
26     </parent>
27     <modelVersion>4.0.0</modelVersion>
28
29     <groupId>io.fd.honeycomb.northbound</groupId>
30     <artifactId>restconf</artifactId>
31     <version>1.18.01-SNAPSHOT</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         <!-- DI-->
44         <dependency>
45             <groupId>com.google.inject</groupId>
46             <artifactId>guice</artifactId>
47         </dependency>
48         <dependency>
49             <groupId>net.jmob</groupId>
50             <artifactId>guice.conf</artifactId>
51         </dependency>
52         <dependency>
53             <groupId>io.fd.honeycomb</groupId>
54             <artifactId>binding-init</artifactId>
55             <version>${project.version}</version>
56         </dependency>
57         <dependency>
58             <groupId>io.fd.honeycomb</groupId>
59             <artifactId>minimal-distribution-core</artifactId>
60             <version>${project.version}</version>
61         </dependency>
62
63         <!-- Northbound common -->
64         <dependency>
65             <groupId>io.fd.honeycomb.northbound</groupId>
66             <artifactId>common</artifactId>
67             <version>${project.version}</version>
68         </dependency>
69
70         <!-- ODL-Restconf -->
71         <dependency>
72             <groupId>org.opendaylight.netconf</groupId>
73             <artifactId>sal-rest-connector</artifactId>
74         </dependency>
75
76         <!-- Jersey + Jetty for RESTCONF -->
77         <dependency>
78             <groupId>org.eclipse.jetty</groupId>
79             <artifactId>jetty-server</artifactId>
80             <version>${jetty.version}</version>
81         </dependency>
82         <dependency>
83             <groupId>javax.servlet</groupId>
84             <artifactId>javax.servlet-api</artifactId>
85             <version>${servlet.version}</version>
86         </dependency>
87         <dependency>
88             <groupId>org.eclipse.jetty</groupId>
89             <artifactId>jetty-webapp</artifactId>
90             <version>${jetty.version}</version>
91         </dependency>
92         <dependency>
93             <groupId>org.eclipse.jetty</groupId>
94             <artifactId>jetty-servlets</artifactId>
95             <version>${jetty.version}</version>
96         </dependency>
97         <dependency>
98             <groupId>com.sun.jersey</groupId>
99             <artifactId>jersey-server</artifactId>
100             <version>${jersey.version}</version>
101         </dependency>
102         <dependency>
103             <groupId>com.sun.jersey</groupId>
104             <artifactId>jersey-core</artifactId>
105             <version>${jersey.version}</version>
106         </dependency>
107         <dependency>
108             <groupId>com.sun.jersey</groupId>
109             <artifactId>jersey-servlet</artifactId>
110             <version>${jersey.version}</version>
111         </dependency>
112
113         <!-- javax.annotation -->
114         <dependency>
115             <groupId>com.google.code.findbugs</groupId>
116             <artifactId>jsr305</artifactId>
117         </dependency>
118     </dependencies>
119 </project>