Add missing copyright text
[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.0-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.0-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.0-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.0-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.0-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
180         <dependency>
181       <groupId>com.fasterxml.jackson.core</groupId>
182       <artifactId>jackson-annotations</artifactId>
183     </dependency>
184     <dependency>
185       <groupId>com.fasterxml.jackson.core</groupId>
186       <artifactId>jackson-core</artifactId>
187     </dependency>
188     <dependency>
189       <groupId>com.fasterxml.jackson.core</groupId>
190       <artifactId>jackson-databind</artifactId>
191     </dependency>
192     <dependency>
193       <groupId>com.fasterxml.jackson.datatype</groupId>
194       <artifactId>jackson-datatype-json-org</artifactId>
195     </dependency>
196     <dependency>
197       <groupId>com.fasterxml.jackson.module</groupId>
198       <artifactId>jackson-module-jaxb-annotations</artifactId>
199     </dependency>
200     <dependency>
201       <groupId>com.fasterxml.jackson.jaxrs</groupId>
202       <artifactId>jackson-jaxrs-base</artifactId>
203     </dependency>
204     <dependency>
205       <groupId>com.fasterxml.jackson.jaxrs</groupId>
206       <artifactId>jackson-jaxrs-json-provider</artifactId>
207     </dependency>
208     <dependency>
209       <groupId>org.json</groupId>
210       <artifactId>json</artifactId>
211     </dependency>
212
213     <dependency>
214         <groupId>org.opendaylight.yangtools</groupId>
215         <artifactId>yang-data-codec-gson</artifactId>
216     </dependency>
217
218     <dependency>
219       <groupId>org.opendaylight.controller.samples</groupId>
220       <artifactId>clustering-it-model</artifactId>
221       <version>${mdsal.version}</version>
222     </dependency>
223     <dependency>
224       <groupId>org.opendaylight.controller.samples</groupId>
225       <artifactId>clustering-it-provider</artifactId>
226       <version>${mdsal.version}</version>
227     </dependency>
228     <dependency>
229       <groupId>org.opendaylight.controller.samples</groupId>
230       <artifactId>clustering-it-config</artifactId>
231       <version>${mdsal.version}</version>
232       <type>xml</type>
233       <classifier>config</classifier>
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>testmoduleshardconf</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>testmoduleconf</classifier>
248     </dependency>
249     <dependency>
250       <groupId>org.opendaylight.controller</groupId>
251       <artifactId>sal-rest-docgen</artifactId>
252     </dependency>
253
254     <!--
255       Optional TODO: Remove TODO comments.
256     -->
257     <!-- test to validate features.xml -->
258     <dependency>
259       <groupId>org.opendaylight.odlparent</groupId>
260       <artifactId>features-test</artifactId>
261       <scope>test</scope>
262     </dependency>
263     <!-- dependency for opendaylight-karaf-empty for use by testing -->
264     <dependency>
265       <groupId>org.opendaylight.controller</groupId>
266       <artifactId>opendaylight-karaf-empty</artifactId>
267       <version>${commons.opendaylight.version}</version>
268       <type>zip</type>
269     </dependency>
270     <!-- 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;
271     <dependency>
272       <groupId>org.slf4j</groupId>
273       <artifactId>slf4j-simple</artifactId>
274       <version>1.7.2</version>
275     </dependency>
276     -->
277
278    </dependencies>
279    <build>
280       <resources>
281          <resource>
282             <directory>src/main/resources</directory>
283             <filtering>true</filtering>
284          </resource>
285       </resources>
286       <plugins>
287          <plugin>
288             <groupId>org.apache.maven.plugins</groupId>
289             <artifactId>maven-resources-plugin</artifactId>
290             <executions>
291                <execution>
292                   <id>filter</id>
293                   <phase>generate-resources</phase>
294                   <goals>
295                      <goal>resources</goal>
296                   </goals>
297                </execution>
298             </executions>
299          </plugin>
300          <plugin>
301             <groupId>org.codehaus.mojo</groupId>
302             <artifactId>build-helper-maven-plugin</artifactId>
303             <executions>
304                <execution>
305                   <id>attach-artifacts</id>
306                   <phase>package</phase>
307                   <goals>
308                      <goal>attach-artifact</goal>
309                   </goals>
310                   <configuration>
311                      <artifacts>
312                         <artifact>
313                            <file>${project.build.directory}/classes/${features.file}</file>
314                            <type>xml</type>
315                            <classifier>features</classifier>
316                         </artifact>
317                      </artifacts>
318                   </configuration>
319                </execution>
320             </executions>
321          </plugin>
322          <plugin>
323             <groupId>org.apache.maven.plugins</groupId>
324             <artifactId>maven-surefire-plugin</artifactId>
325             <version>${surefire.version}</version>
326             <configuration>
327               <systemPropertyVariables>
328                 <karaf.distro.groupId>org.opendaylight.controller</karaf.distro.groupId>
329                 <karaf.distro.artifactId>opendaylight-karaf-empty</karaf.distro.artifactId>
330                 <karaf.distro.version>${commons.opendaylight.version}</karaf.distro.version>
331               </systemPropertyVariables>
332               <dependenciesToScan>
333                <dependency>org.opendaylight.odlparent:features-test</dependency>
334               </dependenciesToScan>
335             </configuration>
336           </plugin>
337       </plugins>
338    </build>
339    <scm>
340       <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
341       <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
342       <tag>HEAD</tag>
343       <url>https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=summary</url>
344    </scm>
345 </project>