You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beam.apache.org by dh...@apache.org on 2016/07/08 17:35:12 UTC

[1/2] incubator-beam git commit: Exclude AppleJavaExtensions from findbugs plugin deps

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 <kl...@google.com>
Authored: Fri Jul 8 09:05:29 2016 -0700
Committer: Dan Halperin <dh...@google.com>
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>


[2/2] incubator-beam git commit: Closes #610

Posted by dh...@apache.org.
Closes #610


Project: http://git-wip-us.apache.org/repos/asf/incubator-beam/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-beam/commit/a7312bee
Tree: http://git-wip-us.apache.org/repos/asf/incubator-beam/tree/a7312bee
Diff: http://git-wip-us.apache.org/repos/asf/incubator-beam/diff/a7312bee

Branch: refs/heads/master
Commit: a7312bee35e41071712b92ae5b5b6b117e538d33
Parents: a2b118a ddf5cc2
Author: Dan Halperin <dh...@google.com>
Authored: Fri Jul 8 10:35:05 2016 -0700
Committer: Dan Halperin <dh...@google.com>
Committed: Fri Jul 8 10:35:05 2016 -0700

----------------------------------------------------------------------
 pom.xml | 15 +++++++++++++++
 1 file changed, 15 insertions(+)
----------------------------------------------------------------------