Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- task testJar(type: Jar) {
- manifest {
- attributes('Main-Class': '<PACKAGE>.Tests')
- }
- archiveClassifier.set("tests")
- from(sourceSets.test.output)
- from {
- configurations.testRuntimeClasspath.collect {
- it.isDirectory() ? it : zipTree(it)
- }
- }
- with jar
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement