Use System.Logger for logging with Java 9+

This commit is contained in:
Ingo Kegel
2021-03-10 17:52:23 +01:00
parent eedfcf86aa
commit 712bff9c99
12 changed files with 97 additions and 64 deletions

View File

@@ -27,6 +27,10 @@ if( JavaVersion.current() >= JavaVersion.VERSION_1_9 ) {
}
}
dependencies {
add("java9Compile", sourceSets.main.get().output)
}
tasks {
named<JavaCompile>( "compileJava9Java" ) {
sourceCompatibility = "9"