make gradle eclipse always run cleanEclipse

Otherwise the 'merging' gets really trappy. it basically never works without a clean.

See 38.4.1.1. Disabling merging with a complete rewrite:
https://docs.gradle.org/current/userguide/eclipse_plugin.html
This commit is contained in:
Robert Muir 2015-10-30 23:00:05 -04:00
parent b6dee6bd43
commit 373dee4b5e
1 changed files with 2 additions and 0 deletions

View File

@ -158,6 +158,8 @@ allprojects {
defaultOutputDir = new File(project.buildDir, 'eclipse')
}
}
// otherwise the eclipse merging is *super confusing*
tasks.eclipse.dependsOn(cleanEclipse)
}
idea {