[stdlib-mpp] Exclude transitive mpp stdlib dependency when compiling with legacy js plugin

#KT-56106
This commit is contained in:
Ilya Gorbunov
2023-05-15 21:18:11 +02:00
committed by Space Team
parent dcc71e77f3
commit 184cbd6eb1
+3 -1
View File
@@ -71,7 +71,9 @@ sourceSets {
dependencies {
expectedBy project(":kotlin-stdlib-common")
commonSources project(path: ":kotlin-stdlib-common", configuration: "sources")
testApi project(':kotlin-test:kotlin-test-js')
testApi(project(':kotlin-test:kotlin-test-js')) {
exclude(group: 'org.jetbrains.kotlin', module: 'kotlin-stdlib')
}
}
tasks.register("prepareComparableSource", Copy) {