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 @@ -64,7 +64,7 @@ buildscript {
64
64
dependencies {
65
65
classpath " org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version "
66
66
classpath " org.jetbrains.dokka:dokka-gradle-plugin:$dokka_version "
67
- classpath " org.jetbrains.kotlinx:atomicfu-gradle-plugin:$a tomicfu_version "
67
+ classpath " org.jetbrains.kotlinx:atomicfu-gradle-plugin:$a tomicfu_wasm_version "
68
68
classpath " org.jetbrains.kotlinx:kotlinx-knit:$knit_version "
69
69
classpath " org.jetbrains.kotlinx:binary-compatibility-validator:$binary_compatibility_validator_version "
70
70
classpath " ru.vyarus:gradle-animalsniffer-plugin:1.5.4" // Android API check
@@ -386,6 +386,17 @@ if (CacheRedirector.enabled) {
386
386
}
387
387
}
388
388
389
+ // This is bootstrap atomicFU version with wasm support, remove it as regular atomic-fu will be published
390
+ allprojects {
391
+ configurations. all {
392
+ resolutionStrategy. eachDependency { DependencyResolveDetails details ->
393
+ if (details. requested. name == ' atomicfu-wasm' ) {
394
+ details. useVersion atomicfu_wasm_version
395
+ }
396
+ }
397
+ }
398
+ }
399
+
389
400
// Update node version to support latest wasm engine
390
401
extensions. findByType(org.jetbrains.kotlin.gradle.targets.js.nodejs.NodeJsRootExtension . class). with {
391
402
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