Repository: tapestry-5 Updated Branches: refs/heads/master 4ace4a44b -> d8198d4a6
TAP5-2463: remove compiled CoffeeScript in the clean task Project: http://git-wip-us.apache.org/repos/asf/tapestry-5/repo Commit: http://git-wip-us.apache.org/repos/asf/tapestry-5/commit/d8198d4a Tree: http://git-wip-us.apache.org/repos/asf/tapestry-5/tree/d8198d4a Diff: http://git-wip-us.apache.org/repos/asf/tapestry-5/diff/d8198d4a Branch: refs/heads/master Commit: d8198d4a68e2dc0e55c4cb853b0410bbdd412994 Parents: 4ace4a4 Author: Jochen Kemnade <[email protected]> Authored: Sun Mar 8 10:36:03 2015 +0100 Committer: Jochen Kemnade <[email protected]> Committed: Sun Mar 8 10:36:30 2015 +0100 ---------------------------------------------------------------------- tapestry-beanvalidator/build.gradle | 2 ++ tapestry-core/build.gradle | 2 ++ 2 files changed, 4 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/tapestry-5/blob/d8198d4a/tapestry-beanvalidator/build.gradle ---------------------------------------------------------------------- diff --git a/tapestry-beanvalidator/build.gradle b/tapestry-beanvalidator/build.gradle index ad97901..c6fec58 100644 --- a/tapestry-beanvalidator/build.gradle +++ b/tapestry-beanvalidator/build.gradle @@ -15,6 +15,8 @@ task compileCoffeeScript(type: CompileCoffeeScript) { outputDir "src/main/generated/compiled-coffeescript" } +clean.delete 'src/main/generated' + sourceSets { main { output.dir(compileCoffeeScript.outputDir, builtBy: compileCoffeeScript) http://git-wip-us.apache.org/repos/asf/tapestry-5/blob/d8198d4a/tapestry-core/build.gradle ---------------------------------------------------------------------- diff --git a/tapestry-core/build.gradle b/tapestry-core/build.gradle index 56e3241..0654cbb 100644 --- a/tapestry-core/build.gradle +++ b/tapestry-core/build.gradle @@ -10,6 +10,8 @@ project.ext { testGeneratedDir = "src/test/generated" } +clean.delete mainGeneratedDir, testGeneratedDir + dependencies { compile project(':tapestry-ioc') compile project(':tapestry-json')
