|
589 | 589 | <commons.encoding>utf-8</commons.encoding>
|
590 | 590 |
|
591 | 591 | <checkstyle.plugin.version>3.0.0</checkstyle.plugin.version>
|
| 592 | + <spotbugs.plugin.version>3.1.6</spotbugs.plugin.version> |
592 | 593 | <japicmp.skip>false</japicmp.skip>
|
593 | 594 |
|
594 | 595 | <!-- JMH Benchmark related properties, version, target compiler and name of the benchmarking uber jar. -->
|
|
611 | 612 |
|
612 | 613 |
|
613 | 614 | <build>
|
614 |
| - <defaultGoal>clean verify apache-rat:check clirr:check checkstyle:check findbugs:check javadoc:javadoc</defaultGoal> |
| 615 | + <defaultGoal>clean verify apache-rat:check clirr:check checkstyle:check spotbugs:check javadoc:javadoc</defaultGoal> |
615 | 616 | <pluginManagement>
|
616 | 617 | <plugins>
|
617 | 618 | <plugin>
|
|
703 | 704 | </configuration>
|
704 | 705 | </plugin>
|
705 | 706 | <plugin>
|
706 |
| - <groupId>org.codehaus.mojo</groupId> |
707 |
| - <artifactId>findbugs-maven-plugin</artifactId> |
708 |
| - <!-- Use version from parent pom as that is adjusted according to the Java version used to run Maven --> |
709 |
| - <version>${commons.findbugs.version}</version> |
| 707 | + <groupId>com.github.spotbugs</groupId> |
| 708 | + <artifactId>spotbugs-maven-plugin</artifactId> |
| 709 | + <version>${spotbugs.plugin.version}</version> |
710 | 710 | <configuration>
|
711 |
| - <excludeFilterFile>${basedir}/findbugs-exclude-filter.xml</excludeFilterFile> |
| 711 | + <excludeFilterFile>${basedir}/spotbugs-exclude-filter.xml</excludeFilterFile> |
712 | 712 | </configuration>
|
713 | 713 | </plugin>
|
714 | 714 | </plugins>
|
|
735 | 735 | </plugin>
|
736 | 736 | <!-- Requires setting 'export MAVEN_OPTS="-Xmx512m -XX:MaxPermSize=128m" ' -->
|
737 | 737 | <plugin>
|
738 |
| - <groupId>org.codehaus.mojo</groupId> |
739 |
| - <artifactId>findbugs-maven-plugin</artifactId> |
740 |
| - <!-- Use version from parent pom as that is adjusted according to the Java version used to run Maven --> |
741 |
| - <version>${commons.findbugs.version}</version> |
| 738 | + <groupId>com.github.spotbugs</groupId> |
| 739 | + <artifactId>spotbugs-maven-plugin</artifactId> |
| 740 | + <version>${spotbugs.plugin.version}</version> |
742 | 741 | <configuration>
|
743 |
| - <excludeFilterFile>${basedir}/findbugs-exclude-filter.xml</excludeFilterFile> |
| 742 | + <excludeFilterFile>${basedir}/spotbugs-exclude-filter.xml</excludeFilterFile> |
744 | 743 | </configuration>
|
745 | 744 | </plugin>
|
746 | 745 | <plugin>
|
|
0 commit comments