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