Thanks Anthony! You should just continue to type ‘gradle clean build’ as you did before.
To give more detail: Each gradle subproject has its own built-in ‘clean’ task, which will remove the build directory inside of that module (e.g. geode/geode-core/build/). There is also the ‘cleanAll’ task which will remove the build directory from the root project (i.e. geode/build/). The last block of our root build.gradle file declares that ‘cleanAll’ must be run after the ‘clean’ task of any subproject, so whenever you call ‘gradle clean’ it will automatically trigger ‘cleanAll’. Best, Jared > On Sep 15, 2016, at 3:42 PM, Anthony Baker <aba...@pivotal.io> wrote: > > Jared, thanks for the contribution! > > Just to make sure everyone understands the change: I should now type `gradle > cleanAll build` instead of `gradle clean build`? > > Anthony > > >> On Sep 15, 2016, at 2:44 PM, jaredjstewart <g...@git.apache.org> wrote: >> >> GitHub user jaredjstewart opened a pull request: >> >> https://github.com/apache/incubator-geode/pull/240 >> >> GEODE-1899: Renamed the custom 'clean' task to work with Gradle 3.0+ >> >> >> >> You can merge this pull request into a Git repository by running: >> >> $ git pull https://github.com/jaredjstewart/incubator-geode >> feature/GEODE-1899 >> >> Alternatively you can review and apply these changes as the patch at: >> >> https://github.com/apache/incubator-geode/pull/240.patch >> >> To close this pull request, make a commit to your master/trunk branch >> with (at least) the following in the commit message: >> >> This closes #240 >> >> ---- >> commit 804a1cabc78357bea13844dd767afcc66a7426af >> Author: Jared Stewart <jstew...@pivotal.io> >> Date: 2016-09-15T20:24:34Z >> >> GEODE-1899: Renamed the custom 'clean' task to work with Gradle 3.0+ >> >> ---- >> >> >> --- >> If your project is set up for it, you can reply to this email and have your >> reply appear on GitHub as well. If your project does not have this feature >> enabled and wishes so, or if the feature is enabled but not working, please >> contact infrastructure at infrastruct...@apache.org or file a JIRA ticket >> with INFRA. >> --- >