d69df1898d
Use build Gradle plugin version property
28 lines
682 B
Kotlin
28 lines
682 B
Kotlin
pluginManagement {
|
|
repositories {
|
|
maven {
|
|
url = uri("https://maven.pkg.jetbrains.space/kotlin/p/kotlin/kotlin-dependencies")
|
|
metadataSources {
|
|
artifact()
|
|
}
|
|
}
|
|
jcenter()
|
|
mavenCentral()
|
|
gradlePluginPortal()
|
|
}
|
|
}
|
|
|
|
buildscript {
|
|
repositories {
|
|
maven {
|
|
url = uri("https://maven.pkg.jetbrains.space/kotlin/p/kotlin/kotlin-dependencies")
|
|
metadataSources {
|
|
artifact()
|
|
}
|
|
}
|
|
}
|
|
dependencies {
|
|
classpath("org.jetbrains.kotlin:kotlin-build-gradle-plugin:${extra["kotlin.build.gradlePlugin.version"]}")
|
|
}
|
|
}
|