开发者

Is there a batch mode command for maven branch?

开发者 https://www.devze.com 2023-03-31 20:36 出处:网络
I have a par开发者_开发百科ent pom with list of modules. Each module has a <parent> section with version number of a parent.

I have a par开发者_开发百科ent pom with list of modules. Each module has a <parent> section with version number of a parent. First I do a release, which creates tag with version without SNAPSHOT and then I want to create a branch from that tag. The problem is that maven keeps asking about version number for each module. Is there a way to make maven set all modules to the same version? Thanks.


If you're using the release plugin, and by 'do a release' you mean run

mvn release:prepare release:perform

then you can add the autoVersionSubmodules flag, as follows:

mvn release:prepare release:perform -DautoVersionSubmodules=true

This will set the version of all your child projects to the version you accept for the parent. Or if you just want to accept all the defaults, you can use the --batch-mode option. See http://maven.apache.org/plugins/maven-release-plugin/examples/non-interactive-release.html for details.


You can use release:branch goal instead of release:prepare

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号