Repository: incubator-beam
Updated Branches:
  refs/heads/master c0c580227 -> 7ad787797


Fix pom syntax for excludedGroups for SplittableParDo


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

Branch: refs/heads/master
Commit: ffa81edd0ec4d9a8150280efdb6a6de412114743
Parents: c0c5802
Author: Kenneth Knowles <k...@google.com>
Authored: Thu Dec 1 21:03:04 2016 -0800
Committer: Kenneth Knowles <k...@google.com>
Committed: Thu Dec 1 21:03:04 2016 -0800

----------------------------------------------------------------------
 runners/apex/pom.xml                       |  6 ++++--
 runners/flink/runner/pom.xml               | 11 ++++++++---
 runners/google-cloud-dataflow-java/pom.xml |  6 ++++--
 runners/spark/pom.xml                      |  6 ++++--
 4 files changed, 20 insertions(+), 9 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-beam/blob/ffa81edd/runners/apex/pom.xml
----------------------------------------------------------------------
diff --git a/runners/apex/pom.xml b/runners/apex/pom.xml
index 983781d..629e890 100644
--- a/runners/apex/pom.xml
+++ b/runners/apex/pom.xml
@@ -185,8 +185,10 @@
             </goals>
             <configuration>
               <groups>org.apache.beam.sdk.testing.RunnableOnService</groups>
-              
<excludedGroups>org.apache.beam.sdk.testing.UsesStatefulParDo</excludedGroups>
-              
<excludedGroups>org.apache.beam.sdk.testing.UsesSplittableParDo</excludedGroups>
+              <excludedGroups>
+                org.apache.beam.sdk.testing.UsesStatefulParDo,
+                org.apache.beam.sdk.testing.UsesSplittableParDo
+              </excludedGroups>
               <parallel>none</parallel>
               <failIfNoTests>true</failIfNoTests>
               <dependenciesToScan>

http://git-wip-us.apache.org/repos/asf/incubator-beam/blob/ffa81edd/runners/flink/runner/pom.xml
----------------------------------------------------------------------
diff --git a/runners/flink/runner/pom.xml b/runners/flink/runner/pom.xml
index 3e3dd7e..615d5f1 100644
--- a/runners/flink/runner/pom.xml
+++ b/runners/flink/runner/pom.xml
@@ -53,8 +53,10 @@
                 </goals>
                 <configuration>
                   
<groups>org.apache.beam.sdk.testing.RunnableOnService</groups>
-                  
<excludedGroups>org.apache.beam.sdk.testing.UsesStatefulParDo</excludedGroups>
-                  
<excludedGroups>org.apache.beam.sdk.testing.UsesSplittableParDo</excludedGroups>
+                  <excludedGroups>
+                    org.apache.beam.sdk.testing.UsesStatefulParDo,
+                    org.apache.beam.sdk.testing.UsesSplittableParDo
+                  </excludedGroups>
                   <parallel>none</parallel>
                   <failIfNoTests>true</failIfNoTests>
                   <dependenciesToScan>
@@ -80,7 +82,10 @@
                 </goals>
                 <configuration>
                   
<groups>org.apache.beam.sdk.testing.RunnableOnService</groups>
-                  
<excludedGroups>org.apache.beam.sdk.testing.UsesStatefulParDo</excludedGroups>
+                  <excludedGroups>
+                    org.apache.beam.sdk.testing.UsesStatefulParDo,
+                    org.apache.beam.sdk.testing.UsesSplittableParDo
+                  </excludedGroups>
                   <parallel>none</parallel>
                   <failIfNoTests>true</failIfNoTests>
                   <dependenciesToScan>

http://git-wip-us.apache.org/repos/asf/incubator-beam/blob/ffa81edd/runners/google-cloud-dataflow-java/pom.xml
----------------------------------------------------------------------
diff --git a/runners/google-cloud-dataflow-java/pom.xml 
b/runners/google-cloud-dataflow-java/pom.xml
index 8547499..adebb2a 100644
--- a/runners/google-cloud-dataflow-java/pom.xml
+++ b/runners/google-cloud-dataflow-java/pom.xml
@@ -77,8 +77,10 @@
           <execution>
             <id>runnable-on-service-tests</id>
             <configuration>
-              
<excludedGroups>org.apache.beam.sdk.testing.UsesStatefulParDo</excludedGroups>
-              
<excludedGroups>org.apache.beam.sdk.testing.UsesSplittableParDo</excludedGroups>
+              <excludedGroups>
+                org.apache.beam.sdk.testing.UsesStatefulParDo,
+                org.apache.beam.sdk.testing.UsesSplittableParDo
+              </excludedGroups>
               <excludes>
                 <exclude>org.apache.beam.sdk.transforms.FlattenTest</exclude>
               </excludes>

http://git-wip-us.apache.org/repos/asf/incubator-beam/blob/ffa81edd/runners/spark/pom.xml
----------------------------------------------------------------------
diff --git a/runners/spark/pom.xml b/runners/spark/pom.xml
index dc000bf..e34af15 100644
--- a/runners/spark/pom.xml
+++ b/runners/spark/pom.xml
@@ -72,8 +72,10 @@
                 </goals>
                 <configuration>
                   
<groups>org.apache.beam.sdk.testing.RunnableOnService</groups>
-                  
<excludedGroups>org.apache.beam.sdk.testing.UsesStatefulParDo</excludedGroups>
-                  
<excludedGroups>org.apache.beam.sdk.testing.UsesSplittableParDo</excludedGroups>
+                  <excludedGroups>
+                    org.apache.beam.sdk.testing.UsesStatefulParDo,
+                    org.apache.beam.sdk.testing.UsesSplittableParDo
+                  </excludedGroups>
                   <forkCount>1</forkCount>
                   <reuseForks>false</reuseForks>
                   <failIfNoTests>true</failIfNoTests>

Reply via email to