Skip to content

Instantly share code, notes, and snippets.

@elnur
Created June 15, 2014 22:26
Show Gist options
  • Save elnur/869d62eb7efda9c86487 to your computer and use it in GitHub Desktop.
Save elnur/869d62eb7efda9c86487 to your computer and use it in GitHub Desktop.
task apiTest(type: Test) {
useTestNG()
testClassesDir = sourceSets.apiTest.output.classesDir
classpath = sourceSets.apiTest.runtimeClasspath
doFirst {
tasks.tomcatRun.outputs.upToDateWhen { false }
tasks.tomcatRun.contextPath = '/'
tasks.tomcatRun.daemon = true
tasks.tomcatRun.execute()
}
doLast {
tasks.tomcatStop.execute()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment