13 lines
327 B
Kotlin
13 lines
327 B
Kotlin
pluginManagement {
|
|
plugins {
|
|
kotlin("multiplatform") version "2.0.0"
|
|
kotlin("plugin.serialization") version "2.0.0"
|
|
id("org.gradle.toolchains.foojay-resolver-convention") version "0.5.0"
|
|
}
|
|
repositories {
|
|
gradlePluginPortal()
|
|
mavenCentral()
|
|
maven { setUrl("https://plugins.gradle.org/m2/") }
|
|
}
|
|
}
|