Dependencies overrides themselves in Kotlin Multiplatform project
I have Kotlin multiplatform project with jvm target.
It has two dependecies of LWJGL - sources and natives.
When I specify them together, I get only the source dependency. When I specify only natives, I get only natives. It looks like they conflicts with each other...
However, in a regular Java project they load without problems.
Has anyone encountered this problem?
plugins {
id("org.jetbrains.kotlin.multiplatform") version "2.1.0-Beta1"
}
kotlin {
sourceSets {
jvmMain {...