What's the suggested way to share constants betwee...
# gradle
j
What's the suggested way to share constants between subprojects using the Gradle Kotlin DSL? (e.g. plugins or dependencies versions)
n
m
t
probably still define them in
buildSrc
module, but versions in
gradle.properties
. Such way your build/build cache will not be invalidated fully on any version update
👍 2