Bug 4719 Shiro integration into restconf
[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       <version>${jersey.version}</version>
90     </dependency>
91     <dependency>
92       <groupId>com.sun.jersey</groupId>
93       <artifactId>jersey-server</artifactId>
94       <version>${jersey.version}</version>
95     </dependency>
96     <dependency>
97       <groupId>com.sun.jersey</groupId>
98       <artifactId>jersey-servlet</artifactId>
99       <version>${jersey.version}</version>
100     </dependency>
101     <dependency>
102       <groupId>io.netty</groupId>
103       <artifactId>netty-buffer</artifactId>
104     </dependency>
105     <dependency>
106       <groupId>io.netty</groupId>
107       <artifactId>netty-codec</artifactId>
108     </dependency>
109     <dependency>
110       <groupId>io.netty</groupId>
111       <artifactId>netty-codec-http</artifactId>
112     </dependency>
113     <dependency>
114       <groupId>io.netty</groupId>
115       <artifactId>netty-common</artifactId>
116     </dependency>
117     <dependency>
118       <groupId>io.netty</groupId>
119       <artifactId>netty-handler</artifactId>
120     </dependency>
121     <dependency>
122       <groupId>io.netty</groupId>
123       <artifactId>netty-transport</artifactId>
124     </dependency>
125
126     <dependency>
127       <groupId>org.opendaylight.netconf</groupId>
128       <artifactId>sal-rest-connector-config</artifactId>
129       <version>${restconf.version}</version>
130       <type>xml</type>
131       <classifier>config</classifier>
132     </dependency>
133
134     <dependency>
135       <groupId>org.opendaylight.netconf</groupId>
136       <artifactId>sal-rest-connector-config</artifactId>
137       <version>${restconf.version}</version>
138       <type>xml</type>
139       <classifier>configrestconfservice</classifier>
140     </dependency>
141
142     <dependency>
143       <groupId>com.fasterxml.jackson.core</groupId>
144       <artifactId>jackson-annotations</artifactId>
145     </dependency>
146     <dependency>
147       <groupId>com.fasterxml.jackson.core</groupId>
148       <artifactId>jackson-core</artifactId>
149     </dependency>
150     <dependency>
151       <groupId>com.fasterxml.jackson.core</groupId>
152       <artifactId>jackson-databind</artifactId>
153     </dependency>
154     <dependency>
155       <groupId>com.fasterxml.jackson.datatype</groupId>
156       <artifactId>jackson-datatype-json-org</artifactId>
157     </dependency>
158     <dependency>
159       <groupId>com.fasterxml.jackson.module</groupId>
160       <artifactId>jackson-module-jaxb-annotations</artifactId>
161     </dependency>
162     <dependency>
163       <groupId>com.fasterxml.jackson.jaxrs</groupId>
164       <artifactId>jackson-jaxrs-base</artifactId>
165     </dependency>
166     <dependency>
167       <groupId>com.fasterxml.jackson.jaxrs</groupId>
168       <artifactId>jackson-jaxrs-json-provider</artifactId>
169     </dependency>
170     <dependency>
171       <groupId>org.json</groupId>
172       <artifactId>json</artifactId>
173     </dependency>
174
175     <dependency>
176       <groupId>org.opendaylight.yangtools</groupId>
177       <artifactId>yang-data-codec-gson</artifactId>
178       <version>${yangtools.version}</version>
179     </dependency>
180
181     <dependency>
182       <groupId>org.opendaylight.netconf</groupId>
183       <artifactId>sal-rest-docgen</artifactId>
184       <version>${restconf.version}</version>
185     </dependency>
186
187     <!-- dependency for opendaylight-karaf-empty for use by testing -->
188     <dependency>
189       <groupId>org.opendaylight.controller</groupId>
190       <artifactId>opendaylight-karaf-empty</artifactId>
191       <version>${commons.opendaylight.version}</version>
192       <scope>test</scope>
193       <type>zip</type>
194     </dependency>
195     <!-- 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;
196     <dependency>
197       <groupId>org.slf4j</groupId>
198       <artifactId>slf4j-simple</artifactId>
199       <version>1.7.2</version>
200     </dependency>
201     -->
202
203   </dependencies>
204   <scm>
205     <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
206     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
207     <tag>HEAD</tag>
208     <url>https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=summary</url>
209   </scm>
210 </project>