This is an automated email from the ASF dual-hosted git repository.
ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-io.git
The following commit(s) were added to refs/heads/master by this push:
new cddd233 Replace FindBugs with SpotBugs.
cddd233 is described below
commit cddd2337547194efb4683c4ebe2814c96b213b49
Author: Gary Gregory <[email protected]>
AuthorDate: Wed Jul 1 11:52:51 2020 -0400
Replace FindBugs with SpotBugs.
---
pom.xml | 27 +++++++++++++++++++++------
sb-excludes.xml | 21 +++++++++++++++++++++
2 files changed, 42 insertions(+), 6 deletions(-)
diff --git a/pom.xml b/pom.xml
index e4ed5f6..c3b2c41 100644
--- a/pom.xml
+++ b/pom.xml
@@ -294,6 +294,8 @@ file comparators, endian transformation classes, and much
more.
<commons.jacoco.version>0.8.5</commons.jacoco.version>
<commons.surefire.version>2.22.2</commons.surefire.version>
<commons.japicmp.version>0.14.3</commons.japicmp.version>
+ <spotbugs.plugin.version>4.0.0</spotbugs.plugin.version>
+ <spotbugs.impl.version>4.0.6</spotbugs.impl.version>
<japicmp.skip>false</japicmp.skip>
<jacoco.skip>${env.JACOCO_SKIP}</jacoco.skip>
<commons.release.isDistModule>true</commons.release.isDistModule>
@@ -388,6 +390,21 @@ file comparators, endian transformation classes, and much
more.
</ignorePathsToDelete>
</configuration>
</plugin>
+ <plugin>
+ <groupId>com.github.spotbugs</groupId>
+ <artifactId>spotbugs-maven-plugin</artifactId>
+ <version>${spotbugs.plugin.version}</version>
+ <dependencies>
+ <dependency>
+ <groupId>com.github.spotbugs</groupId>
+ <artifactId>spotbugs</artifactId>
+ <version>${spotbugs.impl.version}</version>
+ </dependency>
+ </dependencies>
+ <configuration>
+ <excludeFilterFile>${basedir}/sb-excludes.xml</excludeFilterFile>
+ </configuration>
+ </plugin>
</plugins>
</build>
@@ -403,13 +420,11 @@ file comparators, endian transformation classes, and much
more.
</configuration>
</plugin>
<plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>findbugs-maven-plugin</artifactId>
- <version>3.0.5</version>
+ <groupId>com.github.spotbugs</groupId>
+ <artifactId>spotbugs-maven-plugin</artifactId>
+ <version>${spotbugs.plugin.version}</version>
<configuration>
- <threshold>Normal</threshold>
- <effort>Default</effort>
-
<excludeFilterFile>${basedir}/findbugs-exclude-filter.xml</excludeFilterFile>
+ <excludeFilterFile>${basedir}/sb-excludes.xml</excludeFilterFile>
</configuration>
</plugin>
</plugins>
diff --git a/sb-excludes.xml b/sb-excludes.xml
new file mode 100644
index 0000000..c2a255c
--- /dev/null
+++ b/sb-excludes.xml
@@ -0,0 +1,21 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements. See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You under the Apache License, Version 2.0
+ (the "License"); you may not use this file except in compliance with
+ the License. You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+<FindBugsFilter>
+
+
+</FindBugsFilter>