bc7e13d561aa739778911f7f9f7d9df031beee56
[controller.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 --><project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
9    <modelVersion>4.0.0</modelVersion>
10    <parent>
11     <groupId>org.opendaylight.controller</groupId>
12     <artifactId>sal-parent</artifactId>
13     <version>1.2.3-SNAPSHOT</version>
14     <relativePath>../../opendaylight/md-sal</relativePath>
15    </parent>
16    <!--
17     Necessary TODO: Hookup your parent pom here, else you will not get necessary versions,
18     maven repos etc.  If you run this archetype in a subdirectory of your project, it
19     will pick the pom.xml from the parent directory as the parent pom, which may or may
20     not be correct.
21   -->
22    <artifactId>features-restconf</artifactId>
23    <groupId>org.opendaylight.controller</groupId>
24    <!-- Optional TODO: Uncomment version if you are not using a parent pom.xml
25    <version>1.1.3-SNAPSHOT</version>
26    -->
27    <packaging>jar</packaging>
28    <properties>
29       <features.file>features.xml</features.file>
30    </properties>
31    <dependencies>
32     <!--
33       Necessary TODO: Put dependencies on any feature repos
34       you use in your features.xml file.
35
36       Note: they will need to be <type>xml</xml>
37       and <classifier>features</classifier>.
38       One other thing to watch for is to make sure they are
39       <scope>compile</compile>, which they should be by default,
40       but be cautious lest they be at a different scope in a parent pom.
41
42       Examples:
43         <dependency>
44           <groupId>org.opendaylight.yangtools</groupId>
45           <artifactId>features-yangtools</artifactId>
46           <version>0.7.3-SNAPSHOT</version>
47           <classifier>features</classifier>
48           <type>xml</type>
49         </dependency>
50         <dependency>
51           <groupId>org.opendaylight.controller</groupId>
52           <artifactId>features-mdsal</artifactId>
53           <version>1.2.3-SNAPSHOT</version>
54           <classifier>features</classifier>
55           <type>xml</type>
56         </dependency>
57         <dependency>
58           <groupId>org.opendaylight.openflowplugin</groupId>
59           <artifactId>features-openflowplugin</artifactId>
60           <version>0.1.3-SNAPSHOT</version>
61           <classifier>features</classifier>
62           <type>xml</type>
63         </dependency>
64     -->
65
66     <!--
67       Necessary TODO: Put dependencies for bundles directly referenced
68       in your features.xml file.  For every <bundle> reference in your
69       features.xml file, you need a corresponding dependency here.
70
71       Examples:
72       <dependency>
73         <groupId>org.opendaylight.controller</groupId>
74         <artifactId>controller-provider</artifactId>
75         <version>${project.version}</version>
76       </dependency>
77       <dependency>
78         <groupId>org.opendaylight.controller</groupId>
79         <artifactId>controller-model</artifactId>
80         <version>${project.version}</version>
81       </dependency>
82     -->
83
84     <!--
85       Necessary TODO: Put dependencies for configfiles directly referenced
86       in your features.xml file.  For every <configfile> reference in your
87       features.xml file, you need a corresponding dependency here.
88
89       Example (presuming here version is coming from the parent pom):
90       <dependency>
91         <groupId>org.opendaylight.controller</groupId>
92         <artifactId>controller-config</artifactId>
93         <version>${project.version}</version>
94         <type>xml</type>
95         <classifier>config</classifier>
96       </dependency>
97     -->
98     <dependency>
99       <groupId>org.opendaylight.yangtools</groupId>
100       <artifactId>features-yangtools</artifactId>
101       <version>${yangtools.version}</version>
102       <classifier>features</classifier>
103       <type>xml</type>
104     </dependency>
105     <dependency>
106       <groupId>org.opendaylight.controller</groupId>
107       <artifactId>features-mdsal</artifactId>
108       <version>${mdsal.version}</version>
109       <classifier>features</classifier>
110       <type>xml</type>
111     </dependency>
112     <dependency>
113       <groupId>org.opendaylight.aaa</groupId>
114       <artifactId>features-aaa</artifactId>
115       <version>${aaa.version}</version>
116       <classifier>features</classifier>
117       <type>xml</type>
118     </dependency>
119
120     <dependency>
121       <groupId>org.opendaylight.controller</groupId>
122       <artifactId>sal-remote</artifactId>
123     </dependency>
124
125     <dependency>
126       <groupId>org.opendaylight.controller</groupId>
127       <artifactId>sal-rest-connector</artifactId>
128     </dependency>
129
130     <dependency>
131       <groupId>com.google.code.gson</groupId>
132       <artifactId>gson</artifactId>
133     </dependency>
134
135     <dependency>
136       <groupId>com.sun.jersey</groupId>
137       <artifactId>jersey-core</artifactId>
138     </dependency>
139     <dependency>
140       <groupId>com.sun.jersey</groupId>
141       <artifactId>jersey-server</artifactId>
142     </dependency>
143     <dependency>
144       <groupId>com.sun.jersey</groupId>
145       <artifactId>jersey-servlet</artifactId>
146     </dependency>
147     <dependency>
148       <groupId>io.netty</groupId>
149       <artifactId>netty-buffer</artifactId>
150     </dependency>
151     <dependency>
152       <groupId>io.netty</groupId>
153       <artifactId>netty-codec</artifactId>
154     </dependency>
155     <dependency>
156       <groupId>io.netty</groupId>
157       <artifactId>netty-codec-http</artifactId>
158     </dependency>
159     <dependency>
160       <groupId>io.netty</groupId>
161       <artifactId>netty-common</artifactId>
162     </dependency>
163     <dependency>
164       <groupId>io.netty</groupId>
165       <artifactId>netty-handler</artifactId>
166     </dependency>
167     <dependency>
168       <groupId>io.netty</groupId>
169       <artifactId>netty-transport</artifactId>
170     </dependency>
171
172     <dependency>
173       <groupId>org.opendaylight.controller</groupId>
174       <artifactId>sal-rest-connector-config</artifactId>
175       <version>${mdsal.version}</version>
176       <type>xml</type>
177       <classifier>config</classifier>
178     </dependency>
179     <dependency>
180       <groupId>org.opendaylight.controller</groupId>
181       <artifactId>sal-rest-connector-config</artifactId>
182       <version>${mdsal.version}</version>
183       <type>xml</type>
184       <classifier>configrestconfservice</classifier>
185     </dependency>
186
187         <dependency>
188       <groupId>com.fasterxml.jackson.core</groupId>
189       <artifactId>jackson-annotations</artifactId>
190     </dependency>
191     <dependency>
192       <groupId>com.fasterxml.jackson.core</groupId>
193       <artifactId>jackson-core</artifactId>
194     </dependency>
195     <dependency>
196       <groupId>com.fasterxml.jackson.core</groupId>
197       <artifactId>jackson-databind</artifactId>
198     </dependency>
199     <dependency>
200       <groupId>com.fasterxml.jackson.datatype</groupId>
201       <artifactId>jackson-datatype-json-org</artifactId>
202     </dependency>
203     <dependency>
204       <groupId>com.fasterxml.jackson.module</groupId>
205       <artifactId>jackson-module-jaxb-annotations</artifactId>
206     </dependency>
207     <dependency>
208       <groupId>com.fasterxml.jackson.jaxrs</groupId>
209       <artifactId>jackson-jaxrs-base</artifactId>
210     </dependency>
211     <dependency>
212       <groupId>com.fasterxml.jackson.jaxrs</groupId>
213       <artifactId>jackson-jaxrs-json-provider</artifactId>
214     </dependency>
215     <dependency>
216       <groupId>org.json</groupId>
217       <artifactId>json</artifactId>
218     </dependency>
219
220     <dependency>
221         <groupId>org.opendaylight.yangtools</groupId>
222         <artifactId>yang-data-codec-gson</artifactId>
223     </dependency>
224
225     <dependency>
226       <groupId>org.opendaylight.controller.samples</groupId>
227       <artifactId>clustering-it-model</artifactId>
228       <version>${mdsal.version}</version>
229     </dependency>
230     <dependency>
231       <groupId>org.opendaylight.controller.samples</groupId>
232       <artifactId>clustering-it-provider</artifactId>
233       <version>${mdsal.version}</version>
234     </dependency>
235     <dependency>
236       <groupId>org.opendaylight.controller.samples</groupId>
237       <artifactId>clustering-it-config</artifactId>
238       <version>${mdsal.version}</version>
239       <type>xml</type>
240       <classifier>config</classifier>
241     </dependency>
242     <dependency>
243       <groupId>org.opendaylight.controller.samples</groupId>
244       <artifactId>clustering-it-config</artifactId>
245       <version>${mdsal.version}</version>
246       <type>xml</type>
247       <classifier>testmoduleshardconf</classifier>
248     </dependency>
249     <dependency>
250       <groupId>org.opendaylight.controller.samples</groupId>
251       <artifactId>clustering-it-config</artifactId>
252       <version>${mdsal.version}</version>
253       <type>xml</type>
254       <classifier>testmoduleconf</classifier>
255     </dependency>
256     <dependency>
257       <groupId>org.opendaylight.controller</groupId>
258       <artifactId>sal-rest-docgen</artifactId>
259     </dependency>
260
261     <!--
262       Optional TODO: Remove TODO comments.
263     -->
264     <!-- test to validate features.xml -->
265     <dependency>
266       <groupId>org.opendaylight.odlparent</groupId>
267       <artifactId>features-test</artifactId>
268       <scope>test</scope>
269     </dependency>
270     <!-- dependency for opendaylight-karaf-empty for use by testing -->
271     <dependency>
272       <groupId>org.opendaylight.controller</groupId>
273       <artifactId>opendaylight-karaf-empty</artifactId>
274       <version>${commons.opendaylight.version}</version>
275       <type>zip</type>
276     </dependency>
277     <!-- 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;
278     <dependency>
279       <groupId>org.slf4j</groupId>
280       <artifactId>slf4j-simple</artifactId>
281       <version>1.7.2</version>
282     </dependency>
283     -->
284
285    </dependencies>
286    <build>
287       <resources>
288          <resource>
289             <directory>src/main/resources</directory>
290             <filtering>true</filtering>
291          </resource>
292       </resources>
293       <plugins>
294          <plugin>
295             <groupId>org.apache.maven.plugins</groupId>
296             <artifactId>maven-resources-plugin</artifactId>
297             <executions>
298                <execution>
299                   <id>filter</id>
300                   <phase>generate-resources</phase>
301                   <goals>
302                      <goal>resources</goal>
303                   </goals>
304                </execution>
305             </executions>
306          </plugin>
307          <plugin>
308             <groupId>org.codehaus.mojo</groupId>
309             <artifactId>build-helper-maven-plugin</artifactId>
310             <executions>
311                <execution>
312                   <id>attach-artifacts</id>
313                   <phase>package</phase>
314                   <goals>
315                      <goal>attach-artifact</goal>
316                   </goals>
317                   <configuration>
318                      <artifacts>
319                         <artifact>
320                            <file>${project.build.directory}/classes/${features.file}</file>
321                            <type>xml</type>
322                            <classifier>features</classifier>
323                         </artifact>
324                      </artifacts>
325                   </configuration>
326                </execution>
327             </executions>
328          </plugin>
329          <plugin>
330             <groupId>org.apache.maven.plugins</groupId>
331             <artifactId>maven-surefire-plugin</artifactId>
332             <version>${surefire.version}</version>
333             <configuration>
334               <systemPropertyVariables>
335                 <karaf.distro.groupId>org.opendaylight.controller</karaf.distro.groupId>
336                 <karaf.distro.artifactId>opendaylight-karaf-empty</karaf.distro.artifactId>
337                 <karaf.distro.version>${commons.opendaylight.version}</karaf.distro.version>
338               </systemPropertyVariables>
339               <dependenciesToScan>
340                <dependency>org.opendaylight.odlparent:features-test</dependency>
341               </dependenciesToScan>
342             </configuration>
343           </plugin>
344       </plugins>
345    </build>
346    <scm>
347       <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
348       <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
349       <tag>HEAD</tag>
350       <url>https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=summary</url>
351    </scm>
352 </project>