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