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.
11 lines
201 B
Kotlin
11 lines
201 B
Kotlin
pluginManagement {
|
|
plugins {
|
|
kotlin("multiplatform") version "2.1.0"
|
|
}
|
|
repositories {
|
|
gradlePluginPortal()
|
|
mavenCentral()
|
|
maven { setUrl("https://plugins.gradle.org/m2/") }
|
|
}
|
|
}
|