674e464230
Before the new MPP, Kotlin source directories were added to the Java source set's `allJava` and `allSource` by all of the Kotlin plugins, including common and JS ones. As it turned out, this was required by the IntelliJ Gradle import. * Make all `KotlinSourceSetProcessor`s (not just JVM) check whether a compilation has a Java source set and add the Kotlin source directories to `allSource` and `allJava` * Also disable the unclear resource `exclude` for the Java source set that filters Kotlin source directories out of the resources Issue #KT-26020 Fixed Issue #KT-26267 Fixed