Merge "Formatted code Bug-3894."
[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     <jersey-servlet.version>1.17</jersey-servlet.version>
28     <mdsal.version>2.0.0-SNAPSHOT</mdsal.version>
29     <mdsal.model.version>0.8.0-SNAPSHOT</mdsal.model.version>
30     <restconf.version>1.3.0-SNAPSHOT</restconf.version>
31     <surefire.version>2.15</surefire.version>
32     <yangtools.version>0.8.0-SNAPSHOT</yangtools.version>
33
34     <features.file>features.xml</features.file>
35     <config.configfile.directory>etc/opendaylight/karaf</config.configfile.directory>
36     <config.restconf.configfile>10-rest-connector.xml</config.restconf.configfile>
37     <config.restconf.service.configfile>10-restconf-service.xml</config.restconf.service.configfile>
38   </properties>
39
40   <dependencies>
41     <dependency>
42       <groupId>org.opendaylight.yangtools</groupId>
43       <artifactId>features-yangtools</artifactId>
44       <version>${yangtools.version}</version>
45       <classifier>features</classifier>
46       <type>xml</type>
47     </dependency>
48     <dependency>
49       <groupId>org.opendaylight.mdsal</groupId>
50       <artifactId>features-mdsal</artifactId>
51       <version>${mdsal.version}</version>
52       <classifier>features</classifier>
53       <type>xml</type>
54     </dependency>
55     <dependency>
56       <groupId>org.opendaylight.mdsal.model</groupId>
57       <artifactId>features-mdsal-model</artifactId>
58       <version>${mdsal.model.version}</version>
59       <classifier>features</classifier>
60       <type>xml</type>
61     </dependency>
62     <dependency>
63       <groupId>org.opendaylight.aaa</groupId>
64       <artifactId>features-aaa-shiro</artifactId>
65       <version>${aaa.version}</version>
66       <classifier>features</classifier>
67       <type>xml</type>
68     </dependency>
69     <dependency>
70       <groupId>org.opendaylight.controller</groupId>
71       <artifactId>sal-remote</artifactId>
72       <version>${controller.mdsal.version}</version>
73     </dependency>
74
75     <dependency>
76       <groupId>org.opendaylight.netconf</groupId>
77       <artifactId>sal-rest-connector</artifactId>
78       <version>${restconf.version}</version>
79     </dependency>
80
81     <dependency>
82       <groupId>com.google.code.gson</groupId>
83       <artifactId>gson</artifactId>
84     </dependency>
85
86     <dependency>
87       <groupId>com.sun.jersey</groupId>
88       <artifactId>jersey-core</artifactId>
89     </dependency>
90     <dependency>
91       <groupId>com.sun.jersey</groupId>
92       <artifactId>jersey-server</artifactId>
93     </dependency>
94     <dependency>
95       <groupId>com.sun.jersey</groupId>
96       <artifactId>jersey-servlet</artifactId>
97     </dependency>
98     <dependency>
99       <groupId>io.netty</groupId>
100       <artifactId>netty-buffer</artifactId>
101     </dependency>
102     <dependency>
103       <groupId>io.netty</groupId>
104       <artifactId>netty-codec</artifactId>
105     </dependency>
106     <dependency>
107       <groupId>io.netty</groupId>
108       <artifactId>netty-codec-http</artifactId>
109     </dependency>
110     <dependency>
111       <groupId>io.netty</groupId>
112       <artifactId>netty-common</artifactId>
113     </dependency>
114     <dependency>
115       <groupId>io.netty</groupId>
116       <artifactId>netty-handler</artifactId>
117     </dependency>
118     <dependency>
119       <groupId>io.netty</groupId>
120       <artifactId>netty-transport</artifactId>
121     </dependency>
122
123     <dependency>
124       <groupId>org.opendaylight.netconf</groupId>
125       <artifactId>sal-rest-connector-config</artifactId>
126       <version>${restconf.version}</version>
127       <type>xml</type>
128       <classifier>config</classifier>
129     </dependency>
130
131     <dependency>
132       <groupId>org.opendaylight.netconf</groupId>
133       <artifactId>sal-rest-connector-config</artifactId>
134       <version>${restconf.version}</version>
135       <type>xml</type>
136       <classifier>configrestconfservice</classifier>
137     </dependency>
138
139     <dependency>
140       <groupId>com.fasterxml.jackson.core</groupId>
141       <artifactId>jackson-annotations</artifactId>
142     </dependency>
143     <dependency>
144       <groupId>com.fasterxml.jackson.core</groupId>
145       <artifactId>jackson-core</artifactId>
146     </dependency>
147     <dependency>
148       <groupId>com.fasterxml.jackson.core</groupId>
149       <artifactId>jackson-databind</artifactId>
150     </dependency>
151     <dependency>
152       <groupId>com.fasterxml.jackson.datatype</groupId>
153       <artifactId>jackson-datatype-json-org</artifactId>
154     </dependency>
155     <dependency>
156       <groupId>com.fasterxml.jackson.module</groupId>
157       <artifactId>jackson-module-jaxb-annotations</artifactId>
158     </dependency>
159     <dependency>
160       <groupId>com.fasterxml.jackson.jaxrs</groupId>
161       <artifactId>jackson-jaxrs-base</artifactId>
162     </dependency>
163     <dependency>
164       <groupId>com.fasterxml.jackson.jaxrs</groupId>
165       <artifactId>jackson-jaxrs-json-provider</artifactId>
166     </dependency>
167     <dependency>
168       <groupId>org.json</groupId>
169       <artifactId>json</artifactId>
170     </dependency>
171
172     <dependency>
173       <groupId>org.opendaylight.yangtools</groupId>
174       <artifactId>yang-data-codec-gson</artifactId>
175       <version>${yangtools.version}</version>
176     </dependency>
177
178     <dependency>
179       <groupId>org.opendaylight.netconf</groupId>
180       <artifactId>sal-rest-docgen</artifactId>
181       <version>${restconf.version}</version>
182     </dependency>
183
184     <!-- dependency for opendaylight-karaf-empty for use by testing -->
185     <dependency>
186       <groupId>org.opendaylight.controller</groupId>
187       <artifactId>opendaylight-karaf-empty</artifactId>
188       <version>${commons.opendaylight.version}</version>
189       <scope>test</scope>
190       <type>zip</type>
191     </dependency>
192     <!-- 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;
193     <dependency>
194       <groupId>org.slf4j</groupId>
195       <artifactId>slf4j-simple</artifactId>
196       <version>1.7.2</version>
197     </dependency>
198     -->
199
200   </dependencies>
201   <scm>
202     <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
203     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
204     <tag>HEAD</tag>
205     <url>https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=summary</url>
206   </scm>
207 </project>