Remove unused jersey dependencies in RESTCONF and yanglib features
[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.7.0-SNAPSHOT</version>
16     <relativePath/>
17   </parent>
18   <artifactId>features-restconf</artifactId>
19   <groupId>org.opendaylight.netconf</groupId>
20   <version>1.4.0-SNAPSHOT</version>
21   <packaging>jar</packaging>
22   <properties>
23     <aaa.version>0.4.0-SNAPSHOT</aaa.version>
24     <commons.opendaylight.version>1.7.0-SNAPSHOT</commons.opendaylight.version>
25     <controller.mdsal.version>1.4.0-SNAPSHOT</controller.mdsal.version>
26     <features.test.version>1.7.0-SNAPSHOT</features.test.version>
27     <mdsal.version>2.1.0-SNAPSHOT</mdsal.version>
28     <mdsal.model.version>0.9.0-SNAPSHOT</mdsal.model.version>
29     <restconf.version>1.4.0-SNAPSHOT</restconf.version>
30     <yangtools.version>1.0.0-SNAPSHOT</yangtools.version>
31
32     <features.file>features.xml</features.file>
33     <config.configfile.directory>etc/opendaylight/karaf</config.configfile.directory>
34     <config.restconf.configfile>10-rest-connector.xml</config.restconf.configfile>
35     <config.restconf.service.configfile>10-restconf-service.xml</config.restconf.service.configfile>
36   </properties>
37
38   <dependencyManagement>
39     <dependencies>
40       <dependency>
41         <groupId>org.opendaylight.odlparent</groupId>
42         <artifactId>odlparent-artifacts</artifactId>
43         <version>1.7.0-SNAPSHOT</version>
44         <type>pom</type>
45         <scope>import</scope>
46       </dependency>
47       <dependency>
48         <groupId>org.opendaylight.aaa</groupId>
49         <artifactId>aaa-artifacts</artifactId>
50         <version>${aaa.version}</version>
51         <type>pom</type>
52         <scope>import</scope>
53       </dependency>
54       <dependency>
55         <groupId>org.opendaylight.yangtools</groupId>
56         <artifactId>yangtools-artifacts</artifactId>
57         <version>${yangtools.version}</version>
58         <type>pom</type>
59         <scope>import</scope>
60       </dependency>
61     </dependencies>
62   </dependencyManagement>
63
64   <dependencies>
65     <dependency>
66       <groupId>org.opendaylight.odlparent</groupId>
67       <artifactId>features-odlparent</artifactId>
68       <classifier>features</classifier>
69       <type>xml</type>
70     </dependency>
71     <dependency>
72       <groupId>org.opendaylight.yangtools</groupId>
73       <artifactId>features-yangtools</artifactId>
74       <classifier>features</classifier>
75       <type>xml</type>
76     </dependency>
77     <dependency>
78       <groupId>org.opendaylight.mdsal</groupId>
79       <artifactId>features-mdsal</artifactId>
80       <version>${mdsal.version}</version>
81       <classifier>features</classifier>
82       <type>xml</type>
83     </dependency>
84     <dependency>
85       <groupId>org.opendaylight.mdsal.model</groupId>
86       <artifactId>features-mdsal-model</artifactId>
87       <version>${mdsal.model.version}</version>
88       <classifier>features</classifier>
89       <type>xml</type>
90     </dependency>
91     <dependency>
92       <groupId>org.opendaylight.aaa</groupId>
93       <artifactId>features-aaa-shiro</artifactId>
94       <classifier>features</classifier>
95       <type>xml</type>
96     </dependency>
97     <dependency>
98       <groupId>org.opendaylight.controller</groupId>
99       <artifactId>sal-remote</artifactId>
100       <version>${controller.mdsal.version}</version>
101     </dependency>
102
103     <dependency>
104       <groupId>org.opendaylight.netconf</groupId>
105       <artifactId>sal-rest-connector</artifactId>
106       <version>${restconf.version}</version>
107     </dependency>
108
109     <dependency>
110       <groupId>com.google.code.gson</groupId>
111       <artifactId>gson</artifactId>
112     </dependency>
113
114     <dependency>
115       <groupId>org.opendaylight.netconf</groupId>
116       <artifactId>sal-rest-connector-config</artifactId>
117       <version>${restconf.version}</version>
118       <type>xml</type>
119       <classifier>config</classifier>
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>configrestconfservice</classifier>
128     </dependency>
129
130     <dependency>
131       <groupId>com.fasterxml.jackson.core</groupId>
132       <artifactId>jackson-annotations</artifactId>
133     </dependency>
134     <dependency>
135       <groupId>com.fasterxml.jackson.core</groupId>
136       <artifactId>jackson-core</artifactId>
137     </dependency>
138     <dependency>
139       <groupId>com.fasterxml.jackson.core</groupId>
140       <artifactId>jackson-databind</artifactId>
141     </dependency>
142     <dependency>
143       <groupId>com.fasterxml.jackson.datatype</groupId>
144       <artifactId>jackson-datatype-json-org</artifactId>
145     </dependency>
146     <dependency>
147       <groupId>com.fasterxml.jackson.module</groupId>
148       <artifactId>jackson-module-jaxb-annotations</artifactId>
149     </dependency>
150     <dependency>
151       <groupId>com.fasterxml.jackson.jaxrs</groupId>
152       <artifactId>jackson-jaxrs-base</artifactId>
153     </dependency>
154     <dependency>
155       <groupId>com.fasterxml.jackson.jaxrs</groupId>
156       <artifactId>jackson-jaxrs-json-provider</artifactId>
157     </dependency>
158     <dependency>
159       <groupId>org.json</groupId>
160       <artifactId>json</artifactId>
161     </dependency>
162
163     <dependency>
164       <groupId>org.opendaylight.yangtools</groupId>
165       <artifactId>yang-data-codec-gson</artifactId>
166     </dependency>
167
168     <dependency>
169       <groupId>org.opendaylight.netconf</groupId>
170       <artifactId>sal-rest-docgen</artifactId>
171       <version>${restconf.version}</version>
172     </dependency>
173
174   </dependencies>
175   <scm>
176     <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
177     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
178     <tag>HEAD</tag>
179     <url>https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=summary</url>
180   </scm>
181 </project>