You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beam.apache.org by ke...@apache.org on 2016/08/24 19:52:41 UTC

[03/17] incubator-beam git commit: Fix Flink Runner Pom for Batch RunnableOnService tests

Fix Flink Runner Pom for Batch RunnableOnService tests


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

Branch: refs/heads/master
Commit: df2874d02c7e3ad6660e488b3f847a2d6d830953
Parents: ea3a46c
Author: Aljoscha Krettek <al...@gmail.com>
Authored: Sat Aug 20 10:42:39 2016 +0200
Committer: Kenneth Knowles <kl...@google.com>
Committed: Wed Aug 24 12:46:24 2016 -0700

----------------------------------------------------------------------
 runners/flink/runner/pom.xml | 10 ++++++++--
 1 file changed, 8 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-beam/blob/df2874d0/runners/flink/runner/pom.xml
----------------------------------------------------------------------
diff --git a/runners/flink/runner/pom.xml b/runners/flink/runner/pom.xml
index ca9e5e2..e222bfd 100644
--- a/runners/flink/runner/pom.xml
+++ b/runners/flink/runner/pom.xml
@@ -52,11 +52,17 @@
                   <goal>test</goal>
                 </goals>
                 <configuration>
+                  <groups>org.apache.beam.sdk.testing.RunnableOnService</groups>
+                  <parallel>none</parallel>
+                  <failIfNoTests>true</failIfNoTests>
+                  <dependenciesToScan>
+                    <dependency>org.apache.beam:beam-sdks-java-core</dependency>
+                  </dependenciesToScan>
                   <systemPropertyVariables>
                     <beamTestPipelineOptions>
                       [
-                        "--runner=TestFlinkRunner",
-                        "--streaming=false"
+                      "--runner=TestFlinkRunner",
+                      "--streaming=false"
                       ]
                     </beamTestPipelineOptions>
                   </systemPropertyVariables>