Kotlin - Basics and JVM Runtime
Given this Gradle build snippet, what will be the output directory for compiled Kotlin classes?
kotlin {
jvmToolchain(17)
}
tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile).configureEach {
kotlinOptions.jvmTarget = "17"
}