From 1ba8e2bd43bbb0eb88eed0b13e1a7afe8ba86e08 Mon Sep 17 00:00:00 2001 From: mvicsokolova Date: Mon, 13 Nov 2023 11:54:07 +0100 Subject: [PATCH] Trying to fix unresoved kotlin.Any problem: changed the order of repositories --- integration-testing/examples/mpp-sample/build.gradle.kts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/integration-testing/examples/mpp-sample/build.gradle.kts b/integration-testing/examples/mpp-sample/build.gradle.kts index 938d0cd0..4fb70804 100644 --- a/integration-testing/examples/mpp-sample/build.gradle.kts +++ b/integration-testing/examples/mpp-sample/build.gradle.kts @@ -24,9 +24,8 @@ plugins { apply(plugin = "kotlinx-atomicfu") repositories { - mavenLocal() - maven("https://maven.pkg.jetbrains.space/kotlin/p/kotlin/dev") mavenCentral() + mavenLocal() } kotlin { @@ -41,6 +40,7 @@ kotlin { sourceSets { commonMain { dependencies { + implementation(kotlin("stdlib")) implementation(kotlin("test-junit")) } }