Fixup blueprint-core version
[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>6.0.2-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     <maven.compiler.release>11</maven.compiler.release>
45
46     <!-- Used in openflowplugin -->
47     <enforcer.version>3.0.0-M2</enforcer.version>
48     <!-- Used in controller, genius, infrautils, netconf, netvirt, ovsdb, serviceutils -->
49     <karaf.version>4.2.5</karaf.version>
50     <!-- Used in bgpcep, lispflowmapping -->
51     <projectinfo>2.8.1</projectinfo>
52
53     <!-- Supporting Libraries -->
54     <!-- Only used internally -->
55     <bouncycastle.version>1.64</bouncycastle.version>
56
57     <!-- JaCoCo configuration, by default tied to Sonar configuration, but can be overridden separately
58          to allow projects to report Sonar values from the entire project. -->
59     <jacoco.destFile>${project.build.directory}/code-coverage/jacoco.exec</jacoco.destFile>
60
61     <!-- Default Sonar configuration -->
62     <sonar-jacoco-listeners.version>3.8</sonar-jacoco-listeners.version>
63     <sonar.core.codeCoveragePlugin>jacoco</sonar.core.codeCoveragePlugin>
64     <sonar.jacoco.reportPath>${jacoco.destFile}</sonar.jacoco.reportPath>
65     <sonar.jacoco.itReportPath>${project.build.directory}/code-coverage/jacoco-it.exec</sonar.jacoco.itReportPath>
66
67     <!-- Note: This list should match jacoco-maven-plugin's exclusion list below -->
68     <sonar.exclusions>**/gen/**,**/generated-sources/**,**/generated-test-sources/**,**/yang-gen/**,**/yang-gen-config/**,**/yang-gen-sal/**,**/yang-gen-code/**,**/pax/**</sonar.exclusions>
69
70     <!-- Opt-in code quality checks -->
71     <pmd.cpd.fail>false</pmd.cpd.fail>                  <!-- Copy/paste detection -->
72     <duplicate-finder.skip>true</duplicate-finder.skip> <!-- Classpath duplicates -->
73
74     <!-- Redirect test output to files (overridable) -->
75     <maven.test.redirectTestOutputToFile>true</maven.test.redirectTestOutputToFile>
76
77     <!-- Opt-out from maven-checkstyle-plugin failing the build on violations. Defaults
78          to true. Set to 'false' in pom.xml of project which desires to not enforce
79          no reported violations. -->
80     <odlparent.checkstyle.enforce>true</odlparent.checkstyle.enforce>
81
82     <!-- Opt-in into modernizer-maven-plugin failing the build on violations. Defaults
83          to false. Set to 'true' in pom.xml of project which desires to enforce
84          no reported violations. -->
85     <odlparent.modernizer.enforce>false</odlparent.modernizer.enforce>
86
87     <!-- Target release for modernizer-maven-plugin. It defaults to '1.8',
88          meaning Java 8, but can be set to any version in pom.xml of project
89          which desires to override it (such as '1.11' for Java 11). -->
90     <odlparent.modernizer.target>1.8</odlparent.modernizer.target>
91
92     <!-- Opt-out from spotbugs-maven-plugin failing the build on violations. Defaults
93          to true. Set to 'false' in pom.xml of project which desires to not enforce
94          no reported violations. -->
95     <odlparent.spotbugs.enforce>true</odlparent.spotbugs.enforce>
96   </properties>
97
98   <dependencyManagement>
99     <dependencies>
100
101       <dependency>
102         <groupId>org.opendaylight.odlparent</groupId>
103         <artifactId>odlparent-artifacts</artifactId>
104         <version>6.0.2-SNAPSHOT</version>
105         <scope>import</scope>
106         <type>pom</type>
107       </dependency>
108
109       <!-- We import Karaf dependencies to ensure we converge by default on the versions used there -->
110       <dependency>
111         <groupId>org.apache.karaf.features</groupId>
112         <artifactId>framework</artifactId>
113         <version>${karaf.version}</version>
114         <scope>import</scope>
115         <type>pom</type>
116       </dependency>
117
118       <!-- Build tool dependencies (normally not here in <dependencies>,
119            but in a <dependency> in <pluginManagement> but for Checkstyle this
120            is required so that we can share the same version of Checkstyle
121            for both the Maven plugin below as well as  for custom Checkstyle
122            check rule projects, such as yangtools' checkstyle-logging) -->
123       <dependency>
124         <groupId>com.puppycrawl.tools</groupId>
125         <artifactId>checkstyle</artifactId>
126         <!-- This should match the plugin management on maven-checkstyle-plugin below -->
127         <version>8.20</version>
128       </dependency>
129
130       <!-- Testing Dependencies -->
131       <!-- JUnit, Hamcrest, Mockito and PowerMock need to be kept in sync -->
132       <!-- Need to stick to JUnit 4.11 until
133            https://github.com/jayway/powermock/issues/560 is fixed (either in
134            PowerMock or with a new JUnit release) -->
135       <dependency>
136         <groupId>junit</groupId>
137         <artifactId>junit</artifactId>
138         <!-- When bumping this version, remember to also change the JavaDoc link in odlparent-lite -->
139         <version>4.11</version>
140         <scope>test</scope>
141       </dependency>
142       <dependency>
143          <groupId>org.skyscreamer</groupId>
144          <artifactId>jsonassert</artifactId>
145          <version>1.5.0</version>
146          <scope>test</scope>
147       </dependency>
148       <dependency>
149         <groupId>org.mockito</groupId>
150         <artifactId>mockito-core</artifactId>
151         <version>2.28.2</version>
152         <scope>test</scope>
153       </dependency>
154       <dependency>
155         <groupId>org.mockito</groupId>
156         <artifactId>mockito-inline</artifactId>
157         <version>2.28.2</version>
158         <scope>test</scope>
159       </dependency>
160       <dependency>
161         <groupId>org.hamcrest</groupId>
162         <artifactId>hamcrest</artifactId>
163         <!-- When bumping this version, remember to also change the JavaDoc link in odlparent-lite -->
164         <version>2.2</version>
165         <scope>test</scope>
166       </dependency>
167       <dependency>
168         <groupId>org.hamcrest</groupId>
169         <artifactId>hamcrest-core</artifactId>
170         <version>2.2</version>
171         <scope>test</scope>
172       </dependency>
173       <dependency>
174         <groupId>org.hamcrest</groupId>
175         <artifactId>hamcrest-library</artifactId>
176         <version>2.2</version>
177         <scope>test</scope>
178       </dependency>
179       <dependency>
180         <groupId>com.google.truth</groupId>
181         <artifactId>truth</artifactId>
182         <!-- When bumping this version, remember to also change the JavaDoc link in odlparent-lite -->
183         <version>0.43</version>
184         <scope>test</scope>
185       </dependency>
186       <dependency>
187         <groupId>com.google.truth.extensions</groupId>
188         <artifactId>truth-java8-extension</artifactId>
189         <version>0.43</version>
190         <scope>test</scope>
191       </dependency>
192       <dependency>
193         <groupId>org.awaitility</groupId>
194         <artifactId>awaitility</artifactId>
195         <version>3.0.0</version>
196         <scope>test</scope>
197       </dependency>
198       <dependency>
199         <groupId>org.awaitility</groupId>
200         <artifactId>awaitility-proxy</artifactId>
201         <version>3.0.0</version>
202         <scope>test</scope>
203       </dependency>
204       <dependency>
205         <groupId>org.powermock</groupId>
206         <artifactId>powermock-api-mockito2</artifactId>
207         <version>2.0.4</version>
208         <scope>test</scope>
209       </dependency>
210       <dependency>
211         <groupId>org.powermock</groupId>
212         <artifactId>powermock-api-support</artifactId>
213         <version>2.0.4</version>
214         <scope>test</scope>
215       </dependency>
216       <dependency>
217         <groupId>org.powermock</groupId>
218         <artifactId>powermock-core</artifactId>
219         <version>2.0.4</version>
220         <scope>test</scope>
221       </dependency>
222       <dependency>
223         <groupId>org.powermock</groupId>
224         <artifactId>powermock-module-junit4</artifactId>
225         <version>2.0.4</version>
226         <scope>test</scope>
227       </dependency>
228       <dependency>
229         <groupId>org.powermock</groupId>
230         <artifactId>powermock-reflect</artifactId>
231         <version>2.0.4</version>
232         <scope>test</scope>
233       </dependency>
234
235       <!--
236            Annotation Processors
237        -->
238       <dependency>
239         <!-- Generates immutable implementations, builders, the works -->
240         <groupId>org.immutables</groupId>
241         <artifactId>value</artifactId>
242         <classifier>annotations</classifier>
243         <!-- Keep this version in sync with annotationProcessorPaths declaration below -->
244         <version>2.7.5</version>
245         <!-- Must be provided; scope=test here breaks APT in Eclipse :( -->
246         <scope>provided</scope>
247       </dependency>
248       <dependency>
249         <!-- Same as above, except using legacy unified artifact -->
250         <!-- FIXME: ODLPARENT-217: remove this declaration -->
251         <groupId>org.immutables</groupId>
252         <artifactId>value</artifactId>
253         <!-- Keep this version in sync with annotationProcessorPaths declaration below -->
254         <version>2.7.5</version>
255         <!-- Must be provided; scope=test here breaks APT in Eclipse :( -->
256         <scope>provided</scope>
257       </dependency>
258
259       <dependency>
260         <!-- Generates META-INF/services entries for ServiceLoader -->
261         <groupId>org.kohsuke.metainf-services</groupId>
262         <artifactId>metainf-services</artifactId>
263         <version>1.8</version>
264         <optional>true</optional>
265         <scope>provided</scope>
266       </dependency>
267
268       <!--
269            Supporting Libraries
270        -->
271       <dependency>
272         <groupId>org.slf4j</groupId>
273         <artifactId>jcl-over-slf4j</artifactId>
274         <version>1.7.28</version>
275       </dependency>
276       <dependency>
277         <groupId>org.slf4j</groupId>
278         <artifactId>slf4j-api</artifactId>
279         <version>1.7.28</version>
280       </dependency>
281       <dependency>
282         <groupId>org.slf4j</groupId>
283         <artifactId>slf4j-log4j12</artifactId>
284         <version>1.7.28</version>
285       </dependency>
286       <dependency>
287         <groupId>org.slf4j</groupId>
288         <artifactId>log4j-over-slf4j</artifactId>
289         <version>1.7.28</version>
290       </dependency>
291       <dependency>
292         <groupId>org.slf4j</groupId>
293         <artifactId>slf4j-simple</artifactId>
294         <version>1.7.28</version>
295         <scope>test</scope>
296       </dependency>
297       <dependency>
298         <groupId>ch.qos.logback</groupId>
299         <artifactId>logback-core</artifactId>
300         <version>1.2.3</version>
301       </dependency>
302       <dependency>
303         <groupId>ch.qos.logback</groupId>
304         <artifactId>logback-classic</artifactId>
305         <version>1.2.3</version>
306       </dependency>
307
308       <!-- log4j2 -->
309       <dependency>
310         <groupId>org.apache.logging.log4j</groupId>
311         <artifactId>log4j-bom</artifactId>
312         <version>2.11.2</version>
313         <scope>import</scope>
314         <type>pom</type>
315       </dependency>
316
317       <dependency>
318         <groupId>com.google.guava</groupId>
319         <artifactId>guava</artifactId>
320         <!-- When bumping this version, remember to also change the JavaDoc link in odlparent-lite -->
321         <version>27.1-jre</version>
322         <exclusions>
323           <exclusion>
324             <!-- Do not leak JSR305 onto the classpath by default -->
325             <groupId>com.google.code.findbugs</groupId>
326             <artifactId>jsr305</artifactId>
327           </exclusion>
328         </exclusions>
329       </dependency>
330       <dependency>
331         <groupId>com.google.guava</groupId>
332         <artifactId>guava-testlib</artifactId>
333         <!-- When bumping this version, remember to also change the JavaDoc link in odlparent-lite -->
334         <version>27.1-jre</version>
335         <scope>test</scope>
336         <exclusions>
337           <exclusion>
338             <!-- Do not leak JSR305 onto the classpath by default -->
339             <groupId>com.google.code.findbugs</groupId>
340             <artifactId>jsr305</artifactId>
341           </exclusion>
342         </exclusions>
343       </dependency>
344
345       <!-- Caffeine plus bridges to Guava and JCache -->
346       <dependency>
347         <groupId>com.github.ben-manes.caffeine</groupId>
348         <artifactId>caffeine</artifactId>
349         <version>2.7.0</version>
350       </dependency>
351       <dependency>
352         <groupId>com.github.ben-manes.caffeine</groupId>
353         <artifactId>guava</artifactId>
354         <version>2.7.0</version>
355       </dependency>
356
357       <dependency>
358         <groupId>com.mycila.guice.extensions</groupId>
359         <artifactId>mycila-guice-jsr250</artifactId>
360         <!-- Make sure this version is in sync with the guice one below -->
361         <version>4.0.rc1</version>
362       </dependency>
363       <dependency>
364         <groupId>com.google.inject</groupId>
365         <artifactId>guice</artifactId>
366         <!-- Make sure this version is in sync with the one used by mycila-guice-jsr250 above
367              by checking it here: https://github.com/mycila/guice/blob/master/pom.xml#L103.
368
369              Well, mycila is dead as a dodo and we need to support Java 11. This is the best
370              we can do in the interim. -->
371         <version>4.2.2</version>
372       </dependency>
373       <dependency>
374         <groupId>commons-beanutils</groupId>
375         <artifactId>commons-beanutils</artifactId>
376         <version>1.9.4</version>
377       </dependency>
378       <dependency>
379         <groupId>org.apache.commons</groupId>
380         <artifactId>commons-lang3</artifactId>
381         <!-- When bumping this version, remember to also change the JavaDoc link in odlparent-lite -->
382         <version>3.9</version>
383       </dependency>
384       <dependency>
385         <groupId>org.apache.commons</groupId>
386         <artifactId>commons-text</artifactId>
387         <version>1.8</version>
388       </dependency>
389       <dependency>
390         <groupId>commons-lang</groupId>
391         <artifactId>commons-lang</artifactId>
392         <!-- When bumping this version, remember to also change the JavaDoc link in odlparent-lite -->
393         <version>2.6</version>
394       </dependency>
395       <dependency>
396         <groupId>commons-codec</groupId>
397         <artifactId>commons-codec</artifactId>
398         <version>1.13</version>
399       </dependency>
400       <!-- Jersey for JAXRS -->
401       <dependency>
402         <groupId>javax.ws.rs</groupId>
403         <artifactId>javax.ws.rs-api</artifactId>
404         <version>2.0.1</version>
405       </dependency>
406       <dependency>
407         <groupId>org.glassfish.jersey</groupId>
408         <artifactId>jersey-bom</artifactId>
409         <version>2.25.1</version>
410         <type>pom</type>
411         <scope>import</scope>
412       </dependency>
413       <dependency>
414         <groupId>org.glassfish</groupId>
415         <artifactId>javax.json</artifactId>
416         <version>1.1.2</version>
417       </dependency>
418
419       <dependency>
420         <groupId>org.checkerframework</groupId>
421         <artifactId>checker-qual</artifactId>
422         <version>2.5.8</version>
423       </dependency>
424       <dependency>
425         <groupId>com.google.errorprone</groupId>
426         <artifactId>error_prone_annotations</artifactId>
427         <version>2.3.3</version>
428       </dependency>
429
430       <dependency>
431         <groupId>javax.activation</groupId>
432         <artifactId>activation</artifactId>
433         <version>1.1.1</version>
434       </dependency>
435       <dependency>
436         <groupId>javax.annotation</groupId>
437         <artifactId>javax.annotation-api</artifactId>
438         <version>1.3</version>
439         <optional>true</optional>
440       </dependency>
441       <dependency>
442         <groupId>xml-apis</groupId>
443         <artifactId>xml-apis</artifactId>
444         <version>1.4.01</version>
445       </dependency>
446
447       <dependency>
448         <groupId>org.apache.shiro</groupId>
449         <artifactId>shiro-core</artifactId>
450         <version>1.3.2</version>
451       </dependency>
452       <dependency>
453         <groupId>org.apache.shiro</groupId>
454         <artifactId>shiro-web</artifactId>
455         <version>1.3.2</version>
456       </dependency>
457
458       <!-- Plugin integration -->
459       <dependency>
460         <groupId>net.java.dev.stax-utils</groupId>
461         <artifactId>stax-utils</artifactId>
462         <version>20070216</version>
463       </dependency>
464       <dependency>
465         <groupId>org.sonatype.plexus</groupId>
466         <artifactId>plexus-build-api</artifactId>
467         <version>0.0.7</version>
468       </dependency>
469       <dependency>
470         <groupId>org.codehaus.plexus</groupId>
471         <artifactId>plexus-slf4j-logging</artifactId>
472         <version>1.1</version>
473       </dependency>
474
475       <!-- These three need to be consistent:
476         jackson-2.9.10 needs woodstox-5.3.x
477         woodstox-5.3 needs stax2-api-4.2.x
478         -->
479       <dependency>
480         <groupId>org.codehaus.woodstox</groupId>
481         <artifactId>stax2-api</artifactId>
482         <version>4.2</version>
483       </dependency>
484       <dependency>
485         <groupId>com.fasterxml.woodstox</groupId>
486         <artifactId>woodstox-core</artifactId>
487         <version>5.3.0</version>
488       </dependency>
489       <dependency>
490         <groupId>com.fasterxml.jackson</groupId>
491         <artifactId>jackson-bom</artifactId>
492         <version>2.9.10</version>
493         <scope>import</scope>
494         <type>pom</type>
495       </dependency>
496
497       <dependency>
498         <groupId>com.github.spotbugs</groupId>
499         <artifactId>spotbugs-annotations</artifactId>
500         <version>3.1.12</version>
501         <scope>provided</scope>
502         <!-- Contains retention=RUNTIME annotations, which are not really needed -->
503         <optional>true</optional>
504         <exclusions>
505           <exclusion>
506             <groupId>com.google.code.findbugs</groupId>
507             <artifactId>jsr305</artifactId>
508           </exclusion>
509         </exclusions>
510       </dependency>
511
512       <dependency>
513         <groupId>org.eclipse.jdt</groupId>
514         <artifactId>org.eclipse.jdt.annotation</artifactId>
515         <version>2.2.100</version>
516         <scope>provided</scope>
517       </dependency>
518       <dependency>
519         <groupId>com.google.code.gson</groupId>
520         <artifactId>gson</artifactId>
521         <version>2.8.6</version>
522       </dependency>
523       <dependency>
524         <groupId>commons-fileupload</groupId>
525         <artifactId>commons-fileupload</artifactId>
526         <version>1.4</version>
527       </dependency>
528       <dependency>
529         <groupId>commons-io</groupId>
530         <artifactId>commons-io</artifactId>
531         <version>2.6</version>
532       </dependency>
533       <dependency>
534         <groupId>commons-net</groupId>
535         <artifactId>commons-net</artifactId>
536         <version>3.6</version>
537       </dependency>
538
539       <!-- Netty -->
540       <dependency>
541         <groupId>io.netty</groupId>
542         <artifactId>netty-all</artifactId>
543         <!-- If these are updated, the version in features.xml needs to be changed too -->
544         <!-- When bumping this version, remember to also change the JavaDoc link in odlparent-lite -->
545         <version>4.1.42.Final</version>
546       </dependency>
547       <dependency>
548         <groupId>io.netty</groupId>
549         <artifactId>netty-buffer</artifactId>
550         <version>4.1.42.Final</version>
551       </dependency>
552       <dependency>
553         <groupId>io.netty</groupId>
554         <artifactId>netty-codec</artifactId>
555         <version>4.1.42.Final</version>
556       </dependency>
557       <dependency>
558         <groupId>io.netty</groupId>
559         <artifactId>netty-codec-http</artifactId>
560         <version>4.1.42.Final</version>
561       </dependency>
562       <dependency>
563         <groupId>io.netty</groupId>
564         <artifactId>netty-common</artifactId>
565         <version>4.1.42.Final</version>
566       </dependency>
567       <dependency>
568         <groupId>io.netty</groupId>
569         <artifactId>netty-handler</artifactId>
570         <version>4.1.42.Final</version>
571       </dependency>
572       <dependency>
573         <groupId>io.netty</groupId>
574         <artifactId>netty-transport</artifactId>
575         <version>4.1.42.Final</version>
576       </dependency>
577       <!-- Here we need to define all available native epoll implementations; we can't limit ourselves to the build
578       platform and we can't require the build platform to have an implementation (e.g. OS X) -->
579       <dependency>
580         <groupId>io.netty</groupId>
581         <artifactId>netty-transport-native-epoll</artifactId>
582         <classifier>linux-x86_64</classifier>
583         <version>4.1.42.Final</version>
584       </dependency>
585       <dependency>
586         <groupId>javax.ws.rs</groupId>
587         <artifactId>jsr311-api</artifactId>
588         <version>1.1.1</version>
589       </dependency>
590       <dependency>
591         <groupId>javax.servlet</groupId>
592         <artifactId>javax.servlet-api</artifactId>
593         <version>3.1.0</version>
594       </dependency>
595       <dependency>
596         <groupId>org.apache.felix</groupId>
597         <artifactId>org.apache.felix.dependencymanager</artifactId>
598         <version>4.4.1</version>
599       </dependency>
600       <dependency>
601         <groupId>org.apache.felix</groupId>
602         <artifactId>org.apache.felix.dependencymanager.shell</artifactId>
603         <version>4.0.6</version>
604       </dependency>
605       <dependency>
606         <groupId>org.apache.felix</groupId>
607         <artifactId>org.apache.felix.metatype</artifactId>
608         <version>1.2.2</version>
609       </dependency>
610       <dependency>
611         <groupId>org.bouncycastle</groupId>
612         <artifactId>bcpkix-jdk15on</artifactId>
613         <version>${bouncycastle.version}</version>
614       </dependency>
615       <dependency>
616         <groupId>org.bouncycastle</groupId>
617         <artifactId>bcprov-jdk15on</artifactId>
618         <version>${bouncycastle.version}</version>
619       </dependency>
620       <dependency>
621         <groupId>org.bouncycastle</groupId>
622         <artifactId>bcprov-ext-jdk15on</artifactId>
623         <version>${bouncycastle.version}</version>
624       </dependency>
625
626       <dependency>
627         <groupId>com.webcohesion.enunciate</groupId>
628         <artifactId>enunciate-core-annotations</artifactId>
629         <!-- This must be aligned with the version of enunciate-maven-plugin specified below -->
630         <version>2.11.1</version>
631       </dependency>
632
633       <dependency>
634         <groupId>org.codehaus.jettison</groupId>
635         <artifactId>jettison</artifactId>
636         <version>1.4.0</version>
637       </dependency>
638       <!-- To upgrade org.eclipse.persistence dependencies to 2.6.0+, we need to ensure all downstreams consumers
639          pull in javax.validation first:
640          http://stackoverflow.com/questions/28568154/how-to-get-eclipselink-2-6-0-m3-working-with-jersey-1-18-3 -->
641       <dependency>
642         <groupId>org.eclipse.persistence</groupId>
643         <artifactId>org.eclipse.persistence.antlr</artifactId>
644         <version>2.7.3</version>
645       </dependency>
646       <dependency>
647         <groupId>org.eclipse.persistence</groupId>
648         <artifactId>org.eclipse.persistence.core</artifactId>
649         <version>2.7.3</version>
650       </dependency>
651       <dependency>
652         <groupId>org.eclipse.persistence</groupId>
653         <artifactId>org.eclipse.persistence.moxy</artifactId>
654         <version>2.7.3</version>
655       </dependency>
656       <dependency>
657         <groupId>javax.validation</groupId>
658         <artifactId>validation-api</artifactId>
659         <version>1.1.0.Final</version>
660       </dependency>
661       <dependency>
662         <groupId>org.javassist</groupId>
663         <artifactId>javassist</artifactId>
664         <version>3.26.0-GA</version>
665       </dependency>
666       <dependency>
667         <groupId>org.jboss.spec.javax.transaction</groupId>
668         <artifactId>jboss-transaction-api_1.1_spec</artifactId>
669         <version>1.0.1.Final</version>
670       </dependency>
671       <dependency>
672         <groupId>org.jolokia</groupId>
673         <artifactId>jolokia-osgi</artifactId>
674         <version>1.6.2</version>
675       </dependency>
676       <dependency>
677         <groupId>org.osgi</groupId>
678         <artifactId>osgi.cmpn</artifactId>
679         <version>6.0.0</version>
680         <scope>provided</scope>
681       </dependency>
682       <dependency>
683         <groupId>org.osgi</groupId>
684         <artifactId>org.osgi.core</artifactId>
685         <version>6.0.0</version>
686         <scope>provided</scope>
687       </dependency>
688       <dependency>
689         <groupId>org.osgi</groupId>
690         <!-- for https://bugs.opendaylight.org/show_bug.cgi?id=4290 -->
691         <artifactId>org.osgi.service.event</artifactId>
692         <version>1.3.1</version>
693       </dependency>
694       <dependency>
695         <groupId>org.apache.aries.quiesce</groupId>
696         <artifactId>org.apache.aries.quiesce.api</artifactId>
697         <version>1.0.0</version>
698       </dependency>
699       <dependency>
700         <groupId>org.ow2.asm</groupId>
701         <artifactId>asm</artifactId>
702         <version>7.0</version>
703       </dependency>
704
705       <!-- Configuration library -->
706       <!-- This needs to be kept in sync with the version used by akka -->
707       <dependency>
708         <groupId>com.typesafe</groupId>
709         <artifactId>config</artifactId>
710         <version>1.3.3</version>
711       </dependency>
712
713       <!-- Reactive Streams, used by Akka -->
714       <dependency>
715         <groupId>org.reactivestreams</groupId>
716         <artifactId>reactive-streams</artifactId>
717         <version>1.0.3</version>
718       </dependency>
719
720       <!-- Akka -->
721       <dependency>
722         <groupId>com.typesafe</groupId>
723         <artifactId>ssl-config-core_2.12</artifactId>
724         <version>0.3.8</version>
725       </dependency>
726       <dependency>
727         <groupId>com.typesafe.akka</groupId>
728         <artifactId>akka-actor_2.12</artifactId>
729         <!-- When bumping this version, remember to also change the JavaDoc link in odlparent-lite -->
730         <version>2.5.26</version>
731       </dependency>
732       <dependency>
733         <groupId>com.typesafe.akka</groupId>
734         <artifactId>akka-cluster_2.12</artifactId>
735         <version>2.5.26</version>
736       </dependency>
737       <dependency>
738         <groupId>com.typesafe.akka</groupId>
739         <artifactId>akka-osgi_2.12</artifactId>
740         <version>2.5.26</version>
741       </dependency>
742       <dependency>
743         <groupId>com.typesafe.akka</groupId>
744         <artifactId>akka-persistence_2.12</artifactId>
745         <version>2.5.26</version>
746       </dependency>
747       <dependency>
748         <groupId>com.typesafe.akka</groupId>
749         <artifactId>akka-persistence-tck_2.12</artifactId>
750         <version>2.5.26</version>
751         <scope>test</scope>
752       </dependency>
753       <dependency>
754         <groupId>com.typesafe.akka</groupId>
755         <artifactId>akka-protobuf_2.12</artifactId>
756         <version>2.5.26</version>
757       </dependency>
758       <dependency>
759         <groupId>com.typesafe.akka</groupId>
760         <artifactId>akka-remote_2.12</artifactId>
761         <version>2.5.26</version>
762       </dependency>
763       <dependency>
764         <groupId>com.typesafe.akka</groupId>
765         <artifactId>akka-slf4j_2.12</artifactId>
766         <version>2.5.26</version>
767       </dependency>
768       <dependency>
769         <groupId>com.typesafe.akka</groupId>
770         <artifactId>akka-stream_2.12</artifactId>
771         <version>2.5.26</version>
772       </dependency>
773       <dependency>
774         <groupId>com.typesafe.akka</groupId>
775         <artifactId>akka-testkit_2.12</artifactId>
776         <version>2.5.26</version>
777         <scope>test</scope>
778       </dependency>
779       <dependency>
780         <groupId>org.scala-lang.modules</groupId>
781         <artifactId>scala-java8-compat_2.12</artifactId>
782         <version>0.8.0</version>
783       </dependency>
784       <dependency>
785         <groupId>org.scala-lang.modules</groupId>
786         <artifactId>scala-parser-combinators_2.12</artifactId>
787         <version>1.1.2</version>
788       </dependency>
789       <dependency>
790         <groupId>org.uncommons.maths</groupId>
791         <artifactId>uncommons-maths</artifactId>
792         <version>1.2.2a</version>
793       </dependency>
794
795       <!-- Aeron, required by Akka -->
796       <dependency>
797         <groupId>org.agrona</groupId>
798         <artifactId>agrona</artifactId>
799         <version>0.9.33</version>
800       </dependency>
801       <dependency>
802         <groupId>io.aeron</groupId>
803         <artifactId>aeron-client</artifactId>
804         <version>1.15.3</version>
805       </dependency>
806       <dependency>
807         <groupId>io.aeron</groupId>
808         <artifactId>aeron-driver</artifactId>
809         <version>1.15.3</version>
810       </dependency>
811
812       <!-- Scala -->
813       <dependency>
814         <groupId>org.scala-lang</groupId>
815         <artifactId>scala-library</artifactId>
816         <version>2.12.10</version>
817       </dependency>
818       <dependency>
819         <groupId>org.scala-lang</groupId>
820         <artifactId>scala-reflect</artifactId>
821         <version>2.12.10</version>
822       </dependency>
823
824       <!-- LMAX Disruptor -->
825       <dependency>
826         <groupId>com.lmax</groupId>
827         <artifactId>disruptor</artifactId>
828         <version>3.4.2</version>
829       </dependency>
830
831       <!-- Add Pax Exam -->
832       <dependency>
833         <groupId>org.ops4j.pax.exam</groupId>
834         <artifactId>pax-exam</artifactId>
835         <version>4.13.1</version>
836         <scope>test</scope>
837       </dependency>
838       <dependency>
839         <groupId>org.ops4j.pax.exam</groupId>
840         <artifactId>pax-exam-container-forked</artifactId>
841         <version>4.13.1</version>
842         <scope>test</scope>
843       </dependency>
844       <dependency>
845         <groupId>org.ops4j.pax.exam</groupId>
846         <artifactId>pax-exam-container-karaf</artifactId>
847         <version>4.13.1</version>
848         <scope>test</scope>
849       </dependency>
850       <dependency>
851         <groupId>org.ops4j.pax.exam</groupId>
852         <artifactId>pax-exam-container-native</artifactId>
853         <version>4.13.1</version>
854         <scope>test</scope>
855       </dependency>
856       <dependency>
857         <groupId>org.ops4j.pax.exam</groupId>
858         <artifactId>pax-exam-extender-service</artifactId>
859         <version>4.13.1</version>
860         <scope>test</scope>
861       </dependency>
862       <dependency>
863         <groupId>org.ops4j.pax.exam</groupId>
864         <artifactId>pax-exam-inject</artifactId>
865         <version>4.13.1</version>
866         <scope>test</scope>
867       </dependency>
868       <dependency>
869         <groupId>org.ops4j.pax.exam</groupId>
870         <artifactId>pax-exam-invoker-junit</artifactId>
871         <version>4.13.1</version>
872         <scope>test</scope>
873       </dependency>
874       <dependency>
875         <groupId>org.ops4j.pax.exam</groupId>
876         <artifactId>pax-exam-features</artifactId>
877         <version>4.13.1</version>
878         <type>xml</type>
879         <scope>test</scope>
880       </dependency>
881       <dependency>
882         <groupId>org.ops4j.pax.exam</groupId>
883         <artifactId>pax-exam-junit4</artifactId>
884         <version>4.13.1</version>
885         <scope>test</scope>
886       </dependency>
887       <dependency>
888         <groupId>org.ops4j.pax.exam</groupId>
889         <artifactId>pax-exam-link-mvn</artifactId>
890         <version>4.13.1</version>
891         <scope>test</scope>
892       </dependency>
893       <dependency>
894         <groupId>org.ops4j.pax.exam</groupId>
895         <artifactId>pax-exam-link-assembly</artifactId>
896         <version>4.13.1</version>
897         <scope>test</scope>
898       </dependency>
899
900       <dependency>
901         <groupId>org.ops4j.pax.url</groupId>
902         <artifactId>pax-url-link</artifactId>
903         <version>2.5.4</version>
904         <scope>test</scope>
905       </dependency>
906       <dependency>
907         <groupId>org.ops4j.pax.url</groupId>
908         <artifactId>pax-url-aether</artifactId>
909         <version>2.5.4</version>
910         <scope>test</scope>
911       </dependency>
912       <dependency>
913         <groupId>org.ops4j.pax.url</groupId>
914         <artifactId>pax-url-wrap</artifactId>
915         <version>2.5.4</version>
916       </dependency>
917
918       <dependency>
919         <groupId>org.ops4j.pax.web</groupId>
920         <artifactId>pax-web-api</artifactId>
921         <!-- Note: keep this version synchronized with karaf -->
922         <version>7.2.10</version>
923       </dependency>
924
925       <dependency>
926         <groupId>org.springframework.osgi</groupId>
927         <artifactId>spring-osgi-mock</artifactId>
928         <version>1.2.1</version>
929         <scope>test</scope>
930       </dependency>
931
932       <dependency>
933         <groupId>org.xmlunit</groupId>
934         <artifactId>xmlunit-core</artifactId>
935         <version>2.6.3</version>
936         <scope>test</scope>
937       </dependency>
938       <dependency>
939         <groupId>org.xmlunit</groupId>
940         <artifactId>xmlunit-assertj</artifactId>
941         <version>2.6.3</version>
942         <scope>test</scope>
943       </dependency>
944       <dependency>
945         <groupId>org.xmlunit</groupId>
946         <artifactId>xmlunit-matchers</artifactId>
947         <version>2.6.3</version>
948         <scope>test</scope>
949       </dependency>
950       <!-- FIXME: remove this once we have migrated over -->
951       <dependency>
952         <groupId>org.xmlunit</groupId>
953         <artifactId>xmlunit-legacy</artifactId>
954         <version>2.6.3</version>
955         <scope>test</scope>
956       </dependency>
957
958       <!-- Annotations for modernizer-maven-plugin -->
959       <dependency>
960         <groupId>org.gaul</groupId>
961         <artifactId>modernizer-maven-annotations</artifactId>
962         <!-- This should match the plugin version below -->
963         <version>2.0.0</version>
964         <scope>provided</scope>
965       </dependency>
966
967       <dependency>
968         <groupId>org.eclipse.jetty</groupId>
969         <artifactId>jetty-bom</artifactId>
970         <version>9.4.12.v20180830</version>
971         <scope>import</scope>
972         <type>pom</type>
973       </dependency>
974
975       <dependency>
976         <groupId>com.h2database</groupId>
977         <artifactId>h2</artifactId>
978         <version>1.4.200</version>
979       </dependency>
980
981       <!-- Xtend http://xtend-lang.org
982            NOTE: When you increase the version here,
983            then remember to also increase it for the
984            xtend-maven-plugin below! (We don't want to
985            use a Maven property, in order not to "leak" that.)
986        -->
987       <dependency>
988           <groupId>org.eclipse.xtend</groupId>
989           <artifactId>org.eclipse.xtend.lib</artifactId>
990           <version>2.19.0</version>
991       </dependency>
992       <dependency>
993           <groupId>org.eclipse.xtend</groupId>
994           <artifactId>org.eclipse.xtend.lib.macro</artifactId>
995           <version>2.19.0</version>
996       </dependency>
997       <dependency>
998           <groupId>org.eclipse.xtext</groupId>
999           <artifactId>org.eclipse.xtext.xbase.lib</artifactId>
1000           <version>2.19.0</version>
1001       </dependency>
1002
1003       <!-- Annotations -->
1004       <dependency>
1005         <groupId>javax.inject</groupId>
1006         <artifactId>javax.inject</artifactId>
1007         <version>1</version>
1008         <optional>true</optional>
1009       </dependency>
1010
1011       <!-- jung, a graph library -->
1012       <dependency>
1013         <groupId>net.sf.jung</groupId>
1014         <artifactId>jung-api</artifactId>
1015         <version>2.1.1</version>
1016       </dependency>
1017       <dependency>
1018         <groupId>net.sf.jung</groupId>
1019         <artifactId>jung-algorithms</artifactId>
1020         <version>2.1.1</version>
1021       </dependency>
1022       <dependency>
1023         <groupId>net.sf.jung</groupId>
1024         <artifactId>jung-graph-impl</artifactId>
1025         <version>2.1.1</version>
1026       </dependency>
1027
1028       <!-- Karaf console support -->
1029       <dependency>
1030         <groupId>org.apache.karaf.shell</groupId>
1031         <artifactId>org.apache.karaf.shell.core</artifactId>
1032         <version>${karaf.version}</version>
1033         <scope>provided</scope>
1034       </dependency>
1035       <dependency>
1036         <groupId>org.apache.karaf.shell</groupId>
1037         <artifactId>org.apache.karaf.shell.console</artifactId>
1038         <version>${karaf.version}</version>
1039         <scope>provided</scope>
1040       </dependency>
1041
1042       <!-- ThreeTen-Extra, date/time complements -->
1043       <dependency>
1044         <groupId>org.threeten</groupId>
1045         <artifactId>threeten-extra</artifactId>
1046         <version>1.5.0</version>
1047       </dependency>
1048
1049       <!-- When updating this version, consider antl4-maven-plugin below -->
1050       <dependency>
1051         <groupId>org.antlr</groupId>
1052         <artifactId>antlr4-runtime</artifactId>
1053         <version>4.7.2</version>
1054       </dependency>
1055       <!-- Aries' Blueprint version should be kept in sync to the version actually
1056            used by our ${karaf[4].version} ... please bump this when increasing that.
1057            TODO Find a smarter way to inherit this from a (TBD..) Karaf artifacts BOM! -->
1058       <dependency>
1059         <groupId>org.apache.aries.blueprint</groupId>
1060         <artifactId>org.apache.aries.blueprint.core</artifactId>
1061         <version>1.10.2</version>
1062       </dependency>
1063       <dependency>
1064         <groupId>org.apache.aries.blueprint</groupId>
1065         <artifactId>blueprint-maven-plugin-annotation</artifactId>
1066         <version>1.3.0</version>
1067         <optional>true</optional>
1068       </dependency>
1069
1070       <!-- Apache SSHD with netty -->
1071       <dependency>
1072         <groupId>org.apache.sshd</groupId>
1073         <artifactId>sshd-netty</artifactId>
1074         <version>2.3.0</version>
1075         <exclusions>
1076           <exclusion>
1077             <!-- We provide sshd-osgi instead -->
1078             <groupId>org.apache.sshd</groupId>
1079             <artifactId>sshd-core</artifactId>
1080           </exclusion>
1081         </exclusions>
1082       </dependency>
1083       <dependency>
1084         <groupId>org.apache.sshd</groupId>
1085         <artifactId>sshd-osgi</artifactId>
1086         <version>2.3.0</version>
1087       </dependency>
1088       <dependency>
1089         <groupId>net.i2p.crypto</groupId>
1090         <artifactId>eddsa</artifactId>
1091         <version>0.3.0</version>
1092       </dependency>
1093
1094       <!-- TrieMap library -->
1095       <dependency>
1096         <groupId>tech.pantheon.triemap</groupId>
1097         <artifactId>bom</artifactId>
1098         <version>1.1.0</version>
1099         <scope>import</scope>
1100         <type>pom</type>
1101       </dependency>
1102
1103       <!-- Dropwizard metrics -->
1104       <dependency>
1105         <groupId>io.dropwizard.metrics</groupId>
1106         <artifactId>metrics-bom</artifactId>
1107         <version>4.0.5</version>
1108         <scope>import</scope>
1109         <type>pom</type>
1110       </dependency>
1111
1112       <!-- JAXB for Java 11+, match this with Karaf -->
1113       <dependency>
1114         <groupId>javax.xml.bind</groupId>
1115         <artifactId>jaxb-api</artifactId>
1116         <version>2.3.0</version>
1117       </dependency>
1118       <dependency>
1119         <groupId>org.glassfish.jaxb</groupId>
1120         <artifactId>jaxb-runtime</artifactId>
1121         <version>2.3.1</version>
1122       </dependency>
1123     </dependencies>
1124   </dependencyManagement>
1125
1126   <dependencies>
1127     <!--
1128          We expect slf4j-api to be provided by the platform.
1129          Karaf provides it, other containers need to provide it themselves.
1130     -->
1131     <dependency>
1132       <groupId>org.slf4j</groupId>
1133       <artifactId>slf4j-api</artifactId>
1134       <scope>provided</scope>
1135     </dependency>
1136
1137     <!--
1138           Enable useful code quality annotations everywhere. Since these annotations
1139           are not required at runtime.
1140     -->
1141     <dependency>
1142       <groupId>org.eclipse.jdt</groupId>
1143       <artifactId>org.eclipse.jdt.annotation</artifactId>
1144       <scope>provided</scope>
1145     </dependency>
1146     <dependency>
1147       <groupId>com.github.spotbugs</groupId>
1148       <artifactId>spotbugs-annotations</artifactId>
1149       <scope>provided</scope>
1150       <optional>true</optional>
1151     </dependency>
1152     <dependency>
1153       <groupId>org.gaul</groupId>
1154       <artifactId>modernizer-maven-annotations</artifactId>
1155       <scope>provided</scope>
1156     </dependency>
1157
1158     <!--
1159           Testing output should be routed through slf4j-simple.
1160     -->
1161     <dependency>
1162       <groupId>org.slf4j</groupId>
1163       <artifactId>slf4j-simple</artifactId>
1164       <scope>test</scope>
1165     </dependency>
1166
1167     <!--
1168           Unit tests can use JUnit + Mockito + Hamcrest by default.
1169     -->
1170     <dependency>
1171       <groupId>org.hamcrest</groupId>
1172       <artifactId>hamcrest</artifactId>
1173       <scope>test</scope>
1174     </dependency>
1175     <dependency>
1176       <!-- This dependency needs to come before junit until we upgrade to JUnit 5. -->
1177       <groupId>org.hamcrest</groupId>
1178       <artifactId>hamcrest-library</artifactId>
1179       <scope>test</scope>
1180     </dependency>
1181     <dependency>
1182       <groupId>junit</groupId>
1183       <artifactId>junit</artifactId>
1184       <scope>test</scope>
1185     </dependency>
1186     <dependency>
1187       <groupId>org.mockito</groupId>
1188       <artifactId>mockito-core</artifactId>
1189       <scope>test</scope>
1190     </dependency>
1191   </dependencies>
1192
1193   <build>
1194     <pluginManagement>
1195       <plugins>
1196         <!-- Official maven plugins, alpha-sorted by artifactId.
1197              We do not need to specify the groupId. -->
1198         <plugin>
1199           <artifactId>maven-checkstyle-plugin</artifactId>
1200           <version>3.1.0</version>
1201           <dependencies>
1202             <dependency>
1203               <groupId>com.puppycrawl.tools</groupId>
1204               <artifactId>checkstyle</artifactId>
1205               <!-- This should match the dependency management on com.puppycrawl.tools:checkstyle above -->
1206               <version>8.20</version>
1207             </dependency>
1208             <dependency>
1209               <groupId>org.opendaylight.odlparent</groupId>
1210               <artifactId>checkstyle</artifactId>
1211               <version>6.0.2-SNAPSHOT</version>
1212             </dependency>
1213             <dependency>
1214               <groupId>com.github.sevntu-checkstyle</groupId>
1215               <artifactId>sevntu-checkstyle-maven-plugin</artifactId>
1216               <version>1.35.0</version>
1217             </dependency>
1218           </dependencies>
1219           <configuration>
1220             <configLocation>odl_checks.xml</configLocation>
1221             <suppressionsLocation>checkstyle-suppressions.xml</suppressionsLocation>
1222             <!-- <sourceDirectories> are needed so that checkstyle ignores the
1223                  generated sources directory -->
1224             <sourceDirectories>
1225               <directory>${project.build.sourceDirectory}</directory>
1226             </sourceDirectories>
1227             <includeResources>true</includeResources>
1228             <includeTestSourceDirectory>true</includeTestSourceDirectory>
1229             <includeTestResources>true</includeTestResources>
1230             <includes>**\/*.java, **\/*.xtend</includes>
1231             <excludes>
1232               org/opendaylight/yang/gen/**,
1233               **/protobuff/messages/**,
1234               **/thrift/gen/*.java,
1235               **/module-info.java
1236             </excludes>
1237             <failsOnError>false</failsOnError>
1238             <consoleOutput>true</consoleOutput>
1239           </configuration>
1240           <executions>
1241             <execution>
1242               <id>check-license</id>
1243               <goals>
1244                 <goal>check</goal>
1245               </goals>
1246               <phase>process-sources</phase>
1247               <configuration>
1248                 <configLocation>check-license.xml</configLocation>
1249                 <headerLocation>EPL-LICENSE.regexp.txt</headerLocation>
1250                 <includeResources>false</includeResources>
1251                 <includeTestSourceDirectory>true</includeTestSourceDirectory>
1252                 <includeTestResources>false</includeTestResources>
1253                 <sourceDirectories>
1254                   <directory>${project.build.sourceDirectory}</directory>
1255                 </sourceDirectories>
1256                 <excludes>
1257                   org/opendaylight/yang/gen/**,
1258                   **/protobuff/messages/**,
1259                   **/thrift/gen/*.java
1260                 </excludes>
1261                 <failsOnError>false</failsOnError>
1262                 <consoleOutput>true</consoleOutput>
1263               </configuration>
1264             </execution>
1265             <execution>
1266               <goals>
1267                 <goal>check</goal>
1268               </goals>
1269               <phase>process-sources</phase>
1270               <configuration>
1271                 <failOnViolation>${odlparent.checkstyle.enforce}</failOnViolation>
1272                 <skip>${odlparent.checkstyle.skip}</skip>
1273                 <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
1274               </configuration>
1275             </execution>
1276           </executions>
1277         </plugin>
1278         <plugin>
1279           <groupId>org.apache.maven.plugins</groupId>
1280           <artifactId>maven-pmd-plugin</artifactId>
1281           <version>3.12.0</version>
1282           <executions>
1283             <execution>
1284               <id>cpd</id>
1285               <phase>process-sources</phase>
1286               <goals>
1287                 <goal>cpd-check</goal>
1288               </goals>
1289               <configuration>
1290                 <failOnViolation>${pmd.cpd.fail}</failOnViolation>
1291                 <!-- 100 "tokens" here correspond to approx. 5-10 lines of code -->
1292                 <minimumTokens>101</minimumTokens>
1293                 <printFailingErrors>true</printFailingErrors>
1294                 <excludeRoots>
1295                   <!-- FIXME: this should be a wildcard, but PMD is brain-damaged and does
1296                               not understand path prefixes nor wildcards. Details are available
1297                               at http://stackoverflow.com/questions/15647771/pmd-exclude-not-working
1298                               Hence people introducing new generated sources have to include
1299                               PMD config too.
1300                    -->
1301                   <excludeRoot>${project.build.directory}/generated-sources</excludeRoot>
1302                   <excludeRoot>${project.build.directory}/generated-test-sources</excludeRoot>
1303                 </excludeRoots>
1304                 <linkXRef>false</linkXRef>
1305               </configuration>
1306             </execution>
1307           </executions>
1308         </plugin>
1309         <plugin>
1310           <artifactId>maven-compiler-plugin</artifactId>
1311           <version>3.8.1</version>
1312           <configuration>
1313             <showWarnings>true</showWarnings>
1314             <compilerArgs>
1315               <arg>-parameters</arg>
1316               <arg>-Xlint:deprecation</arg>
1317               <arg>-Xlint:unchecked</arg>
1318             </compilerArgs>
1319             <annotationProcessorPaths>
1320               <dependency>
1321                 <groupId>org.immutables</groupId>
1322                 <artifactId>value</artifactId>
1323                 <!-- Keep this version in sync with dependency declaration above -->
1324                 <version>2.7.5</version>
1325               </dependency>
1326             </annotationProcessorPaths>
1327           </configuration>
1328         </plugin>
1329         <plugin>
1330           <artifactId>maven-enforcer-plugin</artifactId>
1331           <version>${enforcer.version}</version>
1332         </plugin>
1333         <plugin>
1334           <artifactId>maven-failsafe-plugin</artifactId>
1335           <version>2.22.2</version>
1336         </plugin>
1337         <plugin>
1338           <artifactId>maven-invoker-plugin</artifactId>
1339           <version>3.2.0</version>
1340         </plugin>
1341         <plugin>
1342           <artifactId>maven-dependency-plugin</artifactId>
1343           <executions>
1344             <execution>
1345               <id>unpack-license</id>
1346               <phase>generate-resources</phase>
1347               <goals>
1348                 <goal>copy</goal>
1349               </goals>
1350               <configuration>
1351                 <artifactItems>
1352                   <artifactItem>
1353                     <groupId>org.opendaylight.odlparent</groupId>
1354                     <artifactId>odl-license</artifactId>
1355                     <version>6.0.2-SNAPSHOT</version>
1356                     <type>license</type>
1357                     <outputDirectory>${project.build.outputDirectory}</outputDirectory>
1358                     <destFileName>LICENSE</destFileName>
1359                     <overWrite>false</overWrite>
1360                   </artifactItem>
1361                 </artifactItems>
1362                 <silent>true</silent>
1363               </configuration>
1364             </execution>
1365           </executions>
1366         </plugin>
1367
1368         <plugin>
1369           <artifactId>maven-plugin-plugin</artifactId>
1370           <version>3.6.0</version>
1371         </plugin>
1372
1373         <plugin>
1374           <artifactId>maven-remote-resources-plugin</artifactId>
1375           <version>1.6.0</version>
1376         </plugin>
1377         <plugin>
1378           <artifactId>maven-resources-plugin</artifactId>
1379           <version>3.1.0</version>
1380         </plugin>
1381         <plugin>
1382           <artifactId>maven-shade-plugin</artifactId>
1383           <version>3.2.1</version>
1384         </plugin>
1385         <plugin>
1386           <artifactId>maven-source-plugin</artifactId>
1387           <version>3.1.0</version>
1388           <executions>
1389             <execution>
1390               <id>attach-sources</id>
1391               <phase>verify</phase>
1392               <goals>
1393                 <goal>jar-no-fork</goal>
1394               </goals>
1395             </execution>
1396           </executions>
1397         </plugin>
1398         <plugin>
1399           <artifactId>maven-surefire-plugin</artifactId>
1400           <version>2.22.2</version>
1401           <configuration>
1402             <redirectTestOutputToFile>${maven.test.redirectTestOutputToFile}</redirectTestOutputToFile>
1403             <trimStackTrace>false</trimStackTrace>
1404           </configuration>
1405         </plugin>
1406
1407         <!-- Third-party plugins, grouped by groupId, alpha-sorted by artifactId -->
1408         <plugin>
1409           <!-- Support Blueprint XML construction using annotations -->
1410           <groupId>org.apache.aries.blueprint</groupId>
1411           <artifactId>blueprint-maven-plugin</artifactId>
1412           <version>1.10.0</version>
1413           <!-- TODO remove dependencies when we bump from 1.10.0 to 1.11.0 (or 1.10.1);
1414              see https://jira.opendaylight.org/browse/ODLPARENT-167 & https://jira.apache.org/jira/browse/ARIES-1826 -->
1415           <dependencies>
1416             <dependency>
1417               <groupId>org.apache.xbean</groupId>
1418               <artifactId>xbean-finder-shaded</artifactId>
1419               <version>4.14</version>
1420             </dependency>
1421           </dependencies>
1422           <configuration>
1423             <scanPaths>
1424               <scanPath>${project.groupId}</scanPath>
1425             </scanPaths>
1426           </configuration>
1427           <executions>
1428             <execution>
1429               <goals>
1430                 <goal>blueprint-generate</goal>
1431               </goals>
1432             </execution>
1433           </executions>
1434         </plugin>
1435
1436         <plugin>
1437           <groupId>org.apache.felix</groupId>
1438           <artifactId>maven-bundle-plugin</artifactId>
1439           <version>4.2.1</version>
1440           <extensions>true</extensions>
1441           <configuration>
1442             <instructions>
1443               <!-- Note the '-' for git.properties.. this is required because git-commit-id-plugin has <failOnNoGitDirectory>false,
1444                    so that the build doesn't fail if there is no .../.git/ - so git.properties is effectively optional;
1445                    and so the '-' there is needed to make the maven-bundle-plugin if that resource is not present.  -->
1446               <Include-Resource>{maven-resources},${project.build.directory}/classes/LICENSE,META-INF/git.properties=-${project.build.directory}/classes/META-INF/git.properties,META-INF/services=-${project.build.directory}/classes/META-INF/services</Include-Resource>
1447
1448               <!-- Based on https://dev.eclipse.org/mhonarc/lists/equinox-dev/msg01088.html we do want
1449                    to generate Import-Service and Export-Service headers. -->
1450               <_removeheaders>Import-Service,Export-Service</_removeheaders>
1451             </instructions>
1452           </configuration>
1453         </plugin>
1454
1455         <plugin>
1456           <groupId>org.apache.karaf.tooling</groupId>
1457           <artifactId>karaf-maven-plugin</artifactId>
1458           <version>${karaf.version}</version>
1459         </plugin>
1460
1461         <plugin>
1462           <groupId>org.apache.servicemix.tooling</groupId>
1463           <artifactId>depends-maven-plugin</artifactId>
1464           <version>1.4.0</version>
1465           <executions>
1466             <execution>
1467               <id>generate-depends-file</id>
1468               <goals>
1469                 <goal>generate-depends-file</goal>
1470               </goals>
1471             </execution>
1472           </executions>
1473         </plugin>
1474
1475         <plugin>
1476           <groupId>com.webcohesion.enunciate</groupId>
1477           <artifactId>enunciate-maven-plugin</artifactId>
1478           <!-- This must be aligned with the version of enunciate-core-annotations specified above -->
1479           <version>2.11.1</version>
1480         </plugin>
1481
1482         <plugin>
1483           <groupId>org.gaul</groupId>
1484           <artifactId>modernizer-maven-plugin</artifactId>
1485           <version>2.0.0</version>
1486           <configuration>
1487             <javaVersion>${odlparent.modernizer.target}</javaVersion>
1488             <failOnViolations>${odlparent.modernizer.enforce}</failOnViolations>
1489             <skip>${odlparent.modernizer.skip}</skip>
1490           </configuration>
1491
1492           <executions>
1493             <execution>
1494               <id>modernizer</id>
1495               <phase>verify</phase>
1496               <goals>
1497                 <goal>modernizer</goal>
1498               </goals>
1499             </execution>
1500           </executions>
1501         </plugin>
1502
1503         <plugin>
1504           <groupId>com.github.spotbugs</groupId>
1505           <artifactId>spotbugs-maven-plugin</artifactId>
1506           <version>3.1.12.2</version>
1507           <dependencies>
1508             <dependency>
1509               <groupId>com.github.spotbugs</groupId>
1510               <artifactId>spotbugs</artifactId>
1511               <version>3.1.12</version>
1512             </dependency>
1513             <dependency>
1514               <groupId>org.opendaylight.odlparent</groupId>
1515               <artifactId>spotbugs</artifactId>
1516               <version>6.0.2-SNAPSHOT</version>
1517             </dependency>
1518             <dependency>
1519               <!-- The SpotBugs Maven plugin uses SLF4J 1.8 beta 2 -->
1520               <groupId>org.slf4j</groupId>
1521               <artifactId>slf4j-simple</artifactId>
1522               <version>1.8.0-beta2</version>
1523             </dependency>
1524           </dependencies>
1525           <configuration>
1526             <plugins>
1527               <plugin>
1528                 <groupId>jp.skypencil.findbugs.slf4j</groupId>
1529                 <artifactId>bug-pattern</artifactId>
1530                 <!-- NOTE: This version MUST be kept in sync with the same version in the old findbugs-maven-plugin above, if possible -->
1531                 <version>1.4.2</version>
1532               </plugin>
1533             </plugins>
1534             <!--
1535               Enables analysis which takes more memory but finds more bugs.
1536               If you run out of memory, changes the value of the effort element
1537               to 'Low'.
1538             -->
1539             <effort>Max</effort>
1540             <!-- Reports all bugs (other values are medium and max) -->
1541             <threshold>Low</threshold>
1542             <!-- Build doesn't fail if problems are found -->
1543             <failOnError>${odlparent.spotbugs.enforce}</failOnError>
1544             <skip>${odlparent.spotbugs.skip}</skip>
1545             <!-- References the excluded rules -->
1546             <excludeFilterFile>spotbugs-exclude.xml</excludeFilterFile>
1547             <!-- Produces XML report -->
1548             <xmlOutput>true</xmlOutput>
1549             <!-- Configures the directory in which the XML report is created -->
1550             <findbugsXmlOutputDirectory>${project.build.directory}/spotbugs</findbugsXmlOutputDirectory>
1551           </configuration>
1552           <executions>
1553             <!--
1554               Ensures that SpotBugs inspects source code when project is compiled.
1555             -->
1556             <execution>
1557               <id>analyze-compile</id>
1558               <phase>compile</phase>
1559               <goals>
1560                 <goal>check</goal>
1561               </goals>
1562             </execution>
1563           </executions>
1564         </plugin>
1565         <plugin>
1566           <groupId>org.codehaus.mojo</groupId>
1567           <artifactId>properties-maven-plugin</artifactId>
1568           <version>1.0.0</version>
1569         </plugin>
1570         <plugin>
1571           <groupId>org.eclipse.xtend</groupId>
1572           <artifactId>xtend-maven-plugin</artifactId>
1573           <!-- NOTE: This version MUST be kept in sync with the Xtend version in <dependencyManagement> -->
1574           <version>2.19.0</version>
1575           <executions>
1576             <execution>
1577               <goals>
1578                 <goal>compile</goal>
1579                 <goal>testCompile</goal>
1580               </goals>
1581               <configuration>
1582                 <outputDirectory>${project.build.directory}/generated-sources/xtend</outputDirectory>
1583                 <testOutputDirectory>${project.build.directory}/generated-test-sources/xtend</testOutputDirectory>
1584               </configuration>
1585             </execution>
1586           </executions>
1587         </plugin>
1588         <plugin>
1589           <groupId>org.eclipse.m2e</groupId>
1590           <artifactId>lifecycle-mapping</artifactId>
1591           <version>1.0.0</version>
1592           <configuration>
1593             <lifecycleMappingMetadata>
1594               <pluginExecutions>
1595                 <pluginExecution>
1596                   <pluginExecutionFilter>
1597                     <groupId>org.apache.felix</groupId>
1598                     <artifactId>maven-bundle-plugin</artifactId>
1599                     <versionRange>[1.0,)</versionRange>
1600                     <goals>
1601                       <goal>manifest</goal>
1602                     </goals>
1603                   </pluginExecutionFilter>
1604                   <action>
1605                     <execute/>
1606                   </action>
1607                 </pluginExecution>
1608                 <pluginExecution>
1609                   <pluginExecutionFilter>
1610                     <groupId>org.apache.maven.plugins</groupId>
1611                     <artifactId>maven-enforcer-plugin</artifactId>
1612                     <versionRange>[1.0.0,)</versionRange>
1613                     <goals>
1614                       <goal>enforce</goal>
1615                     </goals>
1616                   </pluginExecutionFilter>
1617                   <action>
1618                     <ignore/>
1619                   </action>
1620                 </pluginExecution>
1621                 <pluginExecution>
1622                   <pluginExecutionFilter>
1623                     <groupId>org.apache.maven.plugins</groupId>
1624                     <artifactId>maven-dependency-plugin</artifactId>
1625                     <versionRange>[2.10,)</versionRange>
1626                     <goals>
1627                       <goal>copy</goal>
1628                     </goals>
1629                   </pluginExecutionFilter>
1630                   <action>
1631                     <ignore/>
1632                   </action>
1633                 </pluginExecution>
1634                 <pluginExecution>
1635                   <pluginExecutionFilter>
1636                     <groupId>org.apache.maven.plugins</groupId>
1637                     <artifactId>maven-pmd-plugin</artifactId>
1638                     <versionRange>[3.6,)</versionRange>
1639                     <goals>
1640                       <goal>cpd-check</goal>
1641                     </goals>
1642                   </pluginExecutionFilter>
1643                   <action>
1644                     <ignore/>
1645                   </action>
1646                 </pluginExecution>
1647                 <!-- The plugin will eventually be removed, remove this too at that point -->
1648                 <pluginExecution>
1649                   <pluginExecutionFilter>
1650                     <groupId>org.apache.maven.plugins</groupId>
1651                     <artifactId>maven-antrun-plugin</artifactId>
1652                     <versionRange>[1.8,)</versionRange>
1653                     <goals>
1654                       <goal>run</goal>
1655                     </goals>
1656                   </pluginExecutionFilter>
1657                   <action>
1658                     <ignore/>
1659                   </action>
1660                 </pluginExecution>
1661                 <pluginExecution>
1662                   <pluginExecutionFilter>
1663                     <groupId>org.apache.servicemix.tooling</groupId>
1664                     <artifactId>depends-maven-plugin</artifactId>
1665                     <versionRange>[1.2,)</versionRange>
1666                     <goals>
1667                       <goal>generate-depends-file</goal>
1668                     </goals>
1669                   </pluginExecutionFilter>
1670                   <action>
1671                     <execute/>
1672                   </action>
1673                 </pluginExecution>
1674                 <pluginExecution>
1675                   <pluginExecutionFilter>
1676                     <groupId>org.jacoco</groupId>
1677                     <artifactId>jacoco-maven-plugin</artifactId>
1678                     <versionRange>[0.7.0,)</versionRange>
1679                     <goals>
1680                       <goal>prepare-agent</goal>
1681                     </goals>
1682                   </pluginExecutionFilter>
1683                   <action>
1684                     <ignore/>
1685                   </action>
1686                 </pluginExecution>
1687
1688                 <pluginExecution>
1689                   <pluginExecutionFilter>
1690                     <groupId>org.ops4j.pax.exam</groupId>
1691                     <artifactId>maven-paxexam-plugin</artifactId>
1692                     <versionRange>[1.2.4,)</versionRange>
1693                     <goals>
1694                       <goal>generate-depends-file</goal>
1695                     </goals>
1696                   </pluginExecutionFilter>
1697                   <action>
1698                     <ignore/>
1699                   </action>
1700                 </pluginExecution>
1701
1702                 <pluginExecution>
1703                   <pluginExecutionFilter>
1704                     <groupId>org.basepom.maven</groupId>
1705                     <artifactId>
1706                       duplicate-finder-maven-plugin
1707                     </artifactId>
1708                     <versionRange>[1.2.1,)</versionRange>
1709                     <goals>
1710                       <goal>check</goal>
1711                     </goals>
1712                   </pluginExecutionFilter>
1713                   <action>
1714                     <ignore></ignore>
1715                   </action>
1716                 </pluginExecution>
1717               </pluginExecutions>
1718             </lifecycleMappingMetadata>
1719           </configuration>
1720         </plugin>
1721
1722         <plugin>
1723           <groupId>org.jacoco</groupId>
1724           <artifactId>jacoco-maven-plugin</artifactId>
1725           <configuration>
1726             <!-- Note: This exclusion list should match <sonar.exclusions>
1727                        property above -->
1728             <excludes>
1729               <exclude>**/gen/**</exclude>
1730               <exclude>**/generated-sources/**</exclude>
1731               <exclude>**/generated-test-sources/**</exclude>
1732               <exclude>**/yang-gen/**</exclude>
1733               <exclude>**/yang-gen-config/**</exclude>
1734               <exclude>**/yang-gen-sal/**</exclude>
1735               <exclude>**/yang-gen-code/**</exclude>
1736               <exclude>**/pax/**</exclude>
1737             </excludes>
1738           </configuration>
1739         </plugin>
1740
1741         <plugin>
1742           <groupId>org.ops4j.pax.exam</groupId>
1743           <artifactId>maven-paxexam-plugin</artifactId>
1744           <version>1.2.4</version>
1745         </plugin>
1746
1747         <!-- When updating this version, consider antl4-runtime above -->
1748         <plugin>
1749           <groupId>org.antlr</groupId>
1750           <artifactId>antlr4-maven-plugin</artifactId>
1751           <version>4.7.2</version>
1752         </plugin>
1753       </plugins>
1754     </pluginManagement>
1755
1756     <plugins>
1757       <plugin>
1758         <artifactId>maven-enforcer-plugin</artifactId>
1759         <executions>
1760           <execution>
1761             <id>enforce-banned-dependencies</id>
1762             <goals>
1763               <goal>enforce</goal>
1764             </goals>
1765             <configuration>
1766               <rules>
1767                 <bannedDependencies>
1768                   <message>Please always use mockito-core instead of mockito-all (see https://bugs.opendaylight.org/show_bug.cgi?id=7662), and spotbugs:annotations instead of findbugs:annotations</message>
1769                   <excludes>
1770                     <exclude>org.mockito:mockito-all</exclude>
1771                     <exclude>com.google.code.findbugs:annotations</exclude>
1772                   </excludes>
1773                 </bannedDependencies>
1774               </rules>
1775               <fail>true</fail>
1776             </configuration>
1777           </execution>
1778         </executions>
1779       </plugin>
1780       <plugin>
1781         <groupId>org.basepom.maven</groupId>
1782         <artifactId>duplicate-finder-maven-plugin</artifactId>
1783         <version>1.3.0</version>
1784         <executions>
1785           <execution>
1786             <id>find-duplicate-classpath-entries</id>
1787             <phase>verify</phase>
1788             <goals>
1789               <goal>check</goal>
1790             </goals>
1791           </execution>
1792         </executions>
1793         <configuration>
1794             <!-- https://github.com/basepom/duplicate-finder-maven-plugin/wiki -->
1795             <failBuildInCaseOfConflict>false</failBuildInCaseOfConflict>
1796             <failBuildInCaseOfDifferentContentConflict>true</failBuildInCaseOfDifferentContentConflict>
1797             <failBuildInCaseOfEqualContentConflict>false</failBuildInCaseOfEqualContentConflict>
1798             <printEqualFiles>false</printEqualFiles>
1799             <quiet>true</quiet>
1800             <!-- In addition to https://github.com/basepom/duplicate-finder-maven-plugin/wiki/Default%20ignored%20elements,
1801                  as explained on https://github.com/basepom/duplicate-finder-maven-plugin/wiki/Ignoring%20Dependencies%20and%20Resources,
1802                  we use resources not dependencies (see https://github.com/basepom/duplicate-finder-maven-plugin/wiki/Classpath%20Exceptions)
1803                  also ignore: -->
1804             <ignoredResourcePatterns>
1805               <ignoredResourcePattern>org/opendaylight/blueprint/.*\.xml$</ignoredResourcePattern>
1806               <ignoredResourcePattern>OSGI-OPT/bnd.bnd$</ignoredResourcePattern>
1807               <ignoredResourcePattern>WEB-INF/web.xml</ignoredResourcePattern>
1808               <ignoredResourcePattern>README.*$</ignoredResourcePattern>
1809               <ignoredResourcePattern>.*\.html$</ignoredResourcePattern>
1810               <ignoredResourcePattern>reference.conf</ignoredResourcePattern>
1811             </ignoredResourcePatterns>
1812             <ignoredClassPatterns>
1813               <ignoredClassPattern>META-INF.versions.*$</ignoredClassPattern>
1814             </ignoredClassPatterns>
1815             <ignoredDependencies>
1816               <ignoredDependency>
1817                 <groupId>org.slf4j</groupId>
1818                 <artifactId>slf4j-simple</artifactId>
1819               </ignoredDependency>
1820               <ignoredDependency>
1821                 <groupId>org.opendaylight.odlparent</groupId>
1822                 <artifactId>opendaylight-karaf-empty</artifactId>
1823               </ignoredDependency>
1824             </ignoredDependencies>
1825         </configuration>
1826       </plugin>
1827       <plugin>
1828         <artifactId>maven-dependency-plugin</artifactId>
1829       </plugin>
1830       <plugin>
1831         <artifactId>maven-checkstyle-plugin</artifactId>
1832       </plugin>
1833       <plugin>
1834           <artifactId>maven-pmd-plugin</artifactId>
1835       </plugin>
1836       <plugin>
1837         <artifactId>maven-source-plugin</artifactId>
1838       </plugin>
1839       <plugin>
1840         <artifactId>maven-javadoc-plugin</artifactId>
1841       </plugin>
1842       <plugin>
1843         <groupId>org.gaul</groupId>
1844         <artifactId>modernizer-maven-plugin</artifactId>
1845       </plugin>
1846       <plugin>
1847         <groupId>com.github.spotbugs</groupId>
1848         <artifactId>spotbugs-maven-plugin</artifactId>
1849       </plugin>
1850
1851       <!-- Jacoco / Sonar -->
1852       <plugin>
1853         <groupId>org.jacoco</groupId>
1854         <artifactId>jacoco-maven-plugin</artifactId>
1855         <executions>
1856           <execution>
1857             <id>pre-unit-test</id>
1858             <goals>
1859               <goal>prepare-agent</goal>
1860             </goals>
1861             <configuration>
1862               <destFile>${jacoco.destFile}</destFile>
1863             </configuration>
1864           </execution>
1865         </executions>
1866       </plugin>
1867
1868       <plugin>
1869         <groupId>com.alexecollins.maven.plugin</groupId>
1870         <artifactId>script-maven-plugin</artifactId>
1871         <version>1.0.0</version>
1872         <executions>
1873            <execution>
1874              <phase>prepare-package</phase>
1875              <goals>
1876                <goal>execute</goal>
1877              </goals>
1878              <configuration>
1879                <script>
1880                  // BeanShell is 2005-ish and thus doesn't support generics, varargs, try-with-resources or lambdas, so:
1881                  // (If we do this kind of inline code in pom.xml more often, we shold have a new simple module in
1882                  //  odl-parent, which has *.java that we compile, and then just depend on it here and call one-line
1883                  //  static class methods only - it will be MUCH easier to write!)
1884                  void copy(File root, String glob, File target) {
1885                      java.nio.file.DirectoryStream dirStream = java.nio.file.Files.newDirectoryStream(root.toPath(), glob);
1886                      Iterator dirStreamIterator = dirStream.iterator();
1887                      while (dirStreamIterator.hasNext()) {
1888                          java.nio.file.Path path = dirStreamIterator.next();
1889                          java.nio.file.Files.copy(path, new File(target, path.toFile().getName()).toPath(),
1890                              new java.nio.file.CopyOption[] {
1891                                  java.nio.file.StandardCopyOption.REPLACE_EXISTING,
1892                                  java.nio.file.StandardCopyOption.COPY_ATTRIBUTES
1893                              }
1894                          );
1895                      }
1896                      dirStream.close();
1897                  }
1898
1899                  File gitRepoRootDir = project.basedir;
1900                  while (!new File(gitRepoRootDir, ".git").exists() &amp;&amp; gitRepoRootDir.getParentFile() != null) {
1901                      gitRepoRootDir = gitRepoRootDir.getParentFile();
1902                  }
1903
1904                  File target = new File(project.build.outputDirectory);
1905                  target.mkdirs();
1906                  copy(gitRepoRootDir, "README*", target);
1907                  copy(gitRepoRootDir, "CONTRIBUTING*", target);
1908                  copy(gitRepoRootDir, "PROJECT_INFO.yaml", target);
1909                </script>
1910              </configuration>
1911            </execution>
1912          </executions>
1913          <dependencies>
1914            <dependency>
1915              <groupId>org.apache-extras.beanshell</groupId>
1916              <artifactId>bsh</artifactId>
1917              <version>2.0b6</version>
1918            </dependency>
1919          </dependencies>
1920       </plugin>
1921     </plugins>
1922   </build>
1923
1924   <reporting>
1925     <plugins>
1926       <plugin>
1927         <artifactId>maven-checkstyle-plugin</artifactId>
1928         <version>3.1.0</version>
1929       </plugin>
1930
1931       <!-- FIXME: activate this
1932       <plugin>
1933         <artifactId>maven-project-info-reports-plugin</artifactId>
1934         <version>${projectinfo}</version>
1935       </plugin-->
1936       <plugin>
1937         <groupId>org.codehaus.mojo</groupId>
1938         <artifactId>jdepend-maven-plugin</artifactId>
1939         <reportSets>
1940           <reportSet>
1941             <reports>
1942               <report>generate-no-fork</report>
1943             </reports>
1944           </reportSet>
1945         </reportSets>
1946       </plugin>
1947     </plugins>
1948   </reporting>
1949 </project>
1950