Github user kiszk commented on a diff in the pull request:
https://github.com/apache/spark/pull/21542#discussion_r198232308
--- Diff: pom.xml ---
@@ -2606,6 +2606,35 @@
</execution>
</executions>
</plugin>
+ <plugin>
+ <groupId>com.github.spotbugs</groupId>
+ <artifactId>spotbugs-maven-plugin</artifactId>
+ <version>3.1.3</version>
+ <configuration>
+
<classFilesDirectory>${basedir}/target/scala-2.11/classes</classFilesDirectory>
+
<testClassFilesDirectory>${basedir}/target/scala-2.11/test-classes</testClassFilesDirectory>
+ <effort>Max</effort>
+ <threshold>Low</threshold>
+ <xmlOutput>true</xmlOutput>
+ <visitors>FindPuzzlers</visitors>
+ <fork>false</fork>
+ </configuration>
+ <dependencies>
+ <dependency>
+ <groupId>com.github.spotbugs</groupId>
+ <artifactId>spotbugs</artifactId>
+ <version>3.1.3</version>
--- End diff --
Sure, let us drop this part.
---
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]