We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
auto
1 parent c32bcb3 commit 69d96fdCopy full SHA for 69d96fd
packages/builder/src/main/kotlin/elide/tooling/jvm/JvmBuildConfigurator.kt
@@ -638,7 +638,10 @@ internal class JvmBuildConfigurator : BuildConfigurator {
638
}.map { it.path.toFile() }
639
640
incrementalCompilation = state.manifest.kotlin?.features?.incremental != false
641
- jvmTarget = effectiveJvmTarget.argValue
+ jvmTarget = when (val tgt = effectiveJvmTarget.argValue) {
642
+ "auto" -> ElidePackageManifest.JvmTarget.DEFAULT.argValue
643
+ else -> tgt
644
+ }
645
646
// handle built-in plugins
647
if (state.manifest.kotlin?.features?.enableDefaultPlugins != false) {
0 commit comments