File tree Expand file tree Collapse file tree 2 files changed +14
-2
lines changed Expand file tree Collapse file tree 2 files changed +14
-2
lines changed Original file line number Diff line number Diff line change @@ -62,7 +62,7 @@ buildscript {
62
62
dependencies {
63
63
classpath " org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version "
64
64
classpath " org.jetbrains.dokka:dokka-gradle-plugin:$dokka_version "
65
- classpath " org.jetbrains.kotlinx:atomicfu-gradle-plugin:$a tomicfu_version "
65
+ classpath " org.jetbrains.kotlinx:atomicfu-gradle-plugin:$a tomicfu_wasm_version "
66
66
classpath " org.jetbrains.kotlinx:kotlinx-knit:$knit_version "
67
67
classpath " org.jetbrains.kotlinx:binary-compatibility-validator:$binary_compatibility_validator_version "
68
68
classpath " ru.vyarus:gradle-animalsniffer-plugin:1.5.4" // Android API check
@@ -384,6 +384,17 @@ if (CacheRedirector.enabled) {
384
384
}
385
385
}
386
386
387
+ // This is bootstrap atomicFU version with wasm support, remove it as regular atomic-fu will be published
388
+ allprojects {
389
+ configurations. all {
390
+ resolutionStrategy. eachDependency { DependencyResolveDetails details ->
391
+ if (details. requested. name == ' atomicfu-wasm' ) {
392
+ details. useVersion atomicfu_wasm_version
393
+ }
394
+ }
395
+ }
396
+ }
397
+
387
398
// Update node version to support latest wasm engine
388
399
extensions. findByType(org.jetbrains.kotlin.gradle.targets.js.nodejs.NodeJsRootExtension . class). with {
389
400
it. nodeVersion = " 20.2.0"
Original file line number Diff line number Diff line change @@ -10,8 +10,9 @@ kotlin_version=1.9.0
10
10
# Dependencies
11
11
junit_version =4.12
12
12
junit5_version =5.7.0
13
+ atomicfu_version =0.22.0
13
14
# This is bootstrap atomicFU version with wasm support, remove it as regular atomic-fu will be published
14
- atomicfu_version =0.21.0-wasm0
15
+ atomicfu_wasm_version =0.21.0-wasm0
15
16
knit_version =0.4.0
16
17
html_version =0.7.2
17
18
lincheck_version =2.18.1
You can’t perform that action at this time.
0 commit comments