diff --git a/examples/android/WORKSPACE b/examples/android/WORKSPACE index 67c019a37..60bdcd02f 100644 --- a/examples/android/WORKSPACE +++ b/examples/android/WORKSPACE @@ -29,7 +29,6 @@ maven_install( "com.google.auto.value:auto-value-annotations:1.6.5", ], repositories = [ - "https://jcenter.bintray.com/", "https://maven.google.com", "https://repo1.maven.org/maven2", ], diff --git a/examples/anvil/WORKSPACE b/examples/anvil/WORKSPACE index a10e425c5..852b1c8f4 100644 --- a/examples/anvil/WORKSPACE +++ b/examples/anvil/WORKSPACE @@ -65,7 +65,6 @@ maven_install( "org.jetbrains.kotlin:kotlin-stdlib-jdk7", ], repositories = [ - "https://jcenter.bintray.com/", "https://maven.google.com", "https://repo1.maven.org/maven2", ], diff --git a/examples/jetpack_compose/WORKSPACE b/examples/jetpack_compose/WORKSPACE index 5a6c0b64c..a66e63715 100644 --- a/examples/jetpack_compose/WORKSPACE +++ b/examples/jetpack_compose/WORKSPACE @@ -31,7 +31,6 @@ maven_install( "androidx.compose.compiler:compiler:1.0.0-alpha09", ], repositories = [ - "https://jcenter.bintray.com/", "https://maven.google.com", "https://repo1.maven.org/maven2", ], diff --git a/examples/node/WORKSPACE b/examples/node/WORKSPACE index e56c09e4f..b06fda7f9 100644 --- a/examples/node/WORKSPACE +++ b/examples/node/WORKSPACE @@ -22,7 +22,7 @@ load("@rules_jvm_external//:defs.bzl", "maven_install") maven_install( artifacts = [ - "org.jetbrains.kotlinx:atomicfu-js:0.13.1", + "org.jetbrains.kotlinx:atomicfu-js:0.15.2", "org.jetbrains.kotlinx:kotlinx-coroutines-core-js:1.3.2", ], repositories = [ diff --git a/kotlin/internal/repositories/setup.bzl b/kotlin/internal/repositories/setup.bzl index 0fcd383e3..87df1329b 100644 --- a/kotlin/internal/repositories/setup.bzl +++ b/kotlin/internal/repositories/setup.bzl @@ -40,7 +40,7 @@ def kt_configure(): "javax.annotation:javax.annotation-api:1.3.2", "javax.inject:javax.inject:1", "org.pantsbuild:jarjar:1.7.2", - "org.jetbrains.kotlinx:atomicfu-js:0.14.0", + "org.jetbrains.kotlinx:atomicfu-js:0.15.2", "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.4.2", "org.jetbrains.kotlinx:kotlinx-coroutines-core-js:1.4.2", "org.jetbrains.kotlinx:kotlinx-coroutines-test:1.4.2", @@ -49,7 +49,6 @@ def kt_configure(): ], repositories = [ "https://maven-central.storage.googleapis.com/repos/central/data/", - "https://jcenter.bintray.com/", "https://repo1.maven.org/maven2", ], )