You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beam.apache.org by lc...@apache.org on 2020/03/13 18:52:25 UTC

[beam] branch master updated: [BEAM-9481] fix indentation

This is an automated email from the ASF dual-hosted git repository.

lcwik pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/beam.git


The following commit(s) were added to refs/heads/master by this push:
     new 205eea9  [BEAM-9481] fix indentation
     new aa35a30  Merge pull request #11114 from lukecwik/beam9481
205eea9 is described below

commit 205eea925cff457cfbf2bb1170141e2eeac36c90
Author: Luke Cwik <lc...@google.com>
AuthorDate: Thu Mar 12 15:05:45 2020 -0700

    [BEAM-9481] fix indentation
---
 sdks/java/testing/expansion-service/build.gradle | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/sdks/java/testing/expansion-service/build.gradle b/sdks/java/testing/expansion-service/build.gradle
index 8203d0d..18b734b 100644
--- a/sdks/java/testing/expansion-service/build.gradle
+++ b/sdks/java/testing/expansion-service/build.gradle
@@ -48,13 +48,13 @@ task buildTestExpansionServiceJar(type: ShadowJar) {
             'Main-Class': 'org.apache.beam.sdk.expansion.service.ExpansionService'
     )
   }
-          exclude "META-INF/INDEX.LIST"
-          exclude "META-INF/*.SF"
-          exclude "META-INF/*.DSA"
-          exclude "META-INF/*.RSA"
-configurations = [
-            project.configurations.testRuntime
-          ]
+  exclude "META-INF/INDEX.LIST"
+  exclude "META-INF/*.SF"
+  exclude "META-INF/*.DSA"
+  exclude "META-INF/*.RSA"
+  configurations = [
+    project.configurations.testRuntime
+  ]
   from sourceSets.main.output
   from sourceSets.test.output
 }