Merge pull request #14407 from rmuir/cleanThisOneAlways

make gradle eclipse always run cleanEclipse
This commit is contained in:
Robert Muir 2015-10-30 23:09:35 -04:00
commit 041c734b2d
2 changed files with 9 additions and 0 deletions

7
GRADLE.CHEATSHEET Normal file
View File

@ -0,0 +1,7 @@
As a quick helper, below are the equivalent commands from maven to gradle (TESTING.md has also been updated). You can also run "gradle tasks" to see all tasks that are available to run.
clean -> clean
test -> test
verify -> check
verify -Dskip.unit.tests -> integTest
package -DskipTests -> assemble
install -DskipTests -> install

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 {