17 lines
295 B
Plaintext
17 lines
295 B
Plaintext
plugins {
|
|
`kotlin-dsl`
|
|
}
|
|
|
|
kotlinDslPluginOptions {
|
|
experimentalWarning.set(false)
|
|
}
|
|
|
|
repositories {
|
|
gradlePluginPortal()
|
|
}
|
|
|
|
dependencies {
|
|
implementation(platform("org.jetbrains.kotlin:kotlin-bom:1.4.31"))
|
|
implementation("org.jetbrains.kotlin:kotlin-gradle-plugin:1.4.31")
|
|
}
|