Kotlin - Basics and JVM Runtime
Given this Gradle Kotlin DSL snippet, what will be the output directory for compiled Kotlin classes?
plugins {
kotlin("jvm") version "1.8.0"
}
java {
sourceSets {
main {
java.srcDirs("src/main/kotlin")
output.resourcesDir = file("build/resources/main")
}
}
}
