Repository: incubator-beam Updated Branches: refs/heads/master a2b118afe -> a7312bee3
Exclude AppleJavaExtensions from findbugs plugin deps This is for a GUI component of findbugs, and is not a real runtime dependency of our build. While it is not distributed with any of our artifacts, it is still one more needless thing to pull down at build time, and one more license to be aware of. Project: http://git-wip-us.apache.org/repos/asf/incubator-beam/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-beam/commit/ddf5cc27 Tree: http://git-wip-us.apache.org/repos/asf/incubator-beam/tree/ddf5cc27 Diff: http://git-wip-us.apache.org/repos/asf/incubator-beam/diff/ddf5cc27 Branch: refs/heads/master Commit: ddf5cc27e7b4cf7df653e916a39cef2dea1b67bd Parents: a2b118a Author: Kenneth Knowles <[email protected]> Authored: Fri Jul 8 09:05:29 2016 -0700 Committer: Dan Halperin <[email protected]> Committed: Fri Jul 8 10:35:04 2016 -0700 ---------------------------------------------------------------------- pom.xml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-beam/blob/ddf5cc27/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index 14a9c67..72d73fb 100644 --- a/pom.xml +++ b/pom.xml @@ -948,10 +948,25 @@ <artifactId>beam-sdks-java-build-tools</artifactId> <version>${project.version}</version> </dependency> + + <!-- Explicitly exclude deps which we do not really need. --> + <dependency> + <groupId>com.google.code.findbugs</groupId> + <artifactId>findbugs</artifactId> + <version>${findbugs.version}</version> + <exclusions> + <exclusion> + <groupId>com.apple</groupId> + <artifactId>AppleJavaExtensions</artifactId> + </exclusion> + </exclusions> + </dependency> </dependencies> + <configuration> <excludeFilterFile>beam/findbugs-filter.xml</excludeFilterFile> </configuration> + <executions> <execution> <phase>test</phase>
