APEXCORE-308 - Implement findbugs plugin reporting
Project: http://git-wip-us.apache.org/repos/asf/incubator-apex-core/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-apex-core/commit/d58de0c8 Tree: http://git-wip-us.apache.org/repos/asf/incubator-apex-core/tree/d58de0c8 Diff: http://git-wip-us.apache.org/repos/asf/incubator-apex-core/diff/d58de0c8 Branch: refs/heads/master Commit: d58de0c803131109f970885d69a9f6c97546d5c6 Parents: 50b0855 Author: Vlad Rozov <[email protected]> Authored: Mon Jan 18 15:31:07 2016 -0800 Committer: Vlad Rozov <[email protected]> Committed: Mon Jan 25 14:58:08 2016 -0800 ---------------------------------------------------------------------- pom.xml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-apex-core/blob/d58de0c8/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index 164645c..46c9b9c 100644 --- a/pom.xml +++ b/pom.xml @@ -64,6 +64,9 @@ <!-- do not change jetty version as later versions have problems with DefaultServlet --> <jetty.version>8.1.10.v20130312</jetty.version> <license.skip>true</license.skip> + <findbugs.xmlOutput>true</findbugs.xmlOutput> + <findbugs.failOnError>false</findbugs.failOnError> + <findbugs.skip>false</findbugs.skip> <postNoticeText>The initial developer of the original code is
DataTorrent, Inc. (http://www.datatorrent.com)
Copyright (c) 2012 - 2015. All Rights Reserved.</postNoticeText> </properties> @@ -191,6 +194,25 @@ </excludes> </configuration> </plugin> + <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>findbugs-maven-plugin</artifactId> + <version>3.0.3</version> + <configuration> + <includeTests>true</includeTests> + <xmlOutput>${findbugs.xmlOutput}</xmlOutput> + <failOnError>${findbugs.failOnError}</failOnError> + <skip>${findbugs.skip}</skip> + </configuration> + <executions> + <execution> + <phase></phase> + <goals> + <goal>check</goal> + </goals> + </execution> + </executions> + </plugin> </plugins> <pluginManagement> <plugins>
