Skip to content

Commit 4729832

Browse files
committed
AMMEND
1 parent 2ecd836 commit 4729832

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

integration-testing/smokeTest/build.gradle

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,18 @@ repositories {
77
mavenLocal()
88
mavenCentral()
99
maven { url "https://maven.pkg.jetbrains.space/kotlin/p/kotlin/dev" }
10+
// This is bootstrap wasm repo, remove it as regular atomic-fu will be published
11+
maven { url "https://maven.pkg.jetbrains.space/kotlin/p/wasm/experimental" }
1012
}
1113

1214
kotlin {
1315
jvm()
1416
js(IR) {
1517
nodejs()
1618
}
19+
wasm() {
20+
nodejs()
21+
}
1722

1823
sourceSets {
1924
commonMain {
@@ -50,3 +55,13 @@ kotlin {
5055
}
5156
}
5257

58+
// This is bootstrap atomicFU version with wasm support, remove it as regular atomic-fu will be published
59+
allprojects {
60+
configurations.all {
61+
resolutionStrategy.eachDependency { DependencyResolveDetails details ->
62+
if (details.requested.name == 'atomicfu-wasm') {
63+
details.useVersion '0.21.0-wasm0'
64+
}
65+
}
66+
}
67+
}

0 commit comments

Comments
 (0)