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