diff --git a/build.gradle b/build.gradle index b52d299ad94..5c6ec366930 100644 --- a/build.gradle +++ b/build.gradle @@ -303,9 +303,10 @@ allprojects { into '.settings' } // otherwise .settings is not nuked entirely - tasks.cleanEclipse { + task wipeEclipseSettings(type: Delete) { delete '.settings' } + tasks.cleanEclipse.dependsOn(wipeEclipseSettings) // otherwise the eclipse merging is *super confusing* tasks.eclipse.dependsOn(cleanEclipse, copyEclipseSettings) }