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/11 16:37:12 UTC

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

Repository: incubator-beam
Updated Branches:
  refs/heads/master 8db73fe0d -> 77d928210


Closes #613


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

Branch: refs/heads/master
Commit: 77d92821006992603f7253888284d1395722796d
Parents: 8db73fe d395a7c
Author: Dan Halperin <dh...@google.com>
Authored: Mon Jul 11 09:37:08 2016 -0700
Committer: Dan Halperin <dh...@google.com>
Committed: Mon Jul 11 09:37:08 2016 -0700

----------------------------------------------------------------------
 examples/java8/pom.xml | 13 +++++++++++++
 1 file changed, 13 insertions(+)
----------------------------------------------------------------------



[2/2] incubator-beam git commit: Add test dependency on direct runner

Posted by dh...@apache.org.
Add test dependency on direct runner

The testing of the examples themselves is done
via the direct runner, so this change adds
a straightforward test scoped dependency.


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

Branch: refs/heads/master
Commit: d395a7c2cfe1ef0accfdf2cc9b54054f75313159
Parents: 8db73fe
Author: Kenneth Knowles <kl...@google.com>
Authored: Fri Jul 8 12:28:33 2016 -0700
Committer: Dan Halperin <dh...@google.com>
Committed: Mon Jul 11 09:37:08 2016 -0700

----------------------------------------------------------------------
 examples/java8/pom.xml | 13 +++++++++++++
 1 file changed, 13 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-beam/blob/d395a7c2/examples/java8/pom.xml
----------------------------------------------------------------------
diff --git a/examples/java8/pom.xml b/examples/java8/pom.xml
index 3cd1787..cf6b545 100644
--- a/examples/java8/pom.xml
+++ b/examples/java8/pom.xml
@@ -211,5 +211,18 @@
       <groupId>com.google.api-client</groupId>
       <artifactId>google-api-client</artifactId>
     </dependency>
+
+    <!-- Test dependencies -->
+
+    <!--
+      For testing the example itself, use the direct runner. This is separate from
+      the use of RunnableOnService tests for testing a particular runner.
+    -->
+    <dependency>
+      <groupId>org.apache.beam</groupId>
+      <artifactId>beam-runners-direct-java</artifactId>
+      <version>${project.version}</version>
+      <scope>test</scope>
+    </dependency>
   </dependencies>
 </project>