attempt to always have java 8 compatability

This commit is contained in:
ajgeiss0702
2021-08-13 11:57:19 -07:00
parent fbb6d94596
commit 86ceaa0233
+5
View File
@@ -14,6 +14,11 @@ allprojects {
version = "2.0.2" version = "2.0.2"
group = "us.ajg0702" group = "us.ajg0702"
plugins.apply("java")
java {
sourceCompatibility = JavaVersion.VERSION_1_8
}
tasks.withType<Test>().configureEach { tasks.withType<Test>().configureEach {
useJUnitPlatform() useJUnitPlatform()