GitHub Actions:

- build using Java 20 (use toolchain because Gradle 8.1.1 does not support running and compiling on Java 20 because Kotlin does not support 20 as target version)
- use temurin distribution as default because it is pre-installed on ubuntu-latest
This commit is contained in:
Karl Tauber
2023-06-21 17:14:29 +02:00
parent f003e835bd
commit 242c478cb3
4 changed files with 14 additions and 8 deletions

View File

@@ -40,3 +40,9 @@ fun includeProject( projectPath: String, projectDir: String ) {
include( projectPath )
project( ":$projectPath" ).projectDir = file( projectDir )
}
// for using newer Java version via toolchain
plugins {
id( "org.gradle.toolchains.foojay-resolver-convention" ) version( "0.5.0" )
}