blob: 6767731acec6fcbff6311bc5e60f2d64458e67b4 [file] [log] [blame]
plugins {
id "com.github.johnrengelman.shadow" version "7.1.2"
}
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