This is an automated email from the ASF dual-hosted git repository.
dongjoon pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/orc.git
The following commit(s) were added to refs/heads/main by this push:
new 8f3b75065 ORC-1269: Remove FindBugs
8f3b75065 is described below
commit 8f3b75065ad67db6f4a48fc20497355977e0539b
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]>
---
java/pom.xml | 25 -------------------------
1 file changed, 25 deletions(-)
diff --git a/java/pom.xml b/java/pom.xml
index e39f0f111..787ede210 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>
@@ -554,10 +533,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>