`buildSrc/build.gradle.kts` ``` plugins { kotlin(...
# gradle
m
buildSrc/build.gradle.kts
Copy code
plugins {
	kotlin("jvm") version "1.3.20"
}
Can I get the Kotlin plugin's version number from within my
buildSrc
sources?
ah, finally!
Project.getKotlinPluginVersion()
too easy 🙄
j
why not just
Copy code
plugins{ `kotlin-dsl` }
nvm, just saw your other comments