You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We have multiple subproject and when we build, the plugin echos the version x times for each submodule (where x is the amount of submodules + the root project)
The text was updated successfully, but these errors were encountered:
Hi @qoomon
I'm also currently testing the plugin in multi-module project, it works nice so far but I have a similar verbose logging problem even with 6.4.4. On every build the plugin prints 88 lines 😬
The plugin is configured only on the root project. All child projects inherit the same version and properties.
This is the setup: The gradle project has a special version for feature branches. But it also has a library dependency that has a different version in that case. I solved this by setting a property someOtherDependencyVersion:
val devBranchVersion = "99.0.0-SNAPSHOT"
gitVersioning.apply {
refs {
// [...]
branch("feature/(?<featureBranchName>.+)") {
version = "99.0.0-\${ref.featureBranchName}-SNAPSHOT"
properties = mapOf("someOtherDependencyVersion" to devBranchVersion)
}
// [...]
}
We have multiple subproject and when we build, the plugin echos the version x times for each submodule (where x is the amount of submodules + the root project)
The text was updated successfully, but these errors were encountered: