Repository: sqoop Updated Branches: refs/heads/sqoop2 47ec037b6 -> 227d3e87b
SQOOP-2433: Sqoop2: Add way to invoke findbugs checks from maven (Jarek Jarcec Cecho via Gwen Shapira) Project: http://git-wip-us.apache.org/repos/asf/sqoop/repo Commit: http://git-wip-us.apache.org/repos/asf/sqoop/commit/227d3e87 Tree: http://git-wip-us.apache.org/repos/asf/sqoop/tree/227d3e87 Diff: http://git-wip-us.apache.org/repos/asf/sqoop/diff/227d3e87 Branch: refs/heads/sqoop2 Commit: 227d3e87bb84a714589c7a4488bb2a390852d1a6 Parents: 47ec037 Author: Gwen Shapira <[email protected]> Authored: Mon Jul 27 13:48:26 2015 -0700 Committer: Gwen Shapira <[email protected]> Committed: Mon Jul 27 13:48:26 2015 -0700 ---------------------------------------------------------------------- pom.xml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/sqoop/blob/227d3e87/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index 8b1dc33..d52c4f6 100644 --- a/pom.xml +++ b/pom.xml @@ -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>
