blob: 40bc336ddc601eba06076cccff5dfdc26e96984c [file] [log] [blame]
apply plugin: 'java'
apply plugin: 'application'
mainClassName = 'test.App'
run {
jvmArgs '-Dtest.foo=bar', '-Dtest.bar=foo'
}
task testJar(type: Jar) {
classifier = 'tests'
from sourceSets.test.output
}
task testSourcesJar(type: Jar, dependsOn: classes) {
classifier = 'test-sources'
from sourceSets.test.allSource
}
test.dependsOn testJar
build.dependsOn testSourcesJar