gradle: Skip specific tests

This commit is contained in:
Owain van Brakel
2019-07-27 07:25:34 +02:00
parent 0a4daac223
commit ff50dc5272
2 changed files with 12 additions and 0 deletions

View File

@@ -49,4 +49,12 @@ compileJava.doLast() {
injectedJar.toString()
]
inject.main(jarPaths)
}
test {
exclude '**/*'
}
compileTestJava {
exclude '**/*'
}