Remove Java 8 test restriction (#1019)

This commit is contained in:
Trask Stalnaker 2020-08-16 21:18:52 -07:00 committed by GitHub
parent d9dca25402
commit 2b898dd490
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 9 deletions

View File

@ -49,12 +49,3 @@ dependencies {
}
test.dependsOn resteasy31Test
// Until custom source sets can use minJavaVersionForTests separately from other tests
// force this one test to run on java8 only
resteasy31Test {
onlyIf {
String java8Home = findJavaHome(JavaVersion.VERSION_1_8)
java8Home != null && executable == toExecutable(java8Home)
}
}