I use const string in my project, like here: https://handstandsam.com/2018/02/11/kotlin-buildsrc-for-better-gradle-dependency-management. In my build.gradle.kts my dependencies block looks like:
dependencies {
compile(project(DepModule.cmn))
compile(project(DepModule.logs))
.......
}
How use in dependencies block compile(DepModule.cmn)
instead of compile(project(DepModule.cmn))
? And is it possible so?
If you use Kotlin in your
buildSrc
, you can write the following:and then access in
build.gradle.kts
like so:I'm not sure if this trick with extension properties will work with Groovy.