You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by jb...@apache.org on 2018/08/27 21:45:55 UTC

[geode] branch develop updated: GEODE-5642 remove gradle task :cleanAll (#2385)

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

jbarrett 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 48fe306  GEODE-5642 remove gradle task :cleanAll (#2385)
48fe306 is described below

commit 48fe306dcb699f64c15f8e8faba6fc2246ee45d1
Author: FSOUTHERLAND <39...@users.noreply.github.com>
AuthorDate: Mon Aug 27 14:45:49 2018 -0700

    GEODE-5642 remove gradle task :cleanAll (#2385)
    
    Co-authored-by: Finn Southerland <fs...@pivotal.io>
---
 build.gradle | 10 ----------
 1 file changed, 10 deletions(-)

diff --git a/build.gradle b/build.gradle
index 52dae34..3539e79 100755
--- a/build.gradle
+++ b/build.gradle
@@ -68,13 +68,6 @@ allprojects {
   }
 }
 
-task cleanAll(type: Delete) {
-  delete rootProject.buildDir
-  if (!buildRoot.isEmpty()) {
-    delete buildRoot
-  }
-}
-
 // allow external projects to override include location
 if (name == 'geode') {
   ext.scriptDir = 'gradle'
@@ -95,9 +88,6 @@ apply from: "${scriptDir}/docker.gradle"
 apply from: "${scriptDir}/spotless.gradle"
 
 subprojects {
-  // Make sure clean task for rootProject runs last
-  clean.finalizedBy rootProject.cleanAll
-
   apply plugin: 'com.github.ben-manes.versions'
 }