Let’s say I have two gradle modules with project dependencies between each other. Module A depends on Module B.
When building and installing A the pom file for A will include a dependency referring to B and the current version of B, let’s say 1.0.0. If I then produce a new version of B, let’s say 1.0.1 the POM file for A still refers to version 1.0.0 of B.
Is there any way to configure the dependency declaration in the POM file for A so that it would say 1.0.+?