Repository: tapestry-5 Updated Branches: refs/heads/master 2bc3fab22 -> 73589d30f
Revert "add a Gradle task to run the `app1` test application from the tapestry-core project" The jetty plugin applies the war plugin and that replaces the jar archive task by a war archive task. That way, tapestry-core creates .war artifacts instead of .jar. I can't get it to work right now. This reverts commit 724b34cd0a696fa76c70294b58cb947b5bafce31. Project: http://git-wip-us.apache.org/repos/asf/tapestry-5/repo Commit: http://git-wip-us.apache.org/repos/asf/tapestry-5/commit/73589d30 Tree: http://git-wip-us.apache.org/repos/asf/tapestry-5/tree/73589d30 Diff: http://git-wip-us.apache.org/repos/asf/tapestry-5/diff/73589d30 Branch: refs/heads/master Commit: 73589d30f6c4af84067ba8f734b246497b049a7f Parents: 2bc3fab Author: Jochen Kemnade <[email protected]> Authored: Fri Mar 6 09:18:03 2015 +0100 Committer: Jochen Kemnade <[email protected]> Committed: Fri Mar 6 09:18:03 2015 +0100 ---------------------------------------------------------------------- tapestry-core/build.gradle | 7 ------- 1 file changed, 7 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/tapestry-5/blob/73589d30/tapestry-core/build.gradle ---------------------------------------------------------------------- diff --git a/tapestry-core/build.gradle b/tapestry-core/build.gradle index 0cf96b3..56e3241 100644 --- a/tapestry-core/build.gradle +++ b/tapestry-core/build.gradle @@ -4,8 +4,6 @@ import t5build.* description = "Central module for Tapestry, containing all core services and components" -apply plugin: 'jetty' - project.ext { antlrSource = "src/main/antlr" mainGeneratedDir = "src/main/generated" @@ -63,8 +61,3 @@ jar { filter(ReplaceTokens, tokens: [version: project.version]) } } - -task runTestApp1(type: JettyRun) { - webAppSourceDirectory= file('src/test/app1') - classpath += project.sourceSets.test.runtimeClasspath -}
