This is an automated email from the ASF dual-hosted git repository.

dongjoon pushed a commit to branch branch-1.8
in repository https://gitbox.apache.org/repos/asf/orc.git


The following commit(s) were added to refs/heads/branch-1.8 by this push:
     new b89002d48 ORC-1269: Remove FindBugs
b89002d48 is described below

commit b89002d48273391cbdee84ab0ff3aec08f83d7bc
Author: William Hyun <[email protected]>
AuthorDate: Tue Sep 13 08:47:33 2022 -0700

    ORC-1269: Remove FindBugs
    
    ### What changes were proposed in this pull request?
    This PR aims to remove FindBugs.
    
    ### Why are the changes needed?
    FindBugs supports only up to Java 1.8.
    Since we have SpotBugs, FindBugs is obsolete.
    
    ### How was this patch tested?
    Pass the CIs.
    
    Closes #1250 from williamhyun/removefindbug.
    
    Authored-by: William Hyun <[email protected]>
    Signed-off-by: Dongjoon Hyun <[email protected]>
    (cherry picked from commit 8f3b75065ad67db6f4a48fc20497355977e0539b)
    Signed-off-by: Dongjoon Hyun <[email protected]>
---
 java/pom.xml | 25 -------------------------
 1 file changed, 25 deletions(-)

diff --git a/java/pom.xml b/java/pom.xml
index 6dbb481da..4ce2547aa 100644
--- a/java/pom.xml
+++ b/java/pom.xml
@@ -288,27 +288,6 @@
             </archive>
           </configuration>
         </plugin>
-        <plugin>
-          <groupId>org.codehaus.mojo</groupId>
-          <artifactId>findbugs-maven-plugin</artifactId>
-          <version>3.0.5</version>
-          <configuration>
-            <effort>Max</effort>
-            
<excludeFilterFile>${basedir}/src/findbugs/exclude.xml</excludeFilterFile>
-            <xmlOutput>true</xmlOutput>
-            
<findbugsXmlOutputDirectory>${project.build.directory}/findbugs</findbugsXmlOutputDirectory>
-            <includeTests>true</includeTests>
-          </configuration>
-          <executions>
-            <execution>
-              <id>analyze-compile</id>
-              <phase>test</phase>
-              <goals>
-                <goal>check</goal>
-              </goals>
-            </execution>
-          </executions>
-        </plugin>
         <plugin>
           <groupId>com.github.spotbugs</groupId>
           <artifactId>spotbugs-maven-plugin</artifactId>
@@ -553,10 +532,6 @@
       <id>analyze</id>
       <build>
         <plugins>
-          <plugin>
-            <groupId>org.codehaus.mojo</groupId>
-            <artifactId>findbugs-maven-plugin</artifactId>
-          </plugin>
           <plugin>
             <groupId>com.github.spotbugs</groupId>
             <artifactId>spotbugs-maven-plugin</artifactId>

Reply via email to