Honeycomb 1.18.10-RC1
[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.10-RC1</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.10-RC1</version>
32     <name>${project.artifactId}</name>
33
34     <properties>
35         <jersey.version>1.19.4</jersey.version>
36         <glassfish-jersey.version>2.25.1</glassfish-jersey.version>
37         <servlet.version>3.1.0</servlet.version>
38         <jetty.version>9.3.21.v20170918</jetty.version>
39         <yang.modules.whitelist>
40             ${project.basedir}/src/main/resources/honeycomb-minimal-resources/config/restconf-whitelist.xml
41         </yang.modules.whitelist>
42     </properties>
43
44     <dependencies>
45         <!-- DI-->
46         <dependency>
47             <groupId>com.google.inject</groupId>
48             <artifactId>guice</artifactId>
49         </dependency>
50         <dependency>
51             <groupId>net.jmob</groupId>
52             <artifactId>guice.conf</artifactId>
53         </dependency>
54         <dependency>
55             <groupId>io.fd.honeycomb</groupId>
56             <artifactId>binding-init</artifactId>
57             <version>${project.version}</version>
58         </dependency>
59         <dependency>
60             <groupId>io.fd.honeycomb</groupId>
61             <artifactId>minimal-distribution-core</artifactId>
62             <version>${project.version}</version>
63         </dependency>
64
65         <!-- Northbound common -->
66         <dependency>
67             <groupId>io.fd.honeycomb.northbound</groupId>
68             <artifactId>common</artifactId>
69             <version>${project.version}</version>
70         </dependency>
71
72         <!-- ODL-Restconf -->
73         <dependency>
74             <groupId>org.opendaylight.netconf</groupId>
75             <artifactId>restconf-nb-bierman02</artifactId>
76         </dependency>
77
78         <!-- Jersey + Jetty for RESTCONF -->
79         <dependency>
80             <groupId>org.eclipse.jetty</groupId>
81             <artifactId>jetty-server</artifactId>
82             <version>${jetty.version}</version>
83         </dependency>
84         <dependency>
85             <groupId>javax.servlet</groupId>
86             <artifactId>javax.servlet-api</artifactId>
87             <version>${servlet.version}</version>
88         </dependency>
89         <dependency>
90             <groupId>org.eclipse.jetty</groupId>
91             <artifactId>jetty-webapp</artifactId>
92             <version>${jetty.version}</version>
93         </dependency>
94         <dependency>
95             <groupId>org.eclipse.jetty</groupId>
96             <artifactId>jetty-servlets</artifactId>
97             <version>${jetty.version}</version>
98         </dependency>
99         <dependency>
100             <groupId>org.glassfish.jersey.core</groupId>
101             <artifactId>jersey-server</artifactId>
102             <version>${glassfish-jersey.version}</version>
103         </dependency>
104         <dependency>
105             <groupId>org.glassfish.jersey.containers</groupId>
106             <artifactId>jersey-container-servlet-core</artifactId>
107             <version>${glassfish-jersey.version}</version>
108         </dependency>
109
110         <!-- javax.annotation -->
111         <dependency>
112             <groupId>com.google.code.findbugs</groupId>
113             <artifactId>jsr305</artifactId>
114         </dependency>
115     </dependencies>
116 </project>