Reverted to JDK >= 17

This commit is contained in:
Erik C. Thauvin 2023-07-14 20:31:30 -07:00
parent 01b16c211d
commit ad17e7edef
3 changed files with 5 additions and 5 deletions

View file

@ -60,8 +60,8 @@ tasks.withType(JavaCompile) {
}
java {
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
withSourcesJar()
withJavadocJar()
}