Merge "Upgrade jolokia-osgi 1.3.2 -> 1.3.3"
[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   <modelVersion>4.0.0</modelVersion>
12
13   <parent>
14     <groupId>org.opendaylight.odlparent</groupId>
15     <artifactId>odlparent-lite</artifactId>
16     <version>1.7.0-SNAPSHOT</version>
17     <relativePath>../odlparent-lite</relativePath>
18   </parent>
19
20   <groupId>org.opendaylight.odlparent</groupId>
21   <artifactId>odlparent</artifactId>
22   <packaging>pom</packaging>
23   <name>ODL :: odlparent :: ${project.artifactId}</name>
24
25   <scm>
26     <connection>scm:git:ssh://git.opendaylight.org:29418/odlparent.git</connection>
27     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/odlparent.git</developerConnection>
28     <tag>HEAD</tag>
29     <url>https://wiki.opendaylight.org/view/ODL_Root_Parent:Main</url>
30   </scm>
31
32   <!-- Variables should only be used where genuinely useful (to avoid
33        repetition); in general versions should be specified in the
34        corresponding dependencyManagement or pluginManagement element, not as
35        a variable. Duplication within odlparent doesn't count if it can be
36        managed using maven-versions-plugin. -->
37   <properties>
38     <nexus.repository.release>opendaylight.release</nexus.repository.release>
39     <nexus.repository.snapshot>opendaylight.snapshot</nexus.repository.snapshot>
40
41     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
42     <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
43
44     <!-- Java Versions -->
45     <!-- FIXME: confirm these two are picked by maven-compiler-plugin -->
46     <maven.compiler.source>1.8</maven.compiler.source>
47     <maven.compiler.target>1.8</maven.compiler.target>
48     <java.version.source>${maven.compiler.source}</java.version.source>
49     <java.version.target>${maven.compiler.target}</java.version.target>
50
51     <!-- Maven plugin versions, in the 'canonical' format -->
52     <maven.antrun.plugin.version>1.8</maven.antrun.plugin.version>
53     <maven.bundle.version>3.0.0</maven.bundle.version>
54     <maven.clean.plugin.version>2.6.1</maven.clean.plugin.version>
55     <maven.compile.plugin.version>3.3</maven.compile.plugin.version>
56     <maven.jar.version>2.6</maven.jar.version>
57     <maven.javadoc.version>2.10.3</maven.javadoc.version>
58     <maven.plugin.version>3.4</maven.plugin.version>
59     <maven.release.version>2.5.2</maven.release.version>
60     <maven.surefire.version>2.18.1</maven.surefire.version>
61
62     <!-- Maven plugin versions, in random formats -->
63     <bundle.plugin.version>${maven.bundle.version}</bundle.plugin.version>
64     <checkstyle.version>2.16</checkstyle.version>
65     <compiler.version>${maven.compile.plugin.version}</compiler.version>
66     <enforcer.version>1.4.1</enforcer.version>
67     <enunciate.version>1.31</enunciate.version> <!-- Needs to remain exported, as its used for dependencies, too -->
68     <exam.version>4.4.0</exam.version> <!-- Needs to remain exported, as its used for dependencies, too -->
69     <failsafe.version>2.18.1</failsafe.version>
70     <gmaven.plugin.version>1.0</gmaven.plugin.version>
71     <!--
72         Regression in jacoco-plugin 0.7.5 prevents us from upgrading to it
73         http://jira.xwiki.org/browse/XCOMMONS-821
74
75         Additionally we need to stay on jacoco 0.7.2.201409121644. Future
76         versions appear to have issues picking up code coverage for projects
77         that use PowerMock.
78         https://github.com/jayway/powermock/issues/564
79     -->
80     <jacoco.version>0.7.2.201409121644</jacoco.version>
81     <jar.plugin.version>${maven.jar.version}</jar.plugin.version>
82     <karaf.version>3.0.3</karaf.version> <!-- Needs to remain exported, as its used for dependencies, too -->
83     <projectinfo>2.8.1</projectinfo>
84     <propertymavenplugin.version>1.0-alpha-2</propertymavenplugin.version>
85     <releaseplugin.version>${maven.release.version}</releaseplugin.version>
86     <odl.checkstyle.version>0.2.0-SNAPSHOT</odl.checkstyle.version>
87
88     <!-- Supporting Libraries -->
89     <!-- Used by controller -->
90     <bouncycastle.version>1.54</bouncycastle.version>
91     <!-- Used by aaa, vtn -->
92     <commons.codec.version>1.10</commons.codec.version>
93     <!-- Used by netconf, ovsdb -->
94     <commons.lang3.version>3.4</commons.lang3.version>
95     <!-- Used by sfc, snmp4sdn; see also affinity, toolkit -->
96     <commons.lang.version>2.6</commons.lang.version>
97     <!-- To upgrade to 2.6.0, we need to ensure all downstreams pull in javax.validation first
98          http://stackoverflow.com/questions/28568154/how-to-get-eclipselink-2-6-0-m3-working-with-jersey-1-18-3 -->
99     <!-- Used by neutron -->
100     <eclipse.persistence.version>2.5.2</eclipse.persistence.version>
101     <!-- Used by aaa -->
102     <felix.dependencymanager.version>3.1.0</felix.dependencymanager.version>
103     <!-- Used by lacp, netconf, ovsdb, sfc, toolkit; see also vtn -->
104     <gson.version>2.3.1</gson.version>
105     <!-- Used by aaa, dlux, persistence, snmp4sdn, sxp -->
106     <guava.version>18.0</guava.version>
107     <!-- Used by lispflowmapping, sxp, vtn/manager -->
108     <hamcrest.version>1.3</hamcrest.version>
109     <!-- Used by aaa, alto, netconf, ovsdb, sfc; see also affinity, defense4all, integration/distribution, snmp4sdn, toolkit, ttp -->
110     <jackson.version>2.3.2</jackson.version>
111     <!-- Used by snmp4sdn, yangtools -->
112     <javassist.version>3.20.0-GA</javassist.version>
113
114     <!-- FIXME remove all dependencies for jersey 1.17 after migration all projects -->
115     <!-- Used by aaa, alto, netconf, neutron, sfc; see also affinity, defense4all, snmp4sdn, toolkit -->
116     <jersey.version>1.17</jersey.version>
117     <!-- Used by sfc -->
118     <jersey.client.version>1.17</jersey.client.version>
119
120     <!-- New packages for jersey migration 1.17 to 2.8 -->
121     <!-- appache.geronimo.bundle for DocGen -->
122     <!-- Used by aaa, iotdm, netconf, ovsdb, sfc -->
123     <org.json.version>20131018</org.json.version>
124
125     <!-- Used by sfc -->
126     <jettison.version>1.3.7</jettison.version>
127     <!-- Used by persistence -->
128     <jsr305.api.version>3.0.0</jsr305.api.version>
129     <!-- Need to stick to JUnit 4.11 until
130          https://github.com/jayway/powermock/issues/560 is fixed (either in
131          PowerMock or with a new JUnit release) -->
132     <!-- Used everywhere -->
133     <junit.version>4.11</junit.version>
134     <!-- Used by sfc, snmp4sdn; see also affinity, toolkit -->
135     <logback.version>1.1.5</logback.version>
136     <!-- Used by nic, sfc, sxp, tsdr -->
137     <mockito.version>1.10.19</mockito.version>
138     <!-- Used by bgpcep, netconf, ovsdb, sxp; see also opendove, toolkit -->
139     <netty.version>4.0.33.Final</netty.version>
140     <!-- Used by alto, controller, neutron, sfc, snbi; see also dlux, toolkit, tsdr -->
141     <osgi.core.version>5.0.0</osgi.core.version>
142     <!-- Used by openflowjava, persistence, sfc, snmp4sdn, sxp; see also affinity, toolkit -->
143     <slf4j.version>1.7.12</slf4j.version>
144     <!-- Used in integration/distribution; see also affinity, snmp4sdn, toolkit, tsdr, ttp -->
145     <spring.version>3.2.14.RELEASE</spring.version>
146     <!-- Used in odlparent only; see also affinity, snmp4sdn -->
147     <url.version>1.5.0</url.version>
148
149     <akka.version>2.4.1</akka.version>
150     <scala.version>2.11</scala.version>
151     <scala.micro.version>7</scala.micro.version>
152     <leveldb.version>0.7</leveldb.version>
153
154     <!-- Default Sonar configuration -->
155     <sonar-jacoco-listeners.version>2.4</sonar-jacoco-listeners.version>
156     <sonar.core.codeCoveragePlugin>jacoco</sonar.core.codeCoveragePlugin>
157     <sonar.jacoco.reportPath>target/code-coverage/jacoco.exec</sonar.jacoco.reportPath>
158     <sonar.jacoco.itReportPath>target/code-coverage/jacoco-it.exec</sonar.jacoco.itReportPath>
159     <!-- Note: This list should match jacoco-maven-plugin's exclusion list below -->
160     <sonar.exclusions>**/gen/**,**/generated-sources/**,**/yang-gen**,**/pax/**</sonar.exclusions>
161   </properties>
162
163   <dependencyManagement>
164     <dependencies>
165
166       <dependency>
167         <groupId>org.opendaylight.odlparent</groupId>
168         <artifactId>odlparent-artifacts</artifactId>
169         <version>1.7.0-SNAPSHOT</version>
170         <scope>import</scope>
171         <type>pom</type>
172       </dependency>
173
174       <!-- Testing Dependencies -->
175       <dependency>
176         <groupId>junit</groupId>
177         <artifactId>junit</artifactId>
178         <version>${junit.version}</version>
179         <scope>test</scope>
180       </dependency>
181       <dependency>
182         <groupId>junit</groupId>
183         <artifactId>junit-dep</artifactId>
184         <version>${junit.version}</version>
185         <scope>test</scope>
186       </dependency>
187       <dependency>
188          <groupId>org.skyscreamer</groupId>
189          <artifactId>jsonassert</artifactId>
190          <version>1.2.3</version>
191          <scope>test</scope>
192       </dependency>
193       <dependency>
194         <groupId>org.mockito</groupId>
195         <artifactId>mockito-all</artifactId>
196         <version>${mockito.version}</version>
197         <scope>test</scope>
198       </dependency>
199       <dependency>
200         <groupId>org.mockito</groupId>
201         <artifactId>mockito-core</artifactId>
202         <version>${mockito.version}</version>
203         <scope>test</scope>
204       </dependency>
205       <dependency>
206         <groupId>org.hamcrest</groupId>
207         <artifactId>hamcrest-core</artifactId>
208         <version>${hamcrest.version}</version>
209         <scope>test</scope>
210       </dependency>
211       <dependency>
212         <groupId>org.slf4j</groupId>
213         <artifactId>slf4j-simple</artifactId>
214         <version>${slf4j.version}</version>
215         <scope>test</scope>
216       </dependency>
217       <dependency>
218         <groupId>org.powermock</groupId>
219         <artifactId>powermock-api-mockito</artifactId>
220         <version>1.6.4</version>
221         <scope>test</scope>
222       </dependency>
223       <dependency>
224         <groupId>org.powermock</groupId>
225         <artifactId>powermock-api-support</artifactId>
226         <version>1.6.4</version>
227         <scope>test</scope>
228       </dependency>
229       <dependency>
230         <groupId>org.powermock</groupId>
231         <artifactId>powermock-core</artifactId>
232         <version>1.6.4</version>
233         <scope>test</scope>
234       </dependency>
235       <dependency>
236         <groupId>org.powermock</groupId>
237         <artifactId>powermock-module-junit4</artifactId>
238         <version>1.6.4</version>
239         <scope>test</scope>
240       </dependency>
241       <dependency>
242         <groupId>org.powermock</groupId>
243         <artifactId>powermock-reflect</artifactId>
244         <version>1.6.4</version>
245         <scope>test</scope>
246       </dependency>
247       <!-- Supporting Libraries -->
248       <dependency>
249         <groupId>org.slf4j</groupId>
250         <artifactId>jcl-over-slf4j</artifactId>
251         <version>${slf4j.version}</version>
252       </dependency>
253       <dependency>
254         <groupId>org.slf4j</groupId>
255         <artifactId>slf4j-api</artifactId>
256         <version>${slf4j.version}</version>
257       </dependency>
258       <dependency>
259         <groupId>org.slf4j</groupId>
260         <artifactId>slf4j-log4j12</artifactId>
261         <version>${slf4j.version}</version>
262       </dependency>
263       <dependency>
264         <groupId>org.slf4j</groupId>
265         <artifactId>log4j-over-slf4j</artifactId>
266         <version>${slf4j.version}</version>
267       </dependency>
268       <dependency>
269         <groupId>xml-apis</groupId>
270         <artifactId>xml-apis</artifactId>
271         <version>2.0.2</version>
272       </dependency>
273       <dependency>
274         <groupId>ch.qos.logback</groupId>
275         <artifactId>logback-core</artifactId>
276         <version>${logback.version}</version>
277       </dependency>
278       <dependency>
279         <groupId>ch.qos.logback</groupId>
280         <artifactId>logback-classic</artifactId>
281         <version>${logback.version}</version>
282       </dependency>
283       <dependency>
284         <groupId>com.google.guava</groupId>
285         <artifactId>guava</artifactId>
286         <version>${guava.version}</version>
287       </dependency>
288       <dependency>
289         <groupId>org.apache.commons</groupId>
290         <artifactId>commons-lang3</artifactId>
291         <version>${commons.lang3.version}</version>
292       </dependency>
293       <dependency>
294         <groupId>commons-lang</groupId>
295         <artifactId>commons-lang</artifactId>
296         <version>${commons.lang.version}</version>
297       </dependency>
298       <dependency>
299         <groupId>commons-codec</groupId>
300         <artifactId>commons-codec</artifactId>
301         <version>${commons.codec.version}</version>
302       </dependency>
303       <!-- Jersey for JAXRS -->
304       <dependency>
305         <groupId>javax.ws.rs</groupId>
306         <artifactId>javax.ws.rs-api</artifactId>
307         <version>2.0.1</version>
308       </dependency>
309       <dependency>
310         <groupId>org.glassfish.jersey.bundles.repackaged</groupId>
311         <artifactId>jersey-guava</artifactId>
312         <version>2.8</version>
313       </dependency>
314       <dependency>
315         <groupId>com.eclipsesource.jaxrs</groupId>
316         <artifactId>jersey-all</artifactId>
317         <version>2.8</version>
318       </dependency>
319
320       <!-- servlet 3.x support -->
321       <dependency>
322         <groupId>org.glassfish.jersey.containers</groupId>
323         <artifactId>jersey-container-servlet</artifactId>
324         <version>2.8</version>
325       </dependency>
326       <dependency>
327         <groupId>org.apache.geronimo.bundles</groupId>
328         <artifactId>json</artifactId>
329         <version>20090211_1</version>
330       </dependency>
331       <!-- FIXME : remove all dependencies for jersey 1.7 -->
332       <dependency>
333         <groupId>com.sun.jersey</groupId>
334         <artifactId>jersey-core</artifactId>
335         <version>${jersey.version}</version>
336       </dependency>
337       <dependency>
338         <groupId>com.sun.jersey</groupId>
339         <artifactId>jersey-json</artifactId>
340         <version>${jersey.version}</version>
341       </dependency>
342       <dependency>
343         <groupId>com.sun.jersey</groupId>
344         <artifactId>jersey-server</artifactId>
345         <version>${jersey.version}</version>
346       </dependency>
347       <dependency>
348         <groupId>com.sun.jersey</groupId>
349         <artifactId>jersey-servlet</artifactId>
350         <version>${jersey.version}</version>
351       </dependency>
352       <dependency>
353         <groupId>com.sun.jersey.jersey-test-framework</groupId>
354         <artifactId>jersey-test-framework-grizzly2</artifactId>
355         <version>${jersey.version}</version>
356         <scope>test</scope>
357       </dependency>
358       <dependency>
359         <groupId>com.sun.jersey</groupId>
360         <artifactId>jersey-client</artifactId>
361         <version>${jersey.client.version}</version>
362       </dependency>
363       <dependency>
364         <groupId>org.opendaylight.controller.thirdparty</groupId>
365         <artifactId>com.sun.jersey.jersey-servlet</artifactId>
366         <version>1.17</version>
367       </dependency>
368       <dependency>
369         <groupId>org.apache.shiro</groupId>
370         <artifactId>shiro-core</artifactId>
371         <version>1.2.4</version>
372       </dependency>
373       <dependency>
374         <groupId>org.apache.shiro</groupId>
375         <artifactId>shiro-web</artifactId>
376         <version>1.2.4</version>
377       </dependency>
378
379       <!-- Plugin integration -->
380       <dependency>
381         <groupId>org.sonatype.plexus</groupId>
382         <artifactId>plexus-build-api</artifactId>
383         <version>0.0.7</version>
384       </dependency>
385       <dependency>
386         <groupId>org.codehaus.plexus</groupId>
387         <artifactId>plexus-slf4j-logging</artifactId>
388         <version>1.1</version>
389       </dependency>
390       <dependency>
391         <groupId>com.fasterxml.jackson.core</groupId>
392         <artifactId>jackson-annotations</artifactId>
393         <version>${jackson.version}</version>
394       </dependency>
395       <dependency>
396         <groupId>com.fasterxml.jackson.core</groupId>
397         <artifactId>jackson-core</artifactId>
398         <version>${jackson.version}</version>
399       </dependency>
400       <dependency>
401         <groupId>com.fasterxml.jackson.core</groupId>
402         <artifactId>jackson-databind</artifactId>
403         <version>${jackson.version}</version>
404       </dependency>
405       <dependency>
406         <groupId>com.fasterxml.jackson.datatype</groupId>
407         <artifactId>jackson-datatype-json-org</artifactId>
408         <version>${jackson.version}</version>
409       </dependency>
410       <!-- TODO do we really need resteasy ? -->
411       <dependency>
412           <groupId>org.jboss.resteasy</groupId>
413           <artifactId>jaxrs-api</artifactId>
414           <version>3.0.4.Final</version>
415       </dependency>
416
417       <dependency>
418         <groupId>com.fasterxml.jackson.jaxrs</groupId>
419         <artifactId>jackson-jaxrs-base</artifactId>
420         <version>${jackson.version}</version>
421       </dependency>
422       <dependency>
423         <groupId>com.fasterxml.jackson.jaxrs</groupId>
424         <artifactId>jackson-jaxrs-json-provider</artifactId>
425         <version>${jackson.version}</version>
426       </dependency>
427       <dependency>
428         <groupId>com.fasterxml.jackson.module</groupId>
429         <artifactId>jackson-module-jaxb-annotations</artifactId>
430         <version>${jackson.version}</version>
431       </dependency>
432       <dependency>
433         <groupId>com.sun.xml.txw2</groupId>
434         <artifactId>txw2</artifactId>
435         <version>20110809</version>
436       </dependency>
437       <dependency>
438         <groupId>com.github.romix</groupId>
439         <artifactId>java-concurrent-hash-trie-map</artifactId>
440         <version>0.2.23</version>
441       </dependency>
442       <dependency>
443         <groupId>com.google.code.findbugs</groupId>
444         <artifactId>jsr305</artifactId>
445         <version>${jsr305.api.version}</version>
446       </dependency>
447       <dependency>
448         <groupId>com.google.code.gson</groupId>
449         <artifactId>gson</artifactId>
450         <version>${gson.version}</version>
451       </dependency>
452       <dependency>
453         <groupId>commons-fileupload</groupId>
454         <artifactId>commons-fileupload</artifactId>
455         <version>1.3.1</version>
456       </dependency>
457       <dependency>
458         <groupId>commons-io</groupId>
459         <artifactId>commons-io</artifactId>
460         <version>2.4</version>
461       </dependency>
462       <dependency>
463         <groupId>commons-net</groupId>
464         <artifactId>commons-net</artifactId>
465         <version>3.4</version>
466       </dependency>
467       <dependency>
468         <groupId>eclipselink</groupId>
469         <artifactId>javax.persistence</artifactId>
470         <version>2.0.4.v201112161009</version>
471       </dependency>
472       <dependency>
473         <groupId>eclipselink</groupId>
474         <artifactId>javax.resource</artifactId>
475         <version>1.5.0.v200906010428</version>
476       </dependency>
477       <dependency>
478         <groupId>equinoxSDK381</groupId>
479         <artifactId>javax.servlet</artifactId>
480         <version>3.0.0.v201112011016</version>
481       </dependency>
482       <dependency>
483         <groupId>equinoxSDK381</groupId>
484         <artifactId>javax.servlet.jsp</artifactId>
485         <version>2.2.0.v201112011158</version>
486       </dependency>
487       <dependency>
488         <groupId>equinoxSDK381</groupId>
489         <artifactId>org.apache.felix.gogo.command</artifactId>
490         <version>0.8.0.v201108120515</version>
491       </dependency>
492       <dependency>
493         <groupId>equinoxSDK381</groupId>
494         <artifactId>org.apache.felix.gogo.runtime</artifactId>
495         <version>0.8.0.v201108120515</version>
496       </dependency>
497       <dependency>
498         <groupId>equinoxSDK381</groupId>
499         <artifactId>org.apache.felix.gogo.shell</artifactId>
500         <version>0.8.0.v201110170705</version>
501       </dependency>
502       <dependency>
503         <groupId>equinoxSDK381</groupId>
504         <artifactId>org.eclipse.equinox.cm</artifactId>
505         <version>1.0.400.v20120522-1841</version>
506       </dependency>
507       <dependency>
508         <groupId>equinoxSDK381</groupId>
509         <artifactId>org.eclipse.equinox.console</artifactId>
510         <version>1.0.0.v20120522-1841</version>
511       </dependency>
512       <dependency>
513         <groupId>equinoxSDK381</groupId>
514         <artifactId>org.eclipse.equinox.ds</artifactId>
515         <version>1.4.0.v20120522-1841</version>
516       </dependency>
517       <dependency>
518         <groupId>equinoxSDK381</groupId>
519         <artifactId>org.eclipse.equinox.launcher</artifactId>
520         <version>1.3.0.v20120522-1813</version>
521       </dependency>
522       <dependency>
523         <groupId>equinoxSDK381</groupId>
524         <artifactId>org.eclipse.equinox.util</artifactId>
525         <version>1.0.400.v20120522-2049</version>
526       </dependency>
527       <dependency>
528         <groupId>equinoxSDK381</groupId>
529         <artifactId>org.eclipse.osgi.services</artifactId>
530         <version>3.3.100.v20120522-1822</version>
531       </dependency>
532
533       <dependency>
534         <groupId>org.eclipse.tycho</groupId>
535         <artifactId>org.eclipse.osgi</artifactId>
536         <version>3.9.1.v20130814-1242</version>
537       </dependency>
538       <!-- FIXME: remove once all users migrate to org.eclipse.tycho -->
539       <dependency>
540         <groupId>equinoxSDK381</groupId>
541         <artifactId>org.eclipse.osgi</artifactId>
542         <version>3.8.1.v20120830-144521</version>
543       </dependency>
544
545       <!-- Gemini Web -->
546       <dependency>
547         <groupId>geminiweb</groupId>
548         <artifactId>org.eclipse.gemini.web.core</artifactId>
549         <version>2.2.0.RELEASE</version>
550       </dependency>
551       <dependency>
552         <groupId>geminiweb</groupId>
553         <artifactId>org.eclipse.gemini.web.extender</artifactId>
554         <version>2.2.0.RELEASE</version>
555       </dependency>
556       <dependency>
557         <groupId>geminiweb</groupId>
558         <artifactId>org.eclipse.gemini.web.tomcat</artifactId>
559         <version>2.2.0.RELEASE</version>
560       </dependency>
561       <dependency>
562         <groupId>geminiweb</groupId>
563         <artifactId>org.eclipse.virgo.kernel.equinox.extensions</artifactId>
564         <version>3.6.0.RELEASE</version>
565       </dependency>
566       <dependency>
567         <groupId>geminiweb</groupId>
568         <artifactId>org.eclipse.virgo.util.common</artifactId>
569         <version>3.6.0.RELEASE</version>
570       </dependency>
571       <dependency>
572         <groupId>geminiweb</groupId>
573         <artifactId>org.eclipse.virgo.util.io</artifactId>
574         <version>3.6.0.RELEASE</version>
575       </dependency>
576       <dependency>
577         <groupId>geminiweb</groupId>
578         <artifactId>org.eclipse.virgo.util.math</artifactId>
579         <version>3.6.0.RELEASE</version>
580       </dependency>
581       <dependency>
582         <groupId>geminiweb</groupId>
583         <artifactId>org.eclipse.virgo.util.osgi</artifactId>
584         <version>3.6.0.RELEASE</version>
585       </dependency>
586       <dependency>
587         <groupId>geminiweb</groupId>
588         <artifactId>org.eclipse.virgo.util.osgi.manifest</artifactId>
589         <version>3.6.0.RELEASE</version>
590       </dependency>
591       <dependency>
592         <groupId>geminiweb</groupId>
593         <artifactId>org.eclipse.virgo.util.parser.manifest</artifactId>
594         <version>3.6.0.RELEASE</version>
595       </dependency>
596       <dependency>
597         <groupId>io.netty</groupId>
598         <artifactId>netty-all</artifactId>
599         <version>${netty.version}</version>
600       </dependency>
601       <dependency>
602         <groupId>io.netty</groupId>
603         <artifactId>netty-buffer</artifactId>
604         <version>${netty.version}</version>
605       </dependency>
606       <dependency>
607         <groupId>io.netty</groupId>
608         <artifactId>netty-codec</artifactId>
609         <version>${netty.version}</version>
610       </dependency>
611       <dependency>
612         <groupId>io.netty</groupId>
613         <artifactId>netty-codec-http</artifactId>
614         <version>${netty.version}</version>
615       </dependency>
616       <dependency>
617         <groupId>io.netty</groupId>
618         <artifactId>netty-common</artifactId>
619         <version>${netty.version}</version>
620       </dependency>
621       <!-- Netty -->
622       <dependency>
623         <groupId>io.netty</groupId>
624         <artifactId>netty-handler</artifactId>
625         <version>${netty.version}</version>
626       </dependency>
627       <dependency>
628         <groupId>io.netty</groupId>
629         <artifactId>netty-transport</artifactId>
630         <version>${netty.version}</version>
631       </dependency>
632       <dependency>
633         <groupId>javax.ws.rs</groupId>
634         <artifactId>jsr311-api</artifactId>
635         <version>1.1.1</version>
636       </dependency>
637       <dependency>
638         <groupId>orbit</groupId>
639         <artifactId>javax.activation</artifactId>
640         <version>1.1.0.v201211130549</version>
641       </dependency>
642       <dependency>
643         <groupId>orbit</groupId>
644         <artifactId>javax.annotation</artifactId>
645         <version>1.1.0.v201209060031</version>
646       </dependency>
647       <dependency>
648         <groupId>orbit</groupId>
649         <artifactId>javax.ejb</artifactId>
650         <version>3.1.1.v201204261316</version>
651       </dependency>
652       <dependency>
653         <groupId>orbit</groupId>
654         <artifactId>javax.el</artifactId>
655         <version>2.2.0.v201108011116</version>
656       </dependency>
657       <dependency>
658         <groupId>orbit</groupId>
659         <artifactId>javax.mail.glassfish</artifactId>
660         <version>1.4.1.v201108011116</version>
661       </dependency>
662       <dependency>
663         <groupId>javax.servlet</groupId>
664         <artifactId>javax.servlet-api</artifactId>
665         <version>3.0.1</version>
666       </dependency>
667       <dependency>
668         <groupId>orbit</groupId>
669         <artifactId>javax.servlet.jsp.jstl</artifactId>
670         <version>1.2.0.v201105211821</version>
671       </dependency>
672       <dependency>
673         <groupId>orbit</groupId>
674         <artifactId>javax.servlet.jsp.jstl.impl</artifactId>
675         <version>1.2.0.v201210211230</version>
676       </dependency>
677       <dependency>
678         <groupId>orbit</groupId>
679         <artifactId>javax.xml.rpc</artifactId>
680         <version>1.1.0.v201005080400</version>
681       </dependency>
682       <dependency>
683         <groupId>orbit</groupId>
684         <artifactId>org.apache.catalina</artifactId>
685         <version>7.0.53.v201406061610</version>
686       </dependency>
687       <dependency>
688         <groupId>orbit</groupId>
689         <artifactId>org.apache.catalina.ha</artifactId>
690         <version>7.0.53.v201406070630</version>
691       </dependency>
692       <dependency>
693         <groupId>orbit</groupId>
694         <artifactId>org.apache.catalina.tribes</artifactId>
695         <version>7.0.53.v201406070630</version>
696       </dependency>
697       <dependency>
698         <groupId>orbit</groupId>
699         <artifactId>org.apache.coyote</artifactId>
700         <version>7.0.53.v201406070630</version>
701       </dependency>
702       <dependency>
703         <groupId>orbit</groupId>
704         <artifactId>org.apache.el</artifactId>
705         <version>7.0.53.v201406060720</version>
706       </dependency>
707       <dependency>
708         <groupId>orbit</groupId>
709         <artifactId>org.apache.jasper</artifactId>
710         <version>7.0.53.v201406070630</version>
711       </dependency>
712       <dependency>
713         <groupId>orbit</groupId>
714         <artifactId>org.apache.juli.extras</artifactId>
715         <version>7.0.53.v201406060720</version>
716       </dependency>
717       <dependency>
718         <groupId>orbit</groupId>
719         <artifactId>org.apache.tomcat.api</artifactId>
720         <version>7.0.53.v201406060720</version>
721       </dependency>
722       <dependency>
723         <groupId>orbit</groupId>
724         <artifactId>org.apache.tomcat.util</artifactId>
725         <version>7.0.53.v201406070630</version>
726       </dependency>
727       <dependency>
728         <groupId>org.aopalliance</groupId>
729         <artifactId>com.springsource.org.aopalliance</artifactId>
730         <version>1.0.0</version>
731       </dependency>
732       <dependency>
733         <groupId>org.apache.felix</groupId>
734         <artifactId>org.apache.felix.dependencymanager</artifactId>
735         <version>${felix.dependencymanager.version}</version>
736       </dependency>
737       <dependency>
738         <groupId>org.apache.felix</groupId>
739         <artifactId>org.apache.felix.dependencymanager.shell</artifactId>
740         <version>3.0.1</version>
741       </dependency>
742       <dependency>
743         <groupId>org.apache.felix</groupId>
744         <artifactId>org.apache.felix.fileinstall</artifactId>
745         <version>3.1.6</version>
746       </dependency>
747       <!-- felix webconsole -->
748       <dependency>
749         <groupId>org.apache.felix</groupId>
750         <artifactId>org.apache.felix.webconsole</artifactId>
751         <version>4.2.0</version>
752         <!-- the all bundle includes all the necessary plugins -->
753         <classifier>all</classifier>
754       </dependency>
755       <dependency>
756         <groupId>org.bouncycastle</groupId>
757         <artifactId>bcpkix-jdk15on</artifactId>
758         <version>${bouncycastle.version}</version>
759       </dependency>
760       <dependency>
761         <groupId>org.bouncycastle</groupId>
762         <artifactId>bcprov-jdk15on</artifactId>
763         <version>${bouncycastle.version}</version>
764       </dependency>
765       <dependency>
766         <groupId>org.codehaus.enunciate</groupId>
767         <artifactId>enunciate-core-annotations</artifactId>
768         <version>${enunciate.version}</version>
769       </dependency>
770       <dependency>
771         <groupId>com.webcohesion.enunciate</groupId>
772         <artifactId>enunciate-core-annotations</artifactId>
773         <version>2.1.1</version>
774       </dependency>
775       <dependency>
776         <groupId>org.codehaus.jettison</groupId>
777         <artifactId>jettison</artifactId>
778         <version>${jettison.version}</version>
779       </dependency>
780       <!-- equinox http service bridge -->
781       <dependency>
782         <groupId>org.eclipse.equinox.http</groupId>
783         <artifactId>servlet</artifactId>
784         <version>1.0.0-v20070606</version>
785       </dependency>
786       <dependency>
787         <groupId>org.eclipse.persistence</groupId>
788         <artifactId>org.eclipse.persistence.antlr</artifactId>
789         <version>${eclipse.persistence.version}</version>
790       </dependency>
791       <dependency>
792         <groupId>org.eclipse.persistence</groupId>
793         <artifactId>org.eclipse.persistence.core</artifactId>
794         <version>${eclipse.persistence.version}</version>
795       </dependency>
796       <dependency>
797         <groupId>org.eclipse.persistence</groupId>
798         <artifactId>org.eclipse.persistence.moxy</artifactId>
799         <version>${eclipse.persistence.version}</version>
800       </dependency>
801       <dependency>
802         <groupId>javax.validation</groupId>
803         <artifactId>validation-api</artifactId>
804         <version>1.1.0.Final</version>
805       </dependency>
806       <dependency>
807         <groupId>org.javassist</groupId>
808         <artifactId>javassist</artifactId>
809         <version>${javassist.version}</version>
810       </dependency>
811       <dependency>
812         <groupId>org.jboss.spec.javax.transaction</groupId>
813         <artifactId>jboss-transaction-api_1.1_spec</artifactId>
814         <version>1.0.1.Final</version>
815       </dependency>
816       <dependency>
817         <groupId>org.jolokia</groupId>
818         <artifactId>jolokia-osgi</artifactId>
819         <version>1.3.3</version>
820       </dependency>
821       <dependency>
822         <groupId>org.json</groupId>
823         <artifactId>json</artifactId>
824         <version>${org.json.version}</version>
825       </dependency>
826       <dependency>
827         <groupId>org.osgi</groupId>
828         <artifactId>org.osgi.compendium</artifactId>
829         <version>5.0.0</version>
830         <scope>provided</scope>
831       </dependency>
832       <dependency>
833         <groupId>org.osgi</groupId>
834         <artifactId>org.osgi.core</artifactId>
835         <version>${osgi.core.version}</version>
836         <scope>provided</scope>
837       </dependency>
838       <dependency>
839         <groupId>org.ow2.asm</groupId>
840         <artifactId>asm-all</artifactId>
841         <version>5.0.4</version>
842       </dependency>
843       <!-- Visual VM hook -->
844       <dependency>
845         <groupId>org.ow2.chameleon.management</groupId>
846         <artifactId>chameleon-mbeans</artifactId>
847         <version>1.0.0</version>
848       </dependency>
849       <dependency>
850         <groupId>org.springframework</groupId>
851         <artifactId>spring-aop</artifactId>
852         <version>${spring.version}</version>
853       </dependency>
854       <dependency>
855         <groupId>org.springframework</groupId>
856         <artifactId>spring-beans</artifactId>
857         <version>${spring.version}</version>
858       </dependency>
859       <dependency>
860         <groupId>org.springframework</groupId>
861         <artifactId>spring-context</artifactId>
862         <version>${spring.version}</version>
863       </dependency>
864       <dependency>
865         <groupId>org.springframework</groupId>
866         <artifactId>spring-core</artifactId>
867         <version>${spring.version}</version>
868       </dependency>
869       <dependency>
870         <groupId>org.springframework</groupId>
871         <artifactId>spring-expression</artifactId>
872         <version>${spring.version}</version>
873       </dependency>
874       <dependency>
875         <groupId>org.springframework</groupId>
876         <artifactId>spring-tx</artifactId>
877         <version>${spring.version}</version>
878       </dependency>
879       <dependency>
880         <groupId>org.springframework</groupId>
881         <artifactId>spring-web</artifactId>
882         <version>${spring.version}</version>
883       </dependency>
884       <dependency>
885         <groupId>org.springframework</groupId>
886         <artifactId>spring-webmvc</artifactId>
887         <version>${spring.version}</version>
888       </dependency>
889       <!-- Spring security -->
890       <dependency>
891         <groupId>org.springframework.security</groupId>
892         <artifactId>spring-security-config</artifactId>
893         <version>3.2.8.RELEASE</version>
894       </dependency>
895       <dependency>
896         <groupId>org.springframework.security</groupId>
897         <artifactId>spring-security-core</artifactId>
898         <version>3.2.8.RELEASE</version>
899       </dependency>
900       <dependency>
901         <groupId>org.springframework.security</groupId>
902         <artifactId>spring-security-taglibs</artifactId>
903         <version>3.2.8.RELEASE</version>
904       </dependency>
905       <dependency>
906         <groupId>org.springframework.security</groupId>
907         <artifactId>spring-security-web</artifactId>
908         <version>3.2.8.RELEASE</version>
909       </dependency>
910       <dependency>
911         <groupId>virgomirror</groupId>
912         <artifactId>org.eclipse.jdt.core.compiler.batch</artifactId>
913         <version>3.8.0.I20120518-2145</version>
914       </dependency>
915
916       <!-- Configuration library -->
917       <dependency>
918         <groupId>com.typesafe</groupId>
919         <artifactId>config</artifactId>
920         <version>1.3.0</version>
921       </dependency>
922
923       <!-- Akka -->
924       <dependency>
925         <groupId>com.typesafe.akka</groupId>
926         <artifactId>akka-actor_${scala.version}</artifactId>
927         <version>${akka.version}</version>
928       </dependency>
929       <dependency>
930         <groupId>com.typesafe.akka</groupId>
931         <artifactId>akka-cluster_${scala.version}</artifactId>
932         <version>${akka.version}</version>
933       </dependency>
934       <dependency>
935         <groupId>com.typesafe.akka</groupId>
936         <artifactId>akka-persistence_${scala.version}</artifactId>
937         <version>${akka.version}</version>
938       </dependency>
939       <dependency>
940         <groupId>com.typesafe.akka</groupId>
941         <artifactId>akka-protobuf_${scala.version}</artifactId>
942         <version>${akka.version}</version>
943       </dependency>
944       <dependency>
945         <groupId>com.typesafe.akka</groupId>
946         <artifactId>akka-remote_${scala.version}</artifactId>
947         <version>${akka.version}</version>
948       </dependency>
949       <dependency>
950         <groupId>com.typesafe.akka</groupId>
951         <artifactId>akka-testkit_${scala.version}</artifactId>
952         <version>${akka.version}</version>
953       </dependency>
954       <dependency>
955         <groupId>com.typesafe.akka</groupId>
956         <artifactId>akka-osgi_${scala.version}</artifactId>
957         <version>${akka.version}</version>
958       </dependency>
959       <dependency>
960         <groupId>com.typesafe.akka</groupId>
961         <artifactId>akka-slf4j_${scala.version}</artifactId>
962         <version>${akka.version}</version>
963       </dependency>
964       <dependency>
965         <groupId>org.iq80.leveldb</groupId>
966         <artifactId>leveldb</artifactId>
967         <version>${leveldb.version}</version>
968       </dependency>
969       <dependency>
970         <groupId>org.fusesource.leveldbjni</groupId>
971         <artifactId>leveldbjni-all</artifactId>
972         <version>1.8-odl</version>
973       </dependency>
974       <dependency>
975         <groupId>org.uncommons.maths</groupId>
976         <artifactId>uncommons-maths</artifactId>
977         <version>1.2.2a</version>
978       </dependency>
979       <dependency>
980         <groupId>com.google.protobuf</groupId>
981         <artifactId>protobuf-java</artifactId>
982         <version>2.5.0</version>
983       </dependency>
984
985       <!-- Scala -->
986       <dependency>
987         <groupId>org.scala-lang</groupId>
988         <artifactId>scala-library</artifactId>
989         <version>${scala.version}.${scala.micro.version}</version>
990       </dependency>
991       <dependency>
992         <groupId>org.scala-lang</groupId>
993         <artifactId>scala-reflect</artifactId>
994         <version>${scala.version}.${scala.micro.version}</version>
995       </dependency>
996
997       <!-- LMAX Disruptor -->
998       <dependency>
999         <groupId>com.lmax</groupId>
1000         <artifactId>disruptor</artifactId>
1001         <!-- If this is updated, the version in features.xml needs to be changed too -->
1002         <version>3.3.2</version>
1003       </dependency>
1004
1005       <!-- Add Pax Exam -->
1006       <dependency>
1007         <groupId>org.ops4j.pax.exam</groupId>
1008         <artifactId>pax-exam</artifactId>
1009         <version>${exam.version}</version>
1010         <scope>test</scope>
1011       </dependency>
1012       <dependency>
1013         <groupId>org.ops4j.pax.exam</groupId>
1014         <artifactId>pax-exam-container-karaf</artifactId>
1015         <version>${exam.version}</version>
1016         <scope>test</scope>
1017       </dependency>
1018       <dependency>
1019         <groupId>org.ops4j.pax.exam</groupId>
1020         <artifactId>pax-exam-container-native</artifactId>
1021         <version>${exam.version}</version>
1022         <scope>test</scope>
1023       </dependency>
1024       <dependency>
1025         <groupId>org.ops4j.pax.exam</groupId>
1026         <artifactId>pax-exam-junit4</artifactId>
1027         <version>${exam.version}</version>
1028         <scope>test</scope>
1029       </dependency>
1030       <dependency>
1031         <groupId>org.ops4j.pax.exam</groupId>
1032         <artifactId>pax-exam-link-mvn</artifactId>
1033         <version>${exam.version}</version>
1034         <scope>test</scope>
1035       </dependency>
1036
1037       <dependency>
1038         <groupId>org.ops4j.pax.url</groupId>
1039         <artifactId>pax-url-aether</artifactId>
1040         <version>${url.version}</version>
1041         <scope>test</scope>
1042       </dependency>
1043       <dependency>
1044         <groupId>org.springframework.osgi</groupId>
1045         <artifactId>spring-osgi-mock</artifactId>
1046         <version>1.2.1</version>
1047         <scope>test</scope>
1048       </dependency>
1049       <dependency>
1050         <groupId>xmlunit</groupId>
1051         <artifactId>xmlunit</artifactId>
1052         <version>1.6</version>
1053         <scope>test</scope>
1054       </dependency>
1055       <dependency>
1056         <groupId>org.eclipse.jetty</groupId>
1057         <artifactId>jetty-servlets</artifactId>
1058         <version>8.1.14.v20131031</version>
1059       </dependency>
1060     </dependencies>
1061   </dependencyManagement>
1062
1063   <build>
1064     <pluginManagement>
1065       <plugins>
1066         <!-- Official maven plugins, alpha-sorted by artifactId.
1067              We do not need to specify the groupId. -->
1068         <plugin>
1069           <artifactId>maven-antrun-plugin</artifactId>
1070           <version>${maven.antrun.plugin.version}</version>
1071         </plugin>
1072         <plugin>
1073           <artifactId>maven-checkstyle-plugin</artifactId>
1074           <version>${checkstyle.version}</version>
1075           <dependencies>
1076             <dependency>
1077               <groupId>org.opendaylight.odlparent</groupId>
1078               <artifactId>checkstyle</artifactId>
1079               <version>${odl.checkstyle.version}</version>
1080             </dependency>
1081             <dependency>
1082               <groupId>org.opendaylight.odlparent</groupId>
1083               <artifactId>odl-license</artifactId>
1084               <version>0.1.0-SNAPSHOT</version>
1085             </dependency>
1086           </dependencies>
1087           <configuration>
1088             <configLocation>odl_checks.xml</configLocation>
1089             <!-- <sourceDirectory> is needed so that checkstyle ignores the
1090                  generated sources directory -->
1091             <sourceDirectory>${project.build.sourceDirectory}</sourceDirectory>
1092             <excludes>
1093               org/opendaylight/yang/gen/**,
1094               **/protobuff/messages/**,
1095               **/thrift/gen/*.java
1096             </excludes>
1097             <failsOnError>false</failsOnError>
1098             <consoleOutput>true</consoleOutput>
1099           </configuration>
1100           <executions>
1101             <execution>
1102               <id>check-license</id>
1103               <goals>
1104                 <goal>check</goal>
1105               </goals>
1106               <phase>process-sources</phase>
1107               <configuration>
1108                 <configLocation>check-license.xml</configLocation>
1109                 <includeResources>false</includeResources>
1110                 <includeTestResources>false</includeTestResources>
1111                 <sourceDirectory>${project.build.sourceDirectory}</sourceDirectory>
1112                 <excludes>
1113                   org/opendaylight/yang/gen/**,
1114                   **/protobuff/messages/**,
1115                   **/thrift/gen/*.java
1116                 </excludes>
1117                 <failsOnError>false</failsOnError>
1118                 <consoleOutput>true</consoleOutput>
1119               </configuration>
1120             </execution>
1121             <execution>
1122               <goals>
1123                 <goal>check</goal>
1124               </goals>
1125               <phase>process-sources</phase>
1126             </execution>
1127           </executions>
1128         </plugin>
1129         <plugin>
1130           <artifactId>maven-compiler-plugin</artifactId>
1131           <version>${maven.compile.plugin.version}</version>
1132           <configuration>
1133             <source>1.8</source>
1134             <target>1.8</target>
1135           </configuration>
1136         </plugin>
1137         <plugin>
1138           <artifactId>maven-enforcer-plugin</artifactId>
1139           <version>${enforcer.version}</version>
1140         </plugin>
1141         <plugin>
1142           <artifactId>maven-failsafe-plugin</artifactId>
1143           <version>${failsafe.version}</version>
1144         </plugin>
1145         <plugin>
1146           <artifactId>maven-invoker-plugin</artifactId>
1147           <version>2.0.0</version>
1148         </plugin>
1149         <plugin>
1150           <artifactId>maven-jar-plugin</artifactId>
1151           <version>${maven.jar.version}</version>
1152         </plugin>
1153         <plugin>
1154           <artifactId>maven-release-plugin</artifactId>
1155           <version>${maven.release.version}</version>
1156         </plugin>
1157         <plugin>
1158           <artifactId>maven-dependency-plugin</artifactId>
1159           <version>2.10</version>
1160           <executions>
1161             <execution>
1162               <id>unpack-license</id>
1163               <phase>generate-resources</phase>
1164               <goals><goal>unpack</goal></goals>
1165               <configuration>
1166                 <artifactItems>
1167                   <artifactItem>
1168                     <groupId>org.opendaylight.odlparent</groupId>
1169                     <artifactId>odl-license</artifactId>
1170                     <version>0.1.0-SNAPSHOT</version>
1171                   </artifactItem>
1172                 </artifactItems>
1173                 <outputDirectory>${project.build.outputDirectory}</outputDirectory>
1174                 <excludes>META-INF/**</excludes>
1175               </configuration>
1176             </execution>
1177           </executions>
1178         </plugin>
1179
1180         <plugin>
1181           <artifactId>maven-plugin-plugin</artifactId>
1182           <version>${maven.plugin.version}</version>
1183         </plugin>
1184
1185         <plugin>
1186           <artifactId>maven-resources-plugin</artifactId>
1187           <version>2.7</version>
1188         </plugin>
1189         <plugin>
1190           <artifactId>maven-shade-plugin</artifactId>
1191           <version>2.4.1</version>
1192         </plugin>
1193         <plugin>
1194           <artifactId>maven-site-plugin</artifactId>
1195           <version>3.4</version>
1196         </plugin>
1197         <plugin>
1198           <artifactId>maven-source-plugin</artifactId>
1199           <version>2.4</version>
1200           <executions>
1201             <execution>
1202               <id>attach-sources</id>
1203               <goals>
1204                 <goal>jar-no-fork</goal>
1205               </goals>
1206             </execution>
1207           </executions>
1208         </plugin>
1209         <plugin>
1210           <artifactId>maven-surefire-plugin</artifactId>
1211           <version>${maven.surefire.version}</version>
1212           <configuration>
1213             <redirectTestOutputToFile>true</redirectTestOutputToFile>
1214           </configuration>
1215         </plugin>
1216
1217         <!-- Third-party plugins, grouped by groupId, alpha-sorted by artifactId -->
1218         <plugin>
1219           <groupId>org.apache.felix</groupId>
1220           <artifactId>maven-bundle-plugin</artifactId>
1221           <version>${maven.bundle.version}</version>
1222           <extensions>true</extensions>
1223         </plugin>
1224
1225         <plugin>
1226           <groupId>org.apache.karaf.tooling</groupId>
1227           <artifactId>karaf-maven-plugin</artifactId>
1228           <version>${karaf.version}</version>
1229         </plugin>
1230
1231         <plugin>
1232           <groupId>org.apache.servicemix.tooling</groupId>
1233           <artifactId>depends-maven-plugin</artifactId>
1234           <version>1.3.1</version>
1235           <executions>
1236             <execution>
1237               <id>generate-depends-file</id>
1238               <goals>
1239                 <goal>generate-depends-file</goal>
1240               </goals>
1241             </execution>
1242           </executions>
1243         </plugin>
1244
1245         <plugin>
1246           <groupId>org.codehaus.enunciate</groupId>
1247           <artifactId>maven-enunciate-plugin</artifactId>
1248           <version>${enunciate.version}</version>
1249         </plugin>
1250         <plugin>
1251           <groupId>com.webcohesion.enunciate</groupId>
1252           <artifactId>enunciate-maven-plugin</artifactId>
1253           <version>2.1.1</version>
1254         </plugin>
1255         <plugin>
1256           <groupId>org.codehaus.groovy.maven</groupId>
1257           <artifactId>gmaven-plugin</artifactId>
1258           <version>${gmaven.plugin.version}</version>
1259         </plugin>
1260         <plugin>
1261           <groupId>org.codehaus.mojo</groupId>
1262           <artifactId>build-helper-maven-plugin</artifactId>
1263           <version>1.9.1</version>
1264         </plugin>
1265         <plugin>
1266           <groupId>org.codehaus.mojo</groupId>
1267           <artifactId>findbugs-maven-plugin</artifactId>
1268           <version>3.0.3</version>
1269         </plugin>
1270         <plugin>
1271           <groupId>org.codehaus.mojo</groupId>
1272           <artifactId>properties-maven-plugin</artifactId>
1273           <version>${propertymavenplugin.version}</version>
1274         </plugin>
1275
1276         <plugin>
1277           <groupId>org.eclipse.m2e</groupId>
1278           <artifactId>lifecycle-mapping</artifactId>
1279           <version>1.0.0</version>
1280           <configuration>
1281             <lifecycleMappingMetadata>
1282               <pluginExecutions>
1283                 <pluginExecution>
1284                   <pluginExecutionFilter>
1285                     <groupId>org.apache.felix</groupId>
1286                     <artifactId>maven-bundle-plugin</artifactId>
1287                     <versionRange>[1.0,)</versionRange>
1288                     <goals>
1289                       <goal>manifest</goal>
1290                     </goals>
1291                   </pluginExecutionFilter>
1292                   <action>
1293                     <execute/>
1294                   </action>
1295                 </pluginExecution>
1296                 <pluginExecution>
1297                   <pluginExecutionFilter>
1298                     <groupId>org.apache.maven.plugins</groupId>
1299                     <artifactId>maven-enforcer-plugin</artifactId>
1300                     <versionRange>[1.0.0,)</versionRange>
1301                     <goals>
1302                       <goal>enforce</goal>
1303                     </goals>
1304                   </pluginExecutionFilter>
1305                   <action>
1306                     <ignore/>
1307                   </action>
1308                 </pluginExecution>
1309                 <pluginExecution>
1310                   <pluginExecutionFilter>
1311                     <groupId>org.apache.maven.plugins</groupId>
1312                     <artifactId>maven-checkstyle-plugin</artifactId>
1313                     <versionRange>[2.0.0,)</versionRange>
1314                     <goals>
1315                       <goal>check</goal>
1316                     </goals>
1317                   </pluginExecutionFilter>
1318                   <action>
1319                     <ignore/>
1320                   </action>
1321                 </pluginExecution>
1322                 <pluginExecution>
1323                   <pluginExecutionFilter>
1324                     <groupId>org.apache.maven.plugins</groupId>
1325                     <artifactId>maven-dependency-plugin</artifactId>
1326                     <versionRange>[2.10,)</versionRange>
1327                     <goals>
1328                       <goal>unpack</goal>
1329                     </goals>
1330                   </pluginExecutionFilter>
1331                   <action>
1332                     <execute/>
1333                   </action>
1334                 </pluginExecution>
1335                 <pluginExecution>
1336                   <pluginExecutionFilter>
1337                     <groupId>org.apache.servicemix.tooling</groupId>
1338                     <artifactId>depends-maven-plugin</artifactId>
1339                     <versionRange>[1.2,)</versionRange>
1340                     <goals>
1341                       <goal>generate-depends-file</goal>
1342                     </goals>
1343                   </pluginExecutionFilter>
1344                   <action>
1345                     <execute/>
1346                   </action>
1347                 </pluginExecution>
1348               </pluginExecutions>
1349             </lifecycleMappingMetadata>
1350           </configuration>
1351         </plugin>
1352
1353         <plugin>
1354           <groupId>org.jacoco</groupId>
1355           <artifactId>jacoco-maven-plugin</artifactId>
1356           <version>${jacoco.version}</version>
1357           <configuration>
1358             <!-- Note: This exclusion list should match <sonar.exclusions>
1359                        property above -->
1360             <excludes>
1361               <exclude>**/gen/**</exclude>
1362               <exclude>**/generated-sources/**</exclude>
1363               <exclude>**/yang-gen/**</exclude>
1364               <exclude>**/pax/**</exclude>
1365             </excludes>
1366           </configuration>
1367         </plugin>
1368
1369         <plugin>
1370           <groupId>org.ops4j.pax.exam</groupId>
1371           <artifactId>maven-paxexam-plugin</artifactId>
1372           <version>1.2.4</version>
1373         </plugin>
1374
1375         <plugin>
1376           <groupId>org.codehaus.mojo</groupId>
1377           <artifactId>jdepend-maven-plugin</artifactId>
1378           <version>2.0</version>
1379           <executions>
1380             <execution>
1381               <phase>site</phase>
1382               <goals>
1383                 <goal>generate-no-fork</goal>
1384               </goals>
1385             </execution>
1386           </executions>
1387         </plugin>
1388       </plugins>
1389     </pluginManagement>
1390
1391     <plugins>
1392       <plugin>
1393         <artifactId>maven-enforcer-plugin</artifactId>
1394         <executions>
1395           <execution>
1396             <id>enforce-maven</id>
1397             <configuration>
1398               <rules>
1399                 <requireMavenVersion>
1400                   <version>3.1.1</version>
1401                 </requireMavenVersion>
1402               </rules>
1403             </configuration>
1404             <goals>
1405               <goal>enforce</goal>
1406             </goals>
1407           </execution>
1408         </executions>
1409       </plugin>
1410       <plugin>
1411         <artifactId>maven-dependency-plugin</artifactId>
1412       </plugin>
1413       <plugin>
1414         <artifactId>maven-checkstyle-plugin</artifactId>
1415       </plugin>
1416       <plugin>
1417         <artifactId>maven-source-plugin</artifactId>
1418       </plugin>
1419       <plugin>
1420         <artifactId>maven-javadoc-plugin</artifactId>
1421       </plugin>
1422
1423       <!-- Jacoco / Sonar -->
1424       <plugin>
1425         <groupId>org.jacoco</groupId>
1426         <artifactId>jacoco-maven-plugin</artifactId>
1427         <executions>
1428           <execution>
1429             <id>pre-unit-test</id>
1430             <goals>
1431               <goal>prepare-agent</goal>
1432             </goals>
1433             <configuration>
1434               <destFile>${sonar.jacoco.reportPath}</destFile>
1435             </configuration>
1436           </execution>
1437           <execution>
1438             <id>post-unit-test</id>
1439             <goals>
1440               <goal>report</goal>
1441             </goals>
1442             <configuration>
1443               <dataFile>${sonar.jacoco.reportPath}</dataFile>
1444             </configuration>
1445           </execution>
1446         </executions>
1447       </plugin>
1448     </plugins>
1449   </build>
1450
1451   <reporting>
1452     <plugins>
1453       <plugin>
1454         <artifactId>maven-checkstyle-plugin</artifactId>
1455         <version>${checkstyle.version}</version>
1456       </plugin>
1457
1458       <!-- FIXME: activate this
1459       <plugin>
1460         <artifactId>maven-project-info-reports-plugin</artifactId>
1461         <version>${projectinfo}</version>
1462       </plugin-->
1463       <plugin>
1464         <groupId>org.codehaus.mojo</groupId>
1465         <artifactId>findbugs-maven-plugin</artifactId>
1466         <configuration>
1467           <effort>Max</effort>
1468           <threshold>Low</threshold>
1469           <goal>site</goal>
1470         </configuration>
1471       </plugin>
1472       <plugin>
1473         <groupId>org.codehaus.mojo</groupId>
1474         <artifactId>jdepend-maven-plugin</artifactId>
1475         <reportSets>
1476           <reportSet>
1477             <reports>
1478               <report>generate-no-fork</report>
1479             </reports>
1480           </reportSet>
1481         </reportSets>
1482       </plugin>
1483     </plugins>
1484   </reporting>
1485
1486   <!--
1487     Maven Site Configuration
1488
1489     The following configuration is necessary for maven-site-plugin to
1490     correctly identify the correct deployment path for OpenDaylight Maven
1491     sites.
1492   -->
1493   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
1494
1495   <distributionManagement>
1496     <site>
1497       <id>opendaylight-site</id>
1498       <url>${nexus.site.url}/${project.artifactId}/</url>
1499     </site>
1500   </distributionManagement>
1501 </project>