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