https://kotlinlang.org logo
Title
j

jdemeulenaere

12/25/2019, 6:51 PM
What's the suggested way to share constants between subprojects using the Gradle Kotlin DSL? (e.g. plugins or dependencies versions)
n

napperley

12/25/2019, 9:10 PM
m

mbonnin

12/26/2019, 8:56 AM
t

tapchicoma

12/27/2019, 10:06 AM
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