Skip to content

Commit 3501209

Browse files
committed
add spotbugs 3.1.6
1 parent 92b4884 commit 3501209

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

pom.xml

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

0 commit comments

Comments
 (0)