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-bcel.git


The following commit(s) were added to refs/heads/master by this push:
     new 8b0eae7  Replace FindBugs with SpotBugs.
8b0eae7 is described below

commit 8b0eae7c9c272fbc4e9bbb2a466316c862d9ec30
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Wed Jun 3 15:43:25 2020 -0400

    Replace FindBugs with SpotBugs.
---
 pom.xml | 22 +++++++++-------------
 1 file changed, 9 insertions(+), 13 deletions(-)

diff --git a/pom.xml b/pom.xml
index c268440..0e3e20d 100644
--- a/pom.xml
+++ b/pom.xml
@@ -64,7 +64,6 @@
     <commons.osgi.private />
     <commons.jira.id>BCEL</commons.jira.id>
     <commons.jira.pid>12314220</commons.jira.pid>
-    <commons.findbugs.version>3.0.5</commons.findbugs.version>
     <commons.surefire.version>3.0.0-M4</commons.surefire.version>
     <checkstyle.plugin.version>3.1.0</checkstyle.plugin.version>
     <jna.version>5.5.0</jna.version>
@@ -398,18 +397,6 @@
       </plugin>
       <plugin>
         <groupId>org.codehaus.mojo</groupId>
-        <artifactId>findbugs-maven-plugin</artifactId>
-        <version>${commons.findbugs.version}</version>
-        <configuration>
-          <threshold>Normal</threshold>
-          <effort>Default</effort>
-          
<excludeFilterFile>${basedir}/src/conf/findbugs-exclude-filter.xml</excludeFilterFile>
-          <fork>true</fork>
-          <jvmArgs>-Duser.language=en</jvmArgs>
-        </configuration>
-      </plugin>
-      <plugin>
-        <groupId>org.codehaus.mojo</groupId>
         <artifactId>taglist-maven-plugin</artifactId>
         <version>2.4</version>
         <configuration>
@@ -454,6 +441,15 @@
           </parameter>
         </configuration>
       </plugin>    
+      <plugin>
+        <groupId>com.github.spotbugs</groupId>
+        <artifactId>spotbugs-maven-plugin</artifactId>
+        <version>${commons.spotbugs.version}</version>
+        <configuration>
+          <threshold>Normal</threshold>
+          <effort>Default</effort>
+        </configuration>
+      </plugin>
     </plugins>
   </reporting>
 

Reply via email to