Add descriptions to tasks to run integration test apps manually Project: http://git-wip-us.apache.org/repos/asf/tapestry-5/repo Commit: http://git-wip-us.apache.org/repos/asf/tapestry-5/commit/60b086ad Tree: http://git-wip-us.apache.org/repos/asf/tapestry-5/tree/60b086ad Diff: http://git-wip-us.apache.org/repos/asf/tapestry-5/diff/60b086ad
Branch: refs/heads/master Commit: 60b086ad613db384ba29d9d717bf3c1a4b109e8d Parents: cda2ac7 Author: Bob Harner <[email protected]> Authored: Sun Aug 5 21:12:09 2018 -0400 Committer: Bob Harner <[email protected]> Committed: Sun Aug 5 21:12:09 2018 -0400 ---------------------------------------------------------------------- tapestry-core/build.gradle | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/tapestry-5/blob/60b086ad/tapestry-core/build.gradle ---------------------------------------------------------------------- diff --git a/tapestry-core/build.gradle b/tapestry-core/build.gradle index 9165da2..0bf5c12 100644 --- a/tapestry-core/build.gradle +++ b/tapestry-core/build.gradle @@ -65,33 +65,38 @@ jar { } } -// tasks for starting integration test apps, useful when debugging failing integration tests task runTestApp1(type:JavaExec) { + description 'Start app1 integration test app, useful when debugging failing integration tests' main = 'org.apache.tapestry5.test.JettyRunner' args "-d", "src/test/app1", "-p", "8080" classpath += project.sourceSets.test.runtimeClasspath } task runTestApp2(type:JavaExec) { + description 'Start app2 integration test app, useful when debugging failing integration tests' main = 'org.apache.tapestry5.test.JettyRunner' args "-d", "src/test/app2", "-p", "8080" classpath += project.sourceSets.test.runtimeClasspath } task runTestApp3(type:JavaExec) { + description 'Start app3 integration test app, useful when debugging failing integration tests' main = 'org.apache.tapestry5.test.JettyRunner' args "-d", "src/test/app3", "-p", "8080" classpath += project.sourceSets.test.runtimeClasspath } task runTestApp4(type:JavaExec) { + description 'Start app4 integration test app, useful when debugging failing integration tests' main = 'org.apache.tapestry5.test.JettyRunner' args "-d", "src/test/app4", "-p", "8080" classpath += project.sourceSets.test.runtimeClasspath } task runTestApp5(type:JavaExec) { + description 'Start app5 integration test app, useful when debugging failing integration tests' main = 'org.apache.tapestry5.test.JettyRunner' args "-d", "src/test/app5", "-p", "8080" classpath += project.sourceSets.test.runtimeClasspath } task runTestAppfolder(type:JavaExec) { + description 'Start appFolder integration test app, useful when debugging failing integration tests' main = 'org.apache.tapestry5.test.JettyRunner' args "-d", "src/test/appfolder", "-p", "8080" classpath += project.sourceSets.test.runtimeClasspath
