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