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