2022-12-03 15:21:17 +01:00
|
|
|
@file:Suppress("INVISIBLE_MEMBER", "INVISIBLE_REFERENCE")
|
|
|
|
|
|
|
|
import org.gradle.kotlin.dsl.plugins.appliedKotlinDslPluginsVersion
|
|
|
|
|
2022-10-06 19:30:52 +02:00
|
|
|
plugins {
|
|
|
|
`kotlin-dsl`
|
|
|
|
}
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
gradlePluginPortal()
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2022-12-03 15:21:17 +01:00
|
|
|
implementation("org.gradle.kotlin:gradle-kotlin-dsl-plugins:$appliedKotlinDslPluginsVersion")
|
2022-10-06 19:30:52 +02:00
|
|
|
}
|