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/09/13 00:40:36 UTC

[05/50] [abbrv] incubator-beam git commit: [BEAM-592] Fix SparkRunner Dependency Problem in WordCount

[BEAM-592] Fix SparkRunner Dependency Problem in WordCount


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

Branch: refs/heads/gearpump-runner
Commit: 1c1115eeeb59707a401513e903dfbae15a85a029
Parents: 973081e
Author: Mark Liu <ma...@markliu-macbookpro.roam.corp.google.com>
Authored: Fri Aug 26 14:23:54 2016 -0700
Committer: Dan Halperin <dh...@google.com>
Committed: Mon Sep 12 17:40:10 2016 -0700

----------------------------------------------------------------------
 examples/java/pom.xml  | 6 ++++++
 examples/java8/pom.xml | 6 ++++++
 2 files changed, 12 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-beam/blob/1c1115ee/examples/java/pom.xml
----------------------------------------------------------------------
diff --git a/examples/java/pom.xml b/examples/java/pom.xml
index 096bc4e..47f0366 100644
--- a/examples/java/pom.xml
+++ b/examples/java/pom.xml
@@ -97,6 +97,12 @@
           <version>${spark.version}</version>
           <scope>runtime</scope>
           <optional>true</optional>
+          <exclusions>
+            <exclusion>
+              <groupId>org.slf4j</groupId>
+              <artifactId>jul-to-slf4j</artifactId>
+            </exclusion>
+          </exclusions>
         </dependency>
 
         <dependency>

http://git-wip-us.apache.org/repos/asf/incubator-beam/blob/1c1115ee/examples/java8/pom.xml
----------------------------------------------------------------------
diff --git a/examples/java8/pom.xml b/examples/java8/pom.xml
index f3f2c3c..44cf918 100644
--- a/examples/java8/pom.xml
+++ b/examples/java8/pom.xml
@@ -98,6 +98,12 @@
           <version>${spark.version}</version>
           <scope>runtime</scope>
           <optional>true</optional>
+          <exclusions>
+            <exclusion>
+              <groupId>org.slf4j</groupId>
+              <artifactId>jul-to-slf4j</artifactId>
+            </exclusion>
+          </exclusions>
         </dependency>
 
         <dependency>