How can I share a single version across a multi-pr...
# community-support
g
How can I share a single version across a multi-project build? Can't seem to find it in the docs. Essentially I want to declare
version = "1.0.0"
or so in my root
settings.gradle.kts
and then have the artifacts at subprojects
/foo
and
/bar
be published with that version
v
If you define the version in
gradle.properties
that should propagate to all subprojects as long as you don't define a deviating one
g
Ah, thanks!