Bug 2515 - Jersey to support JAX-RS 2.0
[odlparent.git] / odlparent / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=2 tabstop=2: -->
3 <!--
4  Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.
5
6  This program and the accompanying materials are made available under the
7  terms of the Eclipse Public License v1.0 which accompanies this distribution,
8  and is available at http://www.eclipse.org/legal/epl-v10.html
9 -->
10 <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">
11
12   <modelVersion>4.0.0</modelVersion>
13   <groupId>org.opendaylight.odlparent</groupId>
14   <artifactId>odlparent</artifactId>
15   <version>1.6.0-SNAPSHOT</version>
16   <packaging>pom</packaging>
17
18   <licenses>
19     <license>
20       <name>Eclipse Public License v1.0</name>
21       <url>http://www.eclipse.org/legal/epl-v10.html</url>
22     </license>
23   </licenses>
24
25   <organization>
26     <name>OpenDaylight</name>
27     <url>http://www.opendaylight.org</url>
28   </organization>
29
30   <scm>
31     <connection>scm:git:ssh://git.opendaylight.org:29418/odlparent.git</connection>
32     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/odlparent.git</developerConnection>
33     <tag>HEAD</tag>
34     <url>https://wiki.opendaylight.org/view/ODL_Root_Parent:Main</url>
35   </scm>
36   <distributionManagement>
37     <!-- OpenDayLight Released artifact -->
38     <repository>
39       <id>opendaylight-release</id>
40       <url>${nexusproxy}/repositories/opendaylight.release/</url>
41     </repository>
42     <!-- OpenDayLight Snapshot artifact -->
43     <snapshotRepository>
44       <id>opendaylight-snapshot</id>
45       <url>${nexusproxy}/repositories/opendaylight.snapshot/</url>
46     </snapshotRepository>
47     <site>
48       <id>${project.artifactId}-site</id>
49       <url>./</url>
50     </site>
51   </distributionManagement>
52   <properties>
53     <nexusproxy>http://nexus.opendaylight.org/content</nexusproxy>
54     <nexus.repository.release>opendaylight.release</nexus.repository.release>
55     <nexus.repository.snapshot>opendaylight.snapshot</nexus.repository.snapshot>
56     <nexus.repository.snapshot>opendaylight.snapshot</nexus.repository.snapshot>
57
58     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
59     <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
60
61     <!-- Java Versions -->
62     <!-- FIXME: confirm these two are picked by maven-compiler-plugin -->
63     <maven.compiler.source>1.7</maven.compiler.source>
64     <maven.compiler.target>1.7</maven.compiler.target>
65     <java.version.source>${maven.compiler.source}</java.version.source>
66     <java.version.target>${maven.compiler.target}</java.version.target>
67
68     <!-- Maven plugin versions, in the 'canonical' format -->
69     <maven.antrun.plugin.version>1.7</maven.antrun.plugin.version>
70     <maven.bundle.version>2.5.3</maven.bundle.version>
71     <maven.clean.plugin.version>2.6.1</maven.clean.plugin.version>
72     <maven.compile.plugin.version>3.2</maven.compile.plugin.version>
73     <maven.install.plugin.version>2.5.2</maven.install.plugin.version>
74     <maven.deploy.plugin.version>2.8.2</maven.deploy.plugin.version>
75     <maven.depends.version>1.2</maven.depends.version>
76     <maven.jar.version>2.5</maven.jar.version>
77     <maven.javadoc.version>2.10.1</maven.javadoc.version>
78     <maven.release.version>2.5.1</maven.release.version>
79     <maven.source.version>2.4</maven.source.version>
80     <maven.surefire.version>2.18</maven.surefire.version>
81
82     <!-- Maven plugin versions, in random formats -->
83     <bundle.plugin.version>${maven.bundle.version}</bundle.plugin.version>
84     <checkstyle.version>2.15</checkstyle.version>
85     <compiler.version>${maven.compile.plugin.version}</compiler.version>
86     <enforcer.version>1.3.1</enforcer.version>
87     <paxexam.plugin.version>1.2.4</paxexam.plugin.version> <!-- FIXME: this is latest version of paxexam plugin -->
88     <enunciate.version>1.28</enunciate.version> <!-- Needs to remain exported, as its used for dependencies, too -->
89     <exam.version>4.4.0</exam.version> <!-- Needs to remain exported, as its used for dependencies, too -->
90     <failsafe.version>2.18</failsafe.version>
91     <gmaven.plugin.version>1.0</gmaven.plugin.version>
92     <jacoco.version>0.7.2.201409121644</jacoco.version>
93     <jar.plugin.version>${maven.jar.version}</jar.plugin.version>
94     <karaf.version>3.0.3</karaf.version> <!-- Needs to remain exported, as its used for dependencies, too -->
95     <projectinfo>2.6</projectinfo>
96     <propertymavenplugin.version>1.0-alpha-2</propertymavenplugin.version>
97     <releaseplugin.version>${maven.release.version}</releaseplugin.version>
98     <siteplugin>3.4</siteplugin>
99     <odl.checkstyle.version>0.1.0-SNAPSHOT</odl.checkstyle.version>
100     <jetty.version>8.1.14.v20131031</jetty.version>
101
102     <!-- Supporting Libraries -->
103     <aopalliance.version>1.0.0</aopalliance.version>
104     <aries.util.version>1.1.0</aries.util.version>
105     <asm.version>4.1</asm.version>
106     <bouncycastle.version>1.52</bouncycastle.version>
107     <commons.codec.version>1.8</commons.codec.version>
108     <commons.fileupload.version>1.3.1</commons.fileupload.version>
109     <commons.io.version>2.4</commons.io.version>
110     <commons.lang3.version>3.1</commons.lang3.version>
111     <commons.lang.version>2.6</commons.lang.version>
112     <commons.net.version>3.0.1</commons.net.version>
113     <corsfilter.version>7.0.42</corsfilter.version>
114     <ctrie.version>0.2.23</ctrie.version>
115     <eclipse.persistence.version>2.5.2</eclipse.persistence.version>
116     <feature.transaction.version>1.0.1</feature.transaction.version>
117     <felix.dependencymanager.shell.version>3.0.1</felix.dependencymanager.shell.version>
118     <felix.dependencymanager.version>3.1.0</felix.dependencymanager.version>
119     <felix.fileinstall.version>3.1.6</felix.fileinstall.version>
120     <felix.webconsole.version>4.2.0</felix.webconsole.version>
121     <geminiweb.version>2.2.0.RELEASE</geminiweb.version>
122     <groovy.version>2.1.6</groovy.version>
123     <gson.version>2.2.4</gson.version>
124     <guava.version>18.0</guava.version>
125     <hamcrest.version>1.3</hamcrest.version>
126     <jackson.version>2.5.4</jackson.version>
127     <javassist.version>3.19.0-GA</javassist.version>
128     <javax.annotation.version>1.2</javax.annotation.version>
129     <jaxrs-api.version>3.0.4.Final</jaxrs-api.version>
130
131     <!-- FIXME remove all dependencies for jersey 1.17 after migration all projects -->
132     <jersey-servlet.version>1.17</jersey-servlet.version>
133     <jersey.version>1.17</jersey.version>
134     <jersey.client.version>1.17</jersey.client.version>
135     <jersey.server.version>1.17</jersey.server.version>
136     <jersey-servlet.version>1.17</jersey-servlet.version>
137
138     <!-- New packages for jersey migration 1.17 to 2.8 -->
139     <javax.annotation.version>1.2</javax.annotation.version>
140     <javax.ws.rs-api.version>2.0.1</javax.ws.rs-api.version>
141     <jersey2.version>2.8</jersey2.version>
142     <javax.servlet.api.version>3.0.1</javax.servlet.api.version>
143     <!-- appache.geronimo.bundle for DocGen -->
144     <org.json.version>20131018</org.json.version>
145     <apache.geronimo.version>20090211_1</apache.geronimo.version>
146
147     <jersey2.publisher.version>4.0</jersey2.publisher.version>
148     <jettison.version>1.3.3</jettison.version>
149     <jolokia.version>1.1.4</jolokia.version>
150     <jsonassert.version>1.2.3</jsonassert.version>
151     <jsr305.api.version>2.0.3</jsr305.api.version>
152     <jsr311.api.version>1.1.1</jsr311.api.version>
153     <jsr311.v2.api.version>2.0</jsr311.v2.api.version>
154     <junit.version>4.11</junit.version>
155     <logback.version>1.0.9</logback.version>
156     <mockito.version>1.9.5</mockito.version>
157     <netty.version>4.0.26.Final</netty.version>
158     <osgi.compendium.version>5.0.0</osgi.compendium.version>
159     <osgi.core.version>5.0.0</osgi.core.version>
160     <slf4j.version>1.7.7</slf4j.version>
161     <spifly.version>1.0.0</spifly.version>
162     <spring-osgi.version>1.2.1</spring-osgi.version>
163     <spring-security-karaf.version>3.1.4.RELEASE</spring-security-karaf.version>
164     <spring-security.version>3.1.3.RELEASE</spring-security.version>
165     <spring.version>3.1.3.RELEASE</spring.version>
166     <txw2.version>20110809</txw2.version>
167     <url.version>1.5.0</url.version>
168     <virgo.version>3.6.0.RELEASE</virgo.version>
169
170     <!-- Default Sonar configuration -->
171     <sonar-jacoco-listeners.version>2.4</sonar-jacoco-listeners.version>
172     <sonar.core.codeCoveragePlugin>jacoco</sonar.core.codeCoveragePlugin>
173     <sonar.jacoco.reportPath>target/code-coverage/jacoco.exec</sonar.jacoco.reportPath>
174     <sonar.jacoco.itReportPath>target/code-coverage/jacoco-it.exec</sonar.jacoco.itReportPath>
175   </properties>
176
177   <dependencyManagement>
178     <dependencies>
179       <!-- Testing Dependencies -->
180       <dependency>
181         <groupId>junit</groupId>
182         <artifactId>junit</artifactId>
183         <version>${junit.version}</version>
184         <scope>test</scope>
185       </dependency>
186       <dependency>
187          <groupId>org.skyscreamer</groupId>
188          <artifactId>jsonassert</artifactId>
189          <version>${jsonassert.version}</version>
190          <scope>test</scope>
191       </dependency>
192       <dependency>
193         <groupId>org.mockito</groupId>
194         <artifactId>mockito-all</artifactId>
195         <version>${mockito.version}</version>
196         <scope>test</scope>
197       </dependency>
198       <dependency>
199         <groupId>org.mockito</groupId>
200         <artifactId>mockito-core</artifactId>
201         <version>${mockito.version}</version>
202         <scope>test</scope>
203       </dependency>
204       <dependency>
205         <groupId>org.hamcrest</groupId>
206         <artifactId>hamcrest-core</artifactId>
207         <version>${hamcrest.version}</version>
208         <scope>test</scope>
209       </dependency>
210       <dependency>
211         <groupId>org.slf4j</groupId>
212         <artifactId>slf4j-simple</artifactId>
213         <version>${slf4j.version}</version>
214         <scope>test</scope>
215       </dependency>
216       <!-- Supporting Libraries -->
217       <dependency>
218         <groupId>org.slf4j</groupId>
219         <artifactId>jcl-over-slf4j</artifactId>
220         <version>${slf4j.version}</version>
221       </dependency>
222       <dependency>
223         <groupId>org.slf4j</groupId>
224         <artifactId>slf4j-api</artifactId>
225         <version>${slf4j.version}</version>
226       </dependency>
227       <dependency>
228         <groupId>org.slf4j</groupId>
229         <artifactId>slf4j-log4j12</artifactId>
230         <version>${slf4j.version}</version>
231       </dependency>
232       <dependency>
233         <groupId>org.slf4j</groupId>
234         <artifactId>log4j-over-slf4j</artifactId>
235         <version>${slf4j.version}</version>
236       </dependency>
237       <dependency>
238         <groupId>xml-apis</groupId>
239         <artifactId>xml-apis</artifactId>
240         <version>2.0.2</version>
241       </dependency>
242       <dependency>
243         <groupId>ch.qos.logback</groupId>
244         <artifactId>logback-core</artifactId>
245         <version>${logback.version}</version>
246       </dependency>
247       <dependency>
248         <groupId>ch.qos.logback</groupId>
249         <artifactId>logback-classic</artifactId>
250         <version>${logback.version}</version>
251       </dependency>
252       <dependency>
253         <groupId>com.google.guava</groupId>
254         <artifactId>guava</artifactId>
255         <version>${guava.version}</version>
256       </dependency>
257       <dependency>
258         <groupId>org.apache.commons</groupId>
259         <artifactId>commons-lang3</artifactId>
260         <version>${commons.lang3.version}</version>
261       </dependency>
262       <dependency>
263         <groupId>commons-lang</groupId>
264         <artifactId>commons-lang</artifactId>
265         <version>${commons.lang.version}</version>
266       </dependency>
267       <dependency>
268         <groupId>commons-codec</groupId>
269         <artifactId>commons-codec</artifactId>
270         <version>${commons.codec.version}</version>
271       </dependency>
272       <!-- Jersey for JAXRS -->
273       <dependency>
274         <groupId>javax.ws.rs</groupId>
275         <artifactId>javax.ws.rs-api</artifactId>
276         <version>${javax.ws.rs-api.version}</version>
277       </dependency>
278       <dependency>
279         <groupId>org.glassfish.jersey.bundles.repackaged</groupId>
280         <artifactId>jersey-guava</artifactId>
281         <version>${jersey2.version}</version>
282       </dependency>
283       <dependency>
284         <groupId>com.eclipsesource.jaxrs</groupId>
285         <artifactId>jersey-all</artifactId>
286         <version>${jersey2.version}</version>
287       </dependency>
288
289       <!-- servlet 3.x support -->
290       <dependency>
291         <groupId>org.glassfish.jersey.containers</groupId>
292         <artifactId>jersey-container-servlet</artifactId>
293         <version>${jersey2.version}</version>
294       </dependency>
295       <dependency>
296         <groupId>org.apache.geronimo.bundles</groupId>
297         <artifactId>json</artifactId>
298         <version>${apache.geronimo.version}</version>
299       </dependency>
300       <!-- FIXME : remove all dependencies for jersey 1.7 -->
301       <dependency>
302         <groupId>com.sun.jersey</groupId>
303         <artifactId>jersey-core</artifactId>
304         <version>${jersey.version}</version>
305       </dependency>
306       <dependency>
307         <groupId>com.sun.jersey</groupId>
308         <artifactId>jersey-server</artifactId>
309         <version>${jersey.version}</version>
310       </dependency>
311       <dependency>
312         <groupId>com.sun.jersey</groupId>
313         <artifactId>jersey-client</artifactId>
314         <version>${jersey.client.version}</version>
315       </dependency>
316       <dependency>
317         <groupId>org.opendaylight.controller.thirdparty</groupId>
318         <artifactId>com.sun.jersey.jersey-servlet</artifactId>
319         <version>${jersey-servlet.version}</version>
320       </dependency>
321
322       <!-- Plugin integration -->
323       <dependency>
324         <groupId>org.sonatype.plexus</groupId>
325         <artifactId>plexus-build-api</artifactId>
326         <version>0.0.7</version>
327       </dependency>
328       <dependency>
329         <groupId>org.codehaus.plexus</groupId>
330         <artifactId>plexus-slf4j-logging</artifactId>
331         <version>1.1</version>
332       </dependency>
333       <dependency>
334         <groupId>com.fasterxml.jackson.core</groupId>
335         <artifactId>jackson-annotations</artifactId>
336         <version>${jackson.version}</version>
337       </dependency>
338       <dependency>
339         <groupId>com.fasterxml.jackson.core</groupId>
340         <artifactId>jackson-core</artifactId>
341         <version>${jackson.version}</version>
342       </dependency>
343       <dependency>
344         <groupId>com.fasterxml.jackson.core</groupId>
345         <artifactId>jackson-databind</artifactId>
346         <version>${jackson.version}</version>
347       </dependency>
348       <dependency>
349         <groupId>com.fasterxml.jackson.datatype</groupId>
350         <artifactId>jackson-datatype-json-org</artifactId>
351         <version>${jackson.version}</version>
352       </dependency>
353       <!-- TODO do we really need resteasy ? -->
354       <dependency>
355           <groupId>org.jboss.resteasy</groupId>
356           <artifactId>jaxrs-api</artifactId>
357           <version>${jaxrs-api.version}</version>
358       </dependency>
359
360       <dependency>
361         <groupId>com.fasterxml.jackson.jaxrs</groupId>
362         <artifactId>jackson-jaxrs-base</artifactId>
363         <version>${jackson.version}</version>
364       </dependency>
365       <dependency>
366         <groupId>com.fasterxml.jackson.jaxrs</groupId>
367         <artifactId>jackson-jaxrs-json-provider</artifactId>
368         <version>${jackson.version}</version>
369       </dependency>
370       <dependency>
371         <groupId>com.fasterxml.jackson.module</groupId>
372         <artifactId>jackson-module-jaxb-annotations</artifactId>
373         <version>${jackson.version}</version>
374       </dependency>
375       <dependency>
376         <groupId>com.sun.xml.txw2</groupId>
377         <artifactId>txw2</artifactId>
378         <version>${txw2.version}</version>
379       </dependency>
380       <dependency>
381         <groupId>com.github.romix</groupId>
382         <artifactId>java-concurrent-hash-trie-map</artifactId>
383         <version>${ctrie.version}</version>
384       </dependency>
385       <dependency>
386         <groupId>com.google.code.findbugs</groupId>
387         <artifactId>jsr305</artifactId>
388         <version>${jsr305.api.version}</version>
389       </dependency>
390       <dependency>
391         <groupId>com.google.code.gson</groupId>
392         <artifactId>gson</artifactId>
393         <version>${gson.version}</version>
394       </dependency>
395       <dependency>
396         <groupId>commons-fileupload</groupId>
397         <artifactId>commons-fileupload</artifactId>
398         <version>${commons.fileupload.version}</version>
399       </dependency>
400       <dependency>
401         <groupId>commons-io</groupId>
402         <artifactId>commons-io</artifactId>
403         <version>${commons.io.version}</version>
404       </dependency>
405       <dependency>
406         <groupId>commons-net</groupId>
407         <artifactId>commons-net</artifactId>
408         <version>${commons.net.version}</version>
409       </dependency>
410       <dependency>
411         <groupId>eclipselink</groupId>
412         <artifactId>javax.persistence</artifactId>
413         <version>2.0.4.v201112161009</version>
414       </dependency>
415       <dependency>
416         <groupId>eclipselink</groupId>
417         <artifactId>javax.resource</artifactId>
418         <version>1.5.0.v200906010428</version>
419       </dependency>
420       <dependency>
421         <groupId>equinoxSDK381</groupId>
422         <artifactId>javax.servlet</artifactId>
423         <version>3.0.0.v201112011016</version>
424       </dependency>
425       <dependency>
426         <groupId>equinoxSDK381</groupId>
427         <artifactId>javax.servlet.jsp</artifactId>
428         <version>2.2.0.v201112011158</version>
429       </dependency>
430       <dependency>
431         <groupId>equinoxSDK381</groupId>
432         <artifactId>org.apache.felix.gogo.command</artifactId>
433         <version>0.8.0.v201108120515</version>
434       </dependency>
435       <dependency>
436         <groupId>equinoxSDK381</groupId>
437         <artifactId>org.apache.felix.gogo.runtime</artifactId>
438         <version>0.8.0.v201108120515</version>
439       </dependency>
440       <dependency>
441         <groupId>equinoxSDK381</groupId>
442         <artifactId>org.apache.felix.gogo.shell</artifactId>
443         <version>0.8.0.v201110170705</version>
444       </dependency>
445       <dependency>
446         <groupId>equinoxSDK381</groupId>
447         <artifactId>org.eclipse.equinox.cm</artifactId>
448         <version>1.0.400.v20120522-1841</version>
449       </dependency>
450       <dependency>
451         <groupId>equinoxSDK381</groupId>
452         <artifactId>org.eclipse.equinox.console</artifactId>
453         <version>1.0.0.v20120522-1841</version>
454       </dependency>
455       <dependency>
456         <groupId>equinoxSDK381</groupId>
457         <artifactId>org.eclipse.equinox.ds</artifactId>
458         <version>1.4.0.v20120522-1841</version>
459       </dependency>
460       <dependency>
461         <groupId>equinoxSDK381</groupId>
462         <artifactId>org.eclipse.equinox.launcher</artifactId>
463         <version>1.3.0.v20120522-1813</version>
464       </dependency>
465       <dependency>
466         <groupId>equinoxSDK381</groupId>
467         <artifactId>org.eclipse.equinox.util</artifactId>
468         <version>1.0.400.v20120522-2049</version>
469       </dependency>
470       <dependency>
471         <groupId>equinoxSDK381</groupId>
472         <artifactId>org.eclipse.osgi</artifactId>
473         <version>3.8.1.v20120830-144521</version>
474       </dependency>
475       <dependency>
476         <groupId>equinoxSDK381</groupId>
477         <artifactId>org.eclipse.osgi.services</artifactId>
478         <version>3.3.100.v20120522-1822</version>
479       </dependency>
480       <!-- Gemini Web -->
481       <dependency>
482         <groupId>geminiweb</groupId>
483         <artifactId>org.eclipse.gemini.web.core</artifactId>
484         <version>${geminiweb.version}</version>
485       </dependency>
486       <dependency>
487         <groupId>geminiweb</groupId>
488         <artifactId>org.eclipse.gemini.web.extender</artifactId>
489         <version>${geminiweb.version}</version>
490       </dependency>
491       <dependency>
492         <groupId>geminiweb</groupId>
493         <artifactId>org.eclipse.gemini.web.tomcat</artifactId>
494         <version>${geminiweb.version}</version>
495       </dependency>
496       <dependency>
497         <groupId>geminiweb</groupId>
498         <artifactId>org.eclipse.virgo.kernel.equinox.extensions</artifactId>
499         <version>${virgo.version}</version>
500       </dependency>
501       <dependency>
502         <groupId>geminiweb</groupId>
503         <artifactId>org.eclipse.virgo.util.common</artifactId>
504         <version>${virgo.version}</version>
505       </dependency>
506       <dependency>
507         <groupId>geminiweb</groupId>
508         <artifactId>org.eclipse.virgo.util.io</artifactId>
509         <version>${virgo.version}</version>
510       </dependency>
511       <dependency>
512         <groupId>geminiweb</groupId>
513         <artifactId>org.eclipse.virgo.util.math</artifactId>
514         <version>${virgo.version}</version>
515       </dependency>
516       <dependency>
517         <groupId>geminiweb</groupId>
518         <artifactId>org.eclipse.virgo.util.osgi</artifactId>
519         <version>${virgo.version}</version>
520       </dependency>
521       <dependency>
522         <groupId>geminiweb</groupId>
523         <artifactId>org.eclipse.virgo.util.osgi.manifest</artifactId>
524         <version>${virgo.version}</version>
525       </dependency>
526       <dependency>
527         <groupId>geminiweb</groupId>
528         <artifactId>org.eclipse.virgo.util.parser.manifest</artifactId>
529         <version>${virgo.version}</version>
530       </dependency>
531       <dependency>
532         <groupId>io.netty</groupId>
533         <artifactId>netty-buffer</artifactId>
534         <version>${netty.version}</version>
535       </dependency>
536       <dependency>
537         <groupId>io.netty</groupId>
538         <artifactId>netty-codec</artifactId>
539         <version>${netty.version}</version>
540       </dependency>
541       <dependency>
542         <groupId>io.netty</groupId>
543         <artifactId>netty-codec-http</artifactId>
544         <version>${netty.version}</version>
545       </dependency>
546       <dependency>
547         <groupId>io.netty</groupId>
548         <artifactId>netty-common</artifactId>
549         <version>${netty.version}</version>
550       </dependency>
551       <!-- Netty -->
552       <dependency>
553         <groupId>io.netty</groupId>
554         <artifactId>netty-handler</artifactId>
555         <version>${netty.version}</version>
556       </dependency>
557       <dependency>
558         <groupId>io.netty</groupId>
559         <artifactId>netty-transport</artifactId>
560         <version>${netty.version}</version>
561       </dependency>
562       <dependency>
563         <groupId>javax.ws.rs</groupId>
564         <artifactId>jsr311-api</artifactId>
565         <version>${jsr311.api.version}</version>
566       </dependency>
567       <dependency>
568         <groupId>orbit</groupId>
569         <artifactId>javax.activation</artifactId>
570         <version>1.1.0.v201211130549</version>
571       </dependency>
572       <dependency>
573         <groupId>orbit</groupId>
574         <artifactId>javax.annotation</artifactId>
575         <version>1.1.0.v201209060031</version>
576       </dependency>
577       <dependency>
578         <groupId>orbit</groupId>
579         <artifactId>javax.ejb</artifactId>
580         <version>3.1.1.v201204261316</version>
581       </dependency>
582       <dependency>
583         <groupId>orbit</groupId>
584         <artifactId>javax.el</artifactId>
585         <version>2.2.0.v201108011116</version>
586       </dependency>
587       <dependency>
588         <groupId>orbit</groupId>
589         <artifactId>javax.mail.glassfish</artifactId>
590         <version>1.4.1.v201108011116</version>
591       </dependency>
592       <dependency>
593         <groupId>javax.servlet</groupId>
594         <artifactId>javax.servlet-api</artifactId>
595         <version>${javax.servlet.api.version}</version>
596       </dependency>
597       <dependency>
598         <groupId>orbit</groupId>
599         <artifactId>javax.servlet.jsp.jstl</artifactId>
600         <version>1.2.0.v201105211821</version>
601       </dependency>
602       <dependency>
603         <groupId>orbit</groupId>
604         <artifactId>javax.servlet.jsp.jstl.impl</artifactId>
605         <version>1.2.0.v201210211230</version>
606       </dependency>
607       <dependency>
608         <groupId>orbit</groupId>
609         <artifactId>javax.xml.rpc</artifactId>
610         <version>1.1.0.v201005080400</version>
611       </dependency>
612       <dependency>
613         <groupId>orbit</groupId>
614         <artifactId>org.apache.catalina</artifactId>
615         <version>7.0.53.v201406061610</version>
616       </dependency>
617       <dependency>
618         <groupId>orbit</groupId>
619         <artifactId>org.apache.catalina.ha</artifactId>
620         <version>7.0.53.v201406070630</version>
621       </dependency>
622       <dependency>
623         <groupId>orbit</groupId>
624         <artifactId>org.apache.catalina.tribes</artifactId>
625         <version>7.0.53.v201406070630</version>
626       </dependency>
627       <dependency>
628         <groupId>orbit</groupId>
629         <artifactId>org.apache.coyote</artifactId>
630         <version>7.0.53.v201406070630</version>
631       </dependency>
632       <dependency>
633         <groupId>orbit</groupId>
634         <artifactId>org.apache.el</artifactId>
635         <version>7.0.53.v201406060720</version>
636       </dependency>
637       <dependency>
638         <groupId>orbit</groupId>
639         <artifactId>org.apache.jasper</artifactId>
640         <version>7.0.53.v201406070630</version>
641       </dependency>
642       <dependency>
643         <groupId>orbit</groupId>
644         <artifactId>org.apache.juli.extras</artifactId>
645         <version>7.0.53.v201406060720</version>
646       </dependency>
647       <dependency>
648         <groupId>orbit</groupId>
649         <artifactId>org.apache.tomcat.api</artifactId>
650         <version>7.0.53.v201406060720</version>
651       </dependency>
652       <dependency>
653         <groupId>orbit</groupId>
654         <artifactId>org.apache.tomcat.util</artifactId>
655         <version>7.0.53.v201406070630</version>
656       </dependency>
657       <dependency>
658         <groupId>org.aopalliance</groupId>
659         <artifactId>com.springsource.org.aopalliance</artifactId>
660         <version>${aopalliance.version}</version>
661       </dependency>
662       <dependency>
663         <groupId>org.apache.felix</groupId>
664         <artifactId>org.apache.felix.dependencymanager</artifactId>
665         <version>${felix.dependencymanager.version}</version>
666       </dependency>
667       <dependency>
668         <groupId>org.apache.felix</groupId>
669         <artifactId>org.apache.felix.dependencymanager.shell</artifactId>
670         <version>${felix.dependencymanager.shell.version}</version>
671       </dependency>
672       <dependency>
673         <groupId>org.apache.felix</groupId>
674         <artifactId>org.apache.felix.fileinstall</artifactId>
675         <version>${felix.fileinstall.version}</version>
676       </dependency>
677       <!-- felix webconsole -->
678       <dependency>
679         <groupId>org.apache.felix</groupId>
680         <artifactId>org.apache.felix.webconsole</artifactId>
681         <version>${felix.webconsole.version}</version>
682         <!-- the all bundle includes all the necessary plugins -->
683         <classifier>all</classifier>
684       </dependency>
685       <dependency>
686         <groupId>org.bouncycastle</groupId>
687         <artifactId>bcpkix-jdk15on</artifactId>
688         <version>${bouncycastle.version}</version>
689       </dependency>
690       <dependency>
691         <groupId>org.bouncycastle</groupId>
692         <artifactId>bcprov-jdk15on</artifactId>
693         <version>${bouncycastle.version}</version>
694       </dependency>
695       <dependency>
696         <groupId>org.codehaus.enunciate</groupId>
697         <artifactId>enunciate-core-annotations</artifactId>
698         <version>${enunciate.version}</version>
699       </dependency>
700       <dependency>
701         <groupId>org.codehaus.jettison</groupId>
702         <artifactId>jettison</artifactId>
703         <version>${jettison.version}</version>
704       </dependency>
705       <!-- equinox http service bridge -->
706       <dependency>
707         <groupId>org.eclipse.equinox.http</groupId>
708         <artifactId>servlet</artifactId>
709         <version>1.0.0-v20070606</version>
710       </dependency>
711       <dependency>
712         <groupId>org.eclipse.persistence</groupId>
713         <artifactId>org.eclipse.persistence.antlr</artifactId>
714         <version>${eclipse.persistence.version}</version>
715       </dependency>
716       <dependency>
717         <groupId>org.eclipse.persistence</groupId>
718         <artifactId>org.eclipse.persistence.core</artifactId>
719         <version>${eclipse.persistence.version}</version>
720       </dependency>
721       <dependency>
722         <groupId>org.eclipse.persistence</groupId>
723         <artifactId>org.eclipse.persistence.moxy</artifactId>
724         <version>${eclipse.persistence.version}</version>
725       </dependency>
726       <dependency>
727         <groupId>org.javassist</groupId>
728         <artifactId>javassist</artifactId>
729         <version>${javassist.version}</version>
730       </dependency>
731       <dependency>
732         <groupId>org.jboss.spec.javax.transaction</groupId>
733         <artifactId>jboss-transaction-api_1.1_spec</artifactId>
734         <version>1.0.1.Final</version>
735       </dependency>
736       <dependency>
737         <groupId>org.jolokia</groupId>
738         <artifactId>jolokia-osgi</artifactId>
739         <version>${jolokia.version}</version>
740       </dependency>
741       <dependency>
742         <groupId>org.json</groupId>
743         <artifactId>json</artifactId>
744         <version>${org.json.version}</version>
745       </dependency>
746       <dependency>
747         <groupId>org.osgi</groupId>
748         <artifactId>org.osgi.compendium</artifactId>
749         <version>${osgi.compendium.version}</version>
750         <scope>provided</scope>
751       </dependency>
752       <dependency>
753         <groupId>org.osgi</groupId>
754         <artifactId>org.osgi.core</artifactId>
755         <version>${osgi.core.version}</version>
756         <scope>provided</scope>
757       </dependency>
758       <dependency>
759         <groupId>org.ow2.asm</groupId>
760         <artifactId>asm-all</artifactId>
761         <version>4.1</version>
762       </dependency>
763       <!-- Visual VM hook -->
764       <dependency>
765         <groupId>org.ow2.chameleon.management</groupId>
766         <artifactId>chameleon-mbeans</artifactId>
767         <version>1.0.0</version>
768       </dependency>
769       <dependency>
770         <groupId>org.springframework</groupId>
771         <artifactId>org.springframework.aop</artifactId>
772         <version>${spring.version}</version>
773       </dependency>
774       <dependency>
775         <groupId>org.springframework</groupId>
776         <artifactId>org.springframework.asm</artifactId>
777         <version>${spring.version}</version>
778       </dependency>
779       <dependency>
780         <groupId>org.springframework</groupId>
781         <artifactId>org.springframework.beans</artifactId>
782         <version>${spring.version}</version>
783       </dependency>
784       <dependency>
785         <groupId>org.springframework</groupId>
786         <artifactId>org.springframework.context</artifactId>
787         <version>${spring.version}</version>
788       </dependency>
789       <dependency>
790         <groupId>org.springframework</groupId>
791         <artifactId>org.springframework.context.support</artifactId>
792         <version>${spring.version}</version>
793       </dependency>
794       <dependency>
795         <groupId>org.springframework</groupId>
796         <artifactId>org.springframework.core</artifactId>
797         <version>${spring.version}</version>
798       </dependency>
799       <dependency>
800         <groupId>org.springframework</groupId>
801         <artifactId>org.springframework.expression</artifactId>
802         <version>${spring.version}</version>
803       </dependency>
804       <dependency>
805         <groupId>org.springframework</groupId>
806         <artifactId>org.springframework.transaction</artifactId>
807         <version>${spring-security.version}</version>
808       </dependency>
809       <dependency>
810         <groupId>org.springframework</groupId>
811         <artifactId>org.springframework.web</artifactId>
812         <version>${spring.version}</version>
813       </dependency>
814       <dependency>
815         <groupId>org.springframework</groupId>
816         <artifactId>org.springframework.web.servlet</artifactId>
817         <version>${spring.version}</version>
818       </dependency>
819       <!-- Spring security -->
820       <dependency>
821         <groupId>org.springframework.security</groupId>
822         <artifactId>spring-security-config</artifactId>
823         <version>${spring-security.version}</version>
824       </dependency>
825       <dependency>
826         <groupId>org.springframework.security</groupId>
827         <artifactId>spring-security-core</artifactId>
828         <version>${spring-security.version}</version>
829       </dependency>
830       <dependency>
831         <groupId>org.springframework.security</groupId>
832         <artifactId>spring-security-taglibs</artifactId>
833         <version>${spring-security.version}</version>
834       </dependency>
835       <dependency>
836         <groupId>org.springframework.security</groupId>
837         <artifactId>spring-security-web</artifactId>
838         <version>${spring-security.version}</version>
839       </dependency>
840       <dependency>
841         <groupId>virgomirror</groupId>
842         <artifactId>org.eclipse.jdt.core.compiler.batch</artifactId>
843         <version>3.8.0.I20120518-2145</version>
844       </dependency>
845
846       <!-- Add Pax Exam -->
847       <dependency>
848         <groupId>org.ops4j.pax.exam</groupId>
849         <artifactId>pax-exam</artifactId>
850         <version>${exam.version}</version>
851         <scope>test</scope>
852       </dependency>
853       <dependency>
854         <groupId>org.ops4j.pax.exam</groupId>
855         <artifactId>pax-exam-container-karaf</artifactId>
856         <version>${exam.version}</version>
857         <scope>test</scope>
858       </dependency>
859       <dependency>
860         <groupId>org.ops4j.pax.exam</groupId>
861         <artifactId>pax-exam-container-native</artifactId>
862         <version>${exam.version}</version>
863         <scope>test</scope>
864       </dependency>
865       <dependency>
866         <groupId>org.ops4j.pax.exam</groupId>
867         <artifactId>pax-exam-junit4</artifactId>
868         <version>${exam.version}</version>
869         <scope>test</scope>
870       </dependency>
871       <dependency>
872         <groupId>org.ops4j.pax.exam</groupId>
873         <artifactId>pax-exam-link-mvn</artifactId>
874         <version>${exam.version}</version>
875         <scope>test</scope>
876       </dependency>
877
878       <dependency>
879         <groupId>org.ops4j.pax.url</groupId>
880         <artifactId>pax-url-aether</artifactId>
881         <version>${url.version}</version>
882         <scope>test</scope>
883       </dependency>
884       <dependency>
885         <groupId>org.springframework.osgi</groupId>
886         <artifactId>spring-osgi-mock</artifactId>
887         <version>${spring-osgi.version}</version>
888         <scope>test</scope>
889       </dependency>
890       <dependency>
891         <groupId>xmlunit</groupId>
892         <artifactId>xmlunit</artifactId>
893         <version>1.5</version>
894         <scope>test</scope>
895       </dependency>
896       <dependency>
897         <groupId>org.eclipse.jetty</groupId>
898         <artifactId>jetty-servlets</artifactId>
899         <version>${jetty.version}</version>
900       </dependency>
901     </dependencies>
902   </dependencyManagement>
903   <repositories>
904     <!-- OpenDayLight Repo Mirror -->
905     <repository>
906       <releases>
907         <enabled>true</enabled>
908         <updatePolicy>never</updatePolicy>
909       </releases>
910       <snapshots>
911         <enabled>false</enabled>
912       </snapshots>
913       <id>opendaylight-mirror</id>
914       <name>opendaylight-mirror</name>
915       <url>${nexusproxy}/groups/public/</url>
916     </repository>
917     <!-- OpenDayLight Snapshot artifact -->
918     <repository>
919       <releases>
920         <enabled>false</enabled>
921       </releases>
922       <snapshots>
923         <enabled>true</enabled>
924       </snapshots>
925       <id>opendaylight-snapshot</id>
926       <name>opendaylight-snapshot</name>
927       <url>${nexusproxy}/repositories/opendaylight.snapshot/</url>
928     </repository>
929   </repositories>
930   <pluginRepositories>
931     <!-- OpenDayLight Repo Mirror -->
932     <pluginRepository>
933       <releases>
934         <enabled>true</enabled>
935         <updatePolicy>never</updatePolicy>
936       </releases>
937       <snapshots>
938         <enabled>false</enabled>
939       </snapshots>
940       <id>opendaylight-mirror</id>
941       <name>opendaylight-mirror</name>
942       <url>${nexusproxy}/groups/public/</url>
943     </pluginRepository>
944     <!-- OpenDayLight Snapshot artifact -->
945     <pluginRepository>
946       <releases>
947         <enabled>false</enabled>
948       </releases>
949       <snapshots>
950         <enabled>true</enabled>
951       </snapshots>
952       <id>opendaylight-snapshot</id>
953       <name>opendaylight-snapshot</name>
954       <url>${nexusproxy}/repositories/opendaylight.snapshot/</url>
955     </pluginRepository>
956   </pluginRepositories>
957
958   <build>
959     <pluginManagement>
960       <plugins>
961         <!-- Official maven plugins, alpha-sorted by artifactId.
962              We do not need to specify the groupId. -->
963         <plugin>
964           <artifactId>maven-antrun-plugin</artifactId>
965           <version>${maven.antrun.plugin.version}</version>
966         </plugin>
967         <plugin>
968           <artifactId>maven-checkstyle-plugin</artifactId>
969           <version>${checkstyle.version}</version>
970           <dependencies>
971             <dependency>
972               <groupId>org.opendaylight.odlparent</groupId>
973               <artifactId>checkstyle</artifactId>
974               <version>${odl.checkstyle.version}</version>
975             </dependency>
976           </dependencies>
977           <configuration>
978             <configLocation>odl_checks.xml</configLocation>
979             <excludes>org/opendaylight/yang/gen/**,**/config/yang/**</excludes>
980             <failsOnError>false</failsOnError>
981             <consoleOutput>true</consoleOutput>
982           </configuration>
983           <executions>
984             <execution>
985               <goals>
986                 <goal>check</goal>
987               </goals>
988               <phase>process-sources</phase>
989             </execution>
990           </executions>
991         </plugin>
992         <plugin>
993           <artifactId>maven-clean-plugin</artifactId>
994           <version>${maven.clean.plugin.version}</version>
995         </plugin>
996         <plugin>
997           <artifactId>maven-install-plugin</artifactId>
998           <version>${maven.install.plugin.version}</version>
999         </plugin>
1000         <plugin>
1001           <artifactId>maven-deploy-plugin</artifactId>
1002           <version>${maven.deploy.plugin.version}</version>
1003         </plugin>
1004         <plugin>
1005           <artifactId>maven-dependency-plugin</artifactId>
1006           <version>2.10</version>
1007         </plugin>
1008         <plugin>
1009           <artifactId>maven-compiler-plugin</artifactId>
1010           <version>${maven.compile.plugin.version}</version>
1011         </plugin>
1012         <plugin>
1013           <artifactId>maven-enforcer-plugin</artifactId>
1014           <version>${enforcer.version}</version>
1015         </plugin>
1016         <plugin>
1017           <artifactId>maven-failsafe-plugin</artifactId>
1018           <version>${failsafe.version}</version>
1019         </plugin>
1020         <plugin>
1021           <artifactId>maven-jar-plugin</artifactId>
1022           <version>${jar.plugin.version}</version>
1023         </plugin>
1024         <plugin>
1025           <artifactId>maven-javadoc-plugin</artifactId>
1026           <version>${maven.javadoc.version}</version>
1027           <configuration>
1028             <tags>
1029               <!-- support for HelpMojo generated by the maven-plugin-plugin -->
1030               <tag>
1031                 <name>goal</name>
1032                 <placement>t</placement>
1033                 <head>Goal:</head>
1034               </tag>
1035               <tag>
1036                 <name>requiresProject</name>
1037                 <placement>t</placement>
1038                 <head>Requires project:</head>
1039               </tag>
1040               <tag>
1041                 <name>threadSafe</name>
1042                 <placement>t</placement>
1043                 <head>Threadsafe</head>
1044               </tag>
1045               <tag>
1046                 <name>phase</name>
1047                 <placement>t</placement>
1048                 <head>Phase:</head>
1049               </tag>
1050               <!-- end HelpMojo support -->
1051             </tags>
1052           </configuration>
1053           <executions>
1054             <execution>
1055               <id>attach-javadocs</id>
1056               <goals>
1057                 <goal>jar</goal>
1058               </goals>
1059             </execution>
1060           </executions>
1061         </plugin>
1062         <plugin>
1063           <artifactId>maven-release-plugin</artifactId>
1064           <version>${maven.release.version}</version>
1065         </plugin>
1066         <plugin>
1067           <artifactId>maven-resources-plugin</artifactId>
1068           <version>2.7</version>
1069         </plugin>
1070         <plugin>
1071           <artifactId>maven-shade-plugin</artifactId>
1072           <version>2.3</version>
1073         </plugin>
1074         <plugin>
1075           <artifactId>maven-site-plugin</artifactId>
1076           <version>${siteplugin}</version>
1077         </plugin>
1078         <plugin>
1079           <artifactId>maven-source-plugin</artifactId>
1080           <version>${maven.source.version}</version>
1081           <executions>
1082             <execution>
1083               <id>attach-sources</id>
1084               <goals>
1085                 <goal>jar</goal>
1086               </goals>
1087             </execution>
1088           </executions>
1089         </plugin>
1090         <plugin>
1091           <artifactId>maven-surefire-plugin</artifactId>
1092           <version>${maven.surefire.version}</version>
1093         </plugin>
1094
1095         <!-- Third-party plugins, grouped by groupId, alpha-sorted by artifactId -->
1096         <plugin>
1097           <groupId>org.apache.felix</groupId>
1098           <artifactId>maven-bundle-plugin</artifactId>
1099           <version>${maven.bundle.version}</version>
1100           <extensions>true</extensions>
1101         </plugin>
1102
1103         <plugin>
1104           <groupId>org.apache.karaf.tooling</groupId>
1105           <artifactId>karaf-maven-plugin</artifactId>
1106           <version>${karaf.version}</version>
1107         </plugin>
1108
1109         <plugin>
1110           <groupId>org.apache.servicemix.tooling</groupId>
1111           <artifactId>depends-maven-plugin</artifactId>
1112           <version>${maven.depends.version}</version>
1113           <executions>
1114             <execution>
1115               <id>generate-depends-file</id>
1116               <goals>
1117                 <goal>generate-depends-file</goal>
1118               </goals>
1119             </execution>
1120           </executions>
1121         </plugin>
1122
1123         <plugin>
1124           <groupId>org.codehaus.enunciate</groupId>
1125           <artifactId>maven-enunciate-plugin</artifactId>
1126           <version>${enunciate.version}</version>
1127         </plugin>
1128         <plugin>
1129           <groupId>org.codehaus.groovy.maven</groupId>
1130           <artifactId>gmaven-plugin</artifactId>
1131           <version>${gmaven.plugin.version}</version>
1132         </plugin>
1133         <plugin>
1134           <groupId>org.codehaus.mojo</groupId>
1135           <artifactId>build-helper-maven-plugin</artifactId>
1136           <version>1.9.1</version>
1137         </plugin>
1138         <plugin>
1139           <groupId>org.codehaus.mojo</groupId>
1140           <artifactId>properties-maven-plugin</artifactId>
1141           <version>${propertymavenplugin.version}</version>
1142         </plugin>
1143
1144         <plugin>
1145           <groupId>org.eclipse.m2e</groupId>
1146           <artifactId>lifecycle-mapping</artifactId>
1147           <version>1.0.0</version>
1148           <configuration>
1149             <lifecycleMappingMetadata>
1150               <pluginExecutions>
1151                 <pluginExecution>
1152                   <pluginExecutionFilter>
1153                     <groupId>org.apache.felix</groupId>
1154                     <artifactId>maven-bundle-plugin</artifactId>
1155                     <versionRange>[1.0,)</versionRange>
1156                     <goals>
1157                       <goal>manifest</goal>
1158                     </goals>
1159                   </pluginExecutionFilter>
1160                   <action>
1161                     <execute></execute>
1162                   </action>
1163                 </pluginExecution>
1164                 <pluginExecution>
1165                   <pluginExecutionFilter>
1166                     <groupId>org.apache.maven.plugins</groupId>
1167                     <artifactId>maven-enforcer-plugin</artifactId>
1168                     <versionRange>[1.0.0,)</versionRange>
1169                     <goals>
1170                       <goal>enforce</goal>
1171                     </goals>
1172                   </pluginExecutionFilter>
1173                   <action>
1174                     <ignore />
1175                   </action>
1176                 </pluginExecution>
1177               </pluginExecutions>
1178             </lifecycleMappingMetadata>
1179           </configuration>
1180         </plugin>
1181
1182         <plugin>
1183           <groupId>org.jacoco</groupId>
1184           <artifactId>jacoco-maven-plugin</artifactId>
1185           <version>${jacoco.version}</version>
1186         </plugin>
1187
1188         <plugin>
1189           <groupId>org.ops4j.pax.exam</groupId>
1190           <artifactId>maven-paxexam-plugin</artifactId>
1191           <version>${paxexam.plugin.version}</version>
1192         </plugin>
1193       </plugins>
1194     </pluginManagement>
1195
1196     <plugins>
1197       <plugin>
1198         <groupId>org.apache.maven.plugins</groupId>
1199         <artifactId>maven-enforcer-plugin</artifactId>
1200         <executions>
1201           <execution>
1202             <id>enforce-maven</id>
1203             <configuration>
1204               <rules>
1205                 <requireMavenVersion>
1206                   <version>3.1.1</version>
1207                 </requireMavenVersion>
1208               </rules>
1209             </configuration>
1210             <goals>
1211               <goal>enforce</goal>
1212             </goals>
1213           </execution>
1214         </executions>
1215       </plugin>
1216       <plugin>
1217         <groupId>org.apache.maven.plugins</groupId>
1218         <artifactId>maven-checkstyle-plugin</artifactId>
1219       </plugin>
1220       <plugin>
1221         <groupId>org.apache.maven.plugins</groupId>
1222         <artifactId>maven-source-plugin</artifactId>
1223       </plugin>
1224       <plugin>
1225         <groupId>org.apache.maven.plugins</groupId>
1226         <artifactId>maven-javadoc-plugin</artifactId>
1227       </plugin>
1228     </plugins>
1229   </build>
1230
1231   <reporting>
1232     <plugins>
1233       <plugin>
1234         <artifactId>maven-checkstyle-plugin</artifactId>
1235         <version>${checkstyle.version}</version>
1236       </plugin>
1237
1238       <!-- FIXME: activate this
1239       <plugin>
1240         <artifactId>maven-project-info-reports-plugin</artifactId>
1241         <version>${projectinfo}</version>
1242       </plugin-->
1243       <plugin>
1244         <groupId>org.codehaus.mojo</groupId>
1245         <artifactId>findbugs-maven-plugin</artifactId>
1246         <version>3.0.0</version>
1247         <configuration>
1248           <effort>Max</effort>
1249           <threshold>Low</threshold>
1250           <goal>site</goal>
1251         </configuration>
1252       </plugin>
1253       <plugin>
1254         <groupId>org.codehaus.mojo</groupId>
1255         <artifactId>jdepend-maven-plugin</artifactId>
1256         <version>2.0</version>
1257       </plugin>
1258     </plugins>
1259   </reporting>
1260 </project>