13 lines
303 B
Kotlin
13 lines
303 B
Kotlin
pluginManagement {
|
|
plugins {
|
|
kotlin("multiplatform") version "2.3.0"
|
|
id("org.jetbrains.dokka") version "2.0.0"
|
|
id("com.vanniktech.maven.publish") version "0.31.0"
|
|
}
|
|
repositories {
|
|
gradlePluginPortal()
|
|
mavenCentral()
|
|
maven { setUrl("https://plugins.gradle.org/m2/") }
|
|
}
|
|
}
|