Skip to content

Commit

Permalink
Remove wasm/experimental maven repo
Browse files Browse the repository at this point in the history
  • Loading branch information
eymar committed Dec 4, 2023
1 parent c63df67 commit 6d9c907
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions skiko/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -54,14 +54,14 @@ val Project.supportNativeLinux: Boolean
val Project.supportAnyNative: Boolean
get() = supportAllNative || supportAnyNativeIos || supportNativeMac || supportNativeLinux


val Project.supportWasm: Boolean
get() = findProperty("skiko.wasm.enabled") == "true" || isInIdea

val Project.supportJs: Boolean
get() = findProperty("skiko.js.enabled") == "true" || supportWasm || isInIdea

val coroutinesVersion = "1.8.0-RC"
val atomicfuVersion = "0.23.1"

fun targetSuffix(os: OS, arch: Arch): String {
return "${os.id}_${arch.id}"
Expand All @@ -79,8 +79,6 @@ allprojects {

repositories {
mavenCentral()
// TODO: delete when we have all libs published in mavenCentral
maven("https://maven.pkg.jetbrains.space/kotlin/p/wasm/experimental")
}

val windowsSdkPaths: WindowsSdkPaths by lazy {
Expand Down Expand Up @@ -516,7 +514,9 @@ kotlin {
val nativeMain by creating {
dependsOn(nativeJsMain)
dependencies {
implementation("org.jetbrains.kotlinx:atomicfu:0.23.1")
// TODO: remove this explicit dependency on atomicfu
// after this is fixed https://jetbrains.slack.com/archives/C3TNY2MM5/p1701462109621819
implementation("org.jetbrains.kotlinx:atomicfu:$atomicfuVersion")
}
}
val nativeTest by creating {
Expand Down

0 comments on commit 6d9c907

Please sign in to comment.