Skip to content

Commit fc21f19

Browse files
ericfchangyhuai
authored andcommitted
[SPARK-24895] Remove spotbugs plugin
## What changes were proposed in this pull request? Spotbugs maven plugin was a recently added plugin before 2.4.0 snapshot artifacts were broken. To ensure it does not affect the maven deploy plugin, this change removes it. ## How was this patch tested? Local build was ran, but this patch will be actually tested by monitoring the apache repo artifacts and making sure metadata is correctly uploaded after this job is ran: https://amplab.cs.berkeley.edu/jenkins/view/Spark%20Packaging/job/spark-master-maven-snapshots/ Author: Eric Chang <[email protected]> Closes apache#21865 from ericfchang/SPARK-24895.
1 parent d4a277f commit fc21f19

File tree

1 file changed

+0
-22
lines changed

1 file changed

+0
-22
lines changed

pom.xml

Lines changed: 0 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -2610,28 +2610,6 @@
26102610
</execution>
26112611
</executions>
26122612
</plugin>
2613-
<plugin>
2614-
<groupId>com.github.spotbugs</groupId>
2615-
<artifactId>spotbugs-maven-plugin</artifactId>
2616-
<version>3.1.3</version>
2617-
<configuration>
2618-
<classFilesDirectory>${basedir}/target/scala-${scala.binary.version}/classes</classFilesDirectory>
2619-
<testClassFilesDirectory>${basedir}/target/scala-${scala.binary.version}/test-classes</testClassFilesDirectory>
2620-
<effort>Max</effort>
2621-
<threshold>Low</threshold>
2622-
<xmlOutput>true</xmlOutput>
2623-
<visitors>FindPuzzlers</visitors>
2624-
<fork>true</fork>
2625-
</configuration>
2626-
<executions>
2627-
<execution>
2628-
<goals>
2629-
<goal>check</goal>
2630-
</goals>
2631-
<phase>compile</phase>
2632-
</execution>
2633-
</executions>
2634-
</plugin>
26352613
</plugins>
26362614
</build>
26372615

0 commit comments

Comments
 (0)