Repository: incubator-beam Updated Branches: refs/heads/master 7d767056a -> be98b757b
Explicitly set UseDummyRunner in IO, Extensions This mitigates test failures due to forkCount=0 in travis. Project: http://git-wip-us.apache.org/repos/asf/incubator-beam/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-beam/commit/ef6ee7cf Tree: http://git-wip-us.apache.org/repos/asf/incubator-beam/tree/ef6ee7cf Diff: http://git-wip-us.apache.org/repos/asf/incubator-beam/diff/ef6ee7cf Branch: refs/heads/master Commit: ef6ee7cf32ec9b4d91d278ce175c100c4d3bb5bf Parents: 7d76705 Author: Thomas Groh <[email protected]> Authored: Mon Jun 27 15:11:58 2016 -0700 Committer: Thomas Groh <[email protected]> Committed: Mon Jun 27 15:11:58 2016 -0700 ---------------------------------------------------------------------- runners/direct-java/pom.xml | 3 +-- sdks/java/extensions/join-library/pom.xml | 9 +++++++++ sdks/java/io/google-cloud-platform/pom.xml | 9 +++++++++ sdks/java/io/hdfs/pom.xml | 9 +++++++++ sdks/java/io/kafka/pom.xml | 9 +++++++++ sdks/java/java8tests/pom.xml | 10 ++++++++++ 6 files changed, 47 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-beam/blob/ef6ee7cf/runners/direct-java/pom.xml ---------------------------------------------------------------------- diff --git a/runners/direct-java/pom.xml b/runners/direct-java/pom.xml index 13e8951..82c1e15 100644 --- a/runners/direct-java/pom.xml +++ b/runners/direct-java/pom.xml @@ -67,8 +67,7 @@ <artifactId>maven-surefire-plugin</artifactId> <configuration> <systemPropertyVariables> - <!-- Use a dummy runner for component tests --> - <beamUseDummyRunner>true</beamUseDummyRunner> + <beamUseDummyRunner>false</beamUseDummyRunner> </systemPropertyVariables> </configuration> <executions> http://git-wip-us.apache.org/repos/asf/incubator-beam/blob/ef6ee7cf/sdks/java/extensions/join-library/pom.xml ---------------------------------------------------------------------- diff --git a/sdks/java/extensions/join-library/pom.xml b/sdks/java/extensions/join-library/pom.xml index 0fec148..0dec32d 100644 --- a/sdks/java/extensions/join-library/pom.xml +++ b/sdks/java/extensions/join-library/pom.xml @@ -37,6 +37,15 @@ </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-surefire-plugin</artifactId> + <configuration> + <systemPropertyVariables> + <beamUseDummyRunner>false</beamUseDummyRunner> + </systemPropertyVariables> + </configuration> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> </plugin> <plugin> http://git-wip-us.apache.org/repos/asf/incubator-beam/blob/ef6ee7cf/sdks/java/io/google-cloud-platform/pom.xml ---------------------------------------------------------------------- diff --git a/sdks/java/io/google-cloud-platform/pom.xml b/sdks/java/io/google-cloud-platform/pom.xml index bb5fd11..692ac96 100644 --- a/sdks/java/io/google-cloud-platform/pom.xml +++ b/sdks/java/io/google-cloud-platform/pom.xml @@ -43,6 +43,15 @@ </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-surefire-plugin</artifactId> + <configuration> + <systemPropertyVariables> + <beamUseDummyRunner>false</beamUseDummyRunner> + </systemPropertyVariables> + </configuration> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> </plugin> <plugin> http://git-wip-us.apache.org/repos/asf/incubator-beam/blob/ef6ee7cf/sdks/java/io/hdfs/pom.xml ---------------------------------------------------------------------- diff --git a/sdks/java/io/hdfs/pom.xml b/sdks/java/io/hdfs/pom.xml index 9f4b38a..f2c9f68 100644 --- a/sdks/java/io/hdfs/pom.xml +++ b/sdks/java/io/hdfs/pom.xml @@ -38,6 +38,15 @@ </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-surefire-plugin</artifactId> + <configuration> + <systemPropertyVariables> + <beamUseDummyRunner>false</beamUseDummyRunner> + </systemPropertyVariables> + </configuration> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> </plugin> <plugin> http://git-wip-us.apache.org/repos/asf/incubator-beam/blob/ef6ee7cf/sdks/java/io/kafka/pom.xml ---------------------------------------------------------------------- diff --git a/sdks/java/io/kafka/pom.xml b/sdks/java/io/kafka/pom.xml index 578026b..cc447cd 100644 --- a/sdks/java/io/kafka/pom.xml +++ b/sdks/java/io/kafka/pom.xml @@ -41,6 +41,15 @@ </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-surefire-plugin</artifactId> + <configuration> + <systemPropertyVariables> + <beamUseDummyRunner>false</beamUseDummyRunner> + </systemPropertyVariables> + </configuration> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> </plugin> <plugin> http://git-wip-us.apache.org/repos/asf/incubator-beam/blob/ef6ee7cf/sdks/java/java8tests/pom.xml ---------------------------------------------------------------------- diff --git a/sdks/java/java8tests/pom.xml b/sdks/java/java8tests/pom.xml index 775a7c7..61606cb 100644 --- a/sdks/java/java8tests/pom.xml +++ b/sdks/java/java8tests/pom.xml @@ -53,6 +53,16 @@ <plugin> <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-surefire-plugin</artifactId> + <configuration> + <systemPropertyVariables> + <beamUseDummyRunner>false</beamUseDummyRunner> + </systemPropertyVariables> + </configuration> + </plugin> + + <plugin> + <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> </plugin>
