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 <[email protected]> Authored: Sat Aug 20 10:42:39 2016 +0200 Committer: Kenneth Knowles <[email protected]> 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>
