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

onichols pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/geode.git


The following commit(s) were added to refs/heads/develop by this push:
     new 64f912b  GEODE-4826: Use spotlessCheck, not spotlessApply, as input to 
srcDistTar (#6539)
64f912b is described below

commit 64f912bfa7bd96669046bbd41016baba2a2207b7
Author: Robert Houghton <[email protected]>
AuthorDate: Fri May 28 12:21:29 2021 -0700

    GEODE-4826: Use spotlessCheck, not spotlessApply, as input to srcDistTar 
(#6539)
    
    Using spotlessApply as an input to srcDistTar allowed `build` and other
    CI tasks to pass while still having style errors on the repo.
    
    Authored-by: Robert Houghton <[email protected]>
---
 geode-assembly/build.gradle | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/geode-assembly/build.gradle b/geode-assembly/build.gradle
index d8b8118..fedcaab 100755
--- a/geode-assembly/build.gradle
+++ b/geode-assembly/build.gradle
@@ -623,7 +623,7 @@ def spotlessProjects = rootProject.subprojects.findAll { 
subproj ->
 tasks.named('srcDistTar').configure {
   classifier 'src'
   spotlessProjects.each {spotlessProj ->
-    dependsOn {spotlessProj.tasks.named("spotlessApply")}
+    dependsOn {spotlessProj.tasks.named("spotlessCheck")}
   }
 }
 

Reply via email to