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