Does this ring a bell to anyone? ```* What went w...
# k2-adopters
c
Does this ring a bell to anyone?
Copy code
* What went wrong:
Cannot query the value of this provider because it has no value available.
The value of this provider is derived from:
  - task ':app:jvmCopyHierarchicalMultiplatformResources' property 'outputDirectory'
Build file:
Copy code
plugins {
	alias(… Kotlin 2.0.0-RC2 …)
	alias(… Compose Multiplatform 1.6.10-beta03 …)
	alias(… Compose Compiler 2.0.0-RC2 …)
	application
}

kotlin {
	jvm {
        withJava() // !! thrown here !!
    }

	sourceSets.commonMain.dependencies {
		// …
	}
}

application {
	mainClass.set("example.MainKt")
}
If I replace it like this, it goes away:
Copy code
plugins {
    java
    // …
}

kotlin {
    jvm()

    // …
}
It runs fine with Kotlin 1.9.23 and Kotlin 2.0.0-RC1 (with matching Compose versions)
z
c
Thanks