5
0
mirror of https://github.com/apache/sqoop.git synced 2025-05-21 03:10:49 +08:00

SQOOP-2433: Sqoop2: Add way to invoke findbugs checks from maven

(Jarek Jarcec Cecho via Gwen Shapira)
This commit is contained in:
Gwen Shapira 2015-07-27 13:48:26 -07:00
parent 47ec037b60
commit 227d3e87bb

14
pom.xml
View File

@ -749,6 +749,20 @@ limitations under the License.
<version>2.5.2</version>
</plugin>
<!-- Find bugs report can be executed with: mvn clean compile site -DskipTests -->
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
<version>3.0.1</version>
<configuration>
<effort>Max</effort>
<threshold>Low</threshold>
<htmlOutput>true</htmlOutput>
<xmlOutput>true</xmlOutput>
<details>true</details>
</configuration>
</plugin>
<!-- Turning off standard reports as they collide with sphinx -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>