Merge "Fix empty revision handling in NETCONF capability"
[netconf.git] / features / restconf / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3  Necessary TODO: Put your copyright here.
4
5  This program and the accompanying materials are made available under the
6  terms of the Eclipse Public License v1.0 which accompanies this distribution,
7  and is available at http://www.eclipse.org/legal/epl-v10.html
8 -->
9 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
10          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
11   <modelVersion>4.0.0</modelVersion>
12   <parent>
13     <groupId>org.opendaylight.odlparent</groupId>
14     <artifactId>features-parent</artifactId>
15     <version>1.6.0-SNAPSHOT</version>
16     <relativePath/>
17   </parent>
18   <artifactId>features-restconf</artifactId>
19   <groupId>org.opendaylight.netconf</groupId>
20   <version>1.3.0-SNAPSHOT</version>
21   <packaging>jar</packaging>
22   <properties>
23     <aaa.version>0.3.0-SNAPSHOT</aaa.version>
24     <commons.opendaylight.version>1.6.0-SNAPSHOT</commons.opendaylight.version>
25     <controller.mdsal.version>1.3.0-SNAPSHOT</controller.mdsal.version>
26     <features.test.version>1.6.0-SNAPSHOT</features.test.version>
27     <mdsal.version>2.0.0-SNAPSHOT</mdsal.version>
28     <mdsal.model.version>0.8.0-SNAPSHOT</mdsal.model.version>
29     <restconf.version>1.3.0-SNAPSHOT</restconf.version>
30     <surefire.version>2.15</surefire.version>
31     <yangtools.version>0.8.0-SNAPSHOT</yangtools.version>
32
33     <features.file>features.xml</features.file>
34     <config.configfile.directory>etc/opendaylight/karaf</config.configfile.directory>
35     <config.restconf.configfile>10-rest-connector.xml</config.restconf.configfile>
36     <config.restconf.service.configfile>10-restconf-service.xml</config.restconf.service.configfile>
37   </properties>
38
39   <dependencies>
40     <dependency>
41       <groupId>org.opendaylight.yangtools</groupId>
42       <artifactId>features-yangtools</artifactId>
43       <version>${yangtools.version}</version>
44       <classifier>features</classifier>
45       <type>xml</type>
46     </dependency>
47     <dependency>
48       <groupId>org.opendaylight.mdsal</groupId>
49       <artifactId>features-mdsal</artifactId>
50       <version>${mdsal.version}</version>
51       <classifier>features</classifier>
52       <type>xml</type>
53     </dependency>
54     <dependency>
55       <groupId>org.opendaylight.mdsal.model</groupId>
56       <artifactId>features-mdsal-model</artifactId>
57       <version>${mdsal.model.version}</version>
58       <classifier>features</classifier>
59       <type>xml</type>
60     </dependency>
61     <dependency>
62       <groupId>org.opendaylight.aaa</groupId>
63       <artifactId>features-aaa-shiro</artifactId>
64       <version>${aaa.version}</version>
65       <classifier>features</classifier>
66       <type>xml</type>
67     </dependency>
68     <dependency>
69       <groupId>org.opendaylight.controller</groupId>
70       <artifactId>sal-remote</artifactId>
71       <version>${controller.mdsal.version}</version>
72     </dependency>
73
74     <dependency>
75       <groupId>org.opendaylight.netconf</groupId>
76       <artifactId>sal-rest-connector</artifactId>
77       <version>${restconf.version}</version>
78     </dependency>
79
80     <dependency>
81       <groupId>com.google.code.gson</groupId>
82       <artifactId>gson</artifactId>
83     </dependency>
84
85     <dependency>
86       <groupId>com.sun.jersey</groupId>
87       <artifactId>jersey-core</artifactId>
88     </dependency>
89     <dependency>
90       <groupId>com.sun.jersey</groupId>
91       <artifactId>jersey-server</artifactId>
92     </dependency>
93     <dependency>
94       <groupId>com.sun.jersey</groupId>
95       <artifactId>jersey-servlet</artifactId>
96     </dependency>
97     <dependency>
98       <groupId>io.netty</groupId>
99       <artifactId>netty-buffer</artifactId>
100     </dependency>
101     <dependency>
102       <groupId>io.netty</groupId>
103       <artifactId>netty-codec</artifactId>
104     </dependency>
105     <dependency>
106       <groupId>io.netty</groupId>
107       <artifactId>netty-codec-http</artifactId>
108     </dependency>
109     <dependency>
110       <groupId>io.netty</groupId>
111       <artifactId>netty-common</artifactId>
112     </dependency>
113     <dependency>
114       <groupId>io.netty</groupId>
115       <artifactId>netty-handler</artifactId>
116     </dependency>
117     <dependency>
118       <groupId>io.netty</groupId>
119       <artifactId>netty-transport</artifactId>
120     </dependency>
121
122     <dependency>
123       <groupId>org.opendaylight.netconf</groupId>
124       <artifactId>sal-rest-connector-config</artifactId>
125       <version>${restconf.version}</version>
126       <type>xml</type>
127       <classifier>config</classifier>
128     </dependency>
129
130     <dependency>
131       <groupId>org.opendaylight.netconf</groupId>
132       <artifactId>sal-rest-connector-config</artifactId>
133       <version>${restconf.version}</version>
134       <type>xml</type>
135       <classifier>configrestconfservice</classifier>
136     </dependency>
137
138     <dependency>
139       <groupId>com.fasterxml.jackson.core</groupId>
140       <artifactId>jackson-annotations</artifactId>
141     </dependency>
142     <dependency>
143       <groupId>com.fasterxml.jackson.core</groupId>
144       <artifactId>jackson-core</artifactId>
145     </dependency>
146     <dependency>
147       <groupId>com.fasterxml.jackson.core</groupId>
148       <artifactId>jackson-databind</artifactId>
149     </dependency>
150     <dependency>
151       <groupId>com.fasterxml.jackson.datatype</groupId>
152       <artifactId>jackson-datatype-json-org</artifactId>
153     </dependency>
154     <dependency>
155       <groupId>com.fasterxml.jackson.module</groupId>
156       <artifactId>jackson-module-jaxb-annotations</artifactId>
157     </dependency>
158     <dependency>
159       <groupId>com.fasterxml.jackson.jaxrs</groupId>
160       <artifactId>jackson-jaxrs-base</artifactId>
161     </dependency>
162     <dependency>
163       <groupId>com.fasterxml.jackson.jaxrs</groupId>
164       <artifactId>jackson-jaxrs-json-provider</artifactId>
165     </dependency>
166     <dependency>
167       <groupId>org.json</groupId>
168       <artifactId>json</artifactId>
169     </dependency>
170
171     <dependency>
172       <groupId>org.opendaylight.yangtools</groupId>
173       <artifactId>yang-data-codec-gson</artifactId>
174       <version>${yangtools.version}</version>
175     </dependency>
176
177     <dependency>
178       <groupId>org.opendaylight.netconf</groupId>
179       <artifactId>sal-rest-docgen</artifactId>
180       <version>${restconf.version}</version>
181     </dependency>
182
183     <!-- dependency for opendaylight-karaf-empty for use by testing -->
184     <dependency>
185       <groupId>org.opendaylight.controller</groupId>
186       <artifactId>opendaylight-karaf-empty</artifactId>
187       <version>${commons.opendaylight.version}</version>
188       <scope>test</scope>
189       <type>zip</type>
190     </dependency>
191     <!-- Uncomment this if you get an error : java.lang.NoSuchMethodError: org.slf4j.helpers.MessageFormatter.format(Ljava/lang/String;Ljava/lang/Object;Ljava/lang/Object;)Lorg/slf4j/helpers/FormattingTuple;
192     <dependency>
193       <groupId>org.slf4j</groupId>
194       <artifactId>slf4j-simple</artifactId>
195       <version>1.7.2</version>
196     </dependency>
197     -->
198
199   </dependencies>
200   <scm>
201     <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
202     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
203     <tag>HEAD</tag>
204     <url>https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=summary</url>
205   </scm>
206 </project>