one another related type-safe build scripts. is th...
# community-support
v
one another related type-safe build scripts. is there an easy way how to override the versions for the
libs
version catalog created for
libs.versions.toml
? or do I have to I rename it and use
form
instead?
Copy code
dependencyResolutionManagement {
    versionCatalogs {
        mylibs {
             from('mylibs.versions.toml')
             version('some-version')
        }
    }
}
the use case is that I want to share the versions file across our monorepo using symlink as we currently do for
gradle.properties
but I would like to let the different team to be able to override the default versions in the TOML file