Rodrigo Silva
Cannot inline bytecode built with JVM target 17 into bytecode that is being built with JVM target 1.8. Please specify proper '-jvm-target' option
tasks { test { useJUnitPlatform() } compileKotlin { kotlinOptions.jvmTarget = "17" } ... }
ephemient
compileKotlin
compileTestKotlin
kotlin.target.compilations.all { kotlinOptions.jvmTarget = "17" }
A modern programming language that makes developers happier.