bod
04/25/2020, 1:22 PMkts
. Let's say I want some globally accessible map for dependency versions (for instance "gradle" to "6.3", "kotlin" to "1.3.70"
and so on) - and I'd like to be able to access it from the root's build.gradle.kts, and also the other module's. What's the simplest way to do this? Currently I have a solution using extra
but is there a way to simply add my own object
to the classpath or something like that?Peter
04/25/2020, 1:38 PMbod
04/25/2020, 1:45 PMPeter
04/25/2020, 1:46 PMmbonnin
04/25/2020, 10:46 PMmbonnin
04/25/2020, 10:47 PMmbonnin
04/25/2020, 10:49 PMdependencies.gradle
file so it can also be shared with test projects. I believe this will play nicer with incremental builds too.mbonnin
04/25/2020, 10:49 PMeval()
to pull that in the build.gradle.kts
Peter
04/26/2020, 2:41 AMbod
04/26/2020, 9:39 AM