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