Scripts/buildSrc/build.gradle.kts
JFronny 9736937fed
All checks were successful
ci/woodpecker/push/pages Pipeline was successful
ci/woodpecker/push/gradle Pipeline was successful
Get kotlin DSL version from kotlin DSL
2022-12-03 15:21:17 +01:00

16 lines
334 B
Plaintext

@file:Suppress("INVISIBLE_MEMBER", "INVISIBLE_REFERENCE")
import org.gradle.kotlin.dsl.plugins.appliedKotlinDslPluginsVersion
plugins {
`kotlin-dsl`
}
repositories {
mavenCentral()
gradlePluginPortal()
}
dependencies {
implementation("org.gradle.kotlin:gradle-kotlin-dsl-plugins:$appliedKotlinDslPluginsVersion")
}