Skip to content

Commit

Permalink
Fix review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
vmishenev committed Nov 9, 2023
1 parent 3bb2839 commit cc0af74
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,15 +38,3 @@ tasks.withType<DokkaTask>().configureEach {
}
}
}

// HACK: some dependencies (coroutines -wasm0 and atomicfu -wasm0) reference deleted *-dev libs
configurations.all {
val conf = this
resolutionStrategy.eachDependency {
// for atomicfu-wasm-js:0.22.0-wasm1 and kotlinx-coroutines-core:1.6.4-wasm1
if (requested.version == "1.9.30-dev-460") {
println("Substitute deleted version ${requested.module}:${requested.version} for ${conf.name}")
useVersion(project.properties["dokka_it_kotlin_version"] as String)
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
# Copyright 2014-2023 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
#

dokka_it_kotlin_version=1.9.20-RC2
dokka_it_kotlin_version=1.9.20

0 comments on commit cc0af74

Please sign in to comment.