only:cleaner java 11 requirement

This commit is contained in:
rusefillc 2024-08-16 17:51:27 -04:00
parent 0a4f19ae77
commit 1883528a8a
1 changed files with 4 additions and 0 deletions

View File

@ -8,6 +8,10 @@ allprojects {
plugins.withType(JavaPlugin) {
dependencies {
// let's be vocal that 1.8 is not enough
sourceCompatibility = '11'
targetCompatibility = '11'
implementation global_libs.annotations
testImplementation global_libs.junit5
testImplementation global_libs.junit5engine