From e977b2c88a4c757a286344e05c5e2998c8981704 Mon Sep 17 00:00:00 2001 From: rnentjes Date: Thu, 15 May 2025 16:16:56 +0200 Subject: [PATCH] Update Kotlin plugin version and remove mavenLocal repository. Upgraded the Kotlin multiplatform plugin from version 2.0.21 to 2.1.0 for improved features and compatibility. Removed the mavenLocal repository from the common configuration to streamline dependency resolution. --- common.gradle.kts | 1 - settings.common.gradle.kts | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/common.gradle.kts b/common.gradle.kts index 0ea050f..6f845c3 100644 --- a/common.gradle.kts +++ b/common.gradle.kts @@ -3,7 +3,6 @@ version = "0.1.0" allprojects { repositories { - mavenLocal() mavenCentral() maven { url = uri("https://gitea.astraeus.nl:8443/api/packages/rnentjes/maven") diff --git a/settings.common.gradle.kts b/settings.common.gradle.kts index a00b896..ededdda 100644 --- a/settings.common.gradle.kts +++ b/settings.common.gradle.kts @@ -1,6 +1,6 @@ pluginManagement { plugins { - kotlin("multiplatform") version "2.0.21" + kotlin("multiplatform") version "2.1.0" } repositories { gradlePluginPortal()