I have a multi module project, with a parent x pom containing all sub projects in its tag.
Most of those have x as their parent, but some are rest servers which use swagger as their parent.
When using commands such as "test" or "deploy" on parent x, those projects are included. But when using the command "mvn versions:set -DnewVersion=XYZ" on parent x, those projects will not be updated. Even "mvn versions:set versions:update-child-modules -DnewVersion=X.Y.Z-SNAPSHOT" will not work
Is there a way to update also the projects with a different parent?