如何让maven 3.0仅构建具有本地scm更改的模块

发布于 2024-12-11 08:56:42 字数 885 浏览 0 评论 0 原文

在 Maven 2.x 中,您可以使用reactor:make-scm-changes 来仅构建具有本地 scm 更改的模块。

使用 maven 3.0.3 运行此模块会导致失败

[ERROR] Failed to execute goal org.apache.maven.plugins:maven-reactor-plugin:1.0
:make-scm-changes (default-cli) on project my-project: The parameters 'artifactLis
t', 'folderList' for goal org.apache.maven.plugins:maven-reactor-plugin:1.0:make
-scm-changes are missing or invalid -> [Help 1]

这篇文章似乎表明 maven 3.0 没有等效的功能 http://mail-archives.apache.org/mod_mbox/maven-dev/201011.mbox/%[电子邮件受保护]%3e

maven 3.0 中是否有替代品来获得仅构建具有本地 scm 更改的模块的功能?

In maven 2.x you could use the reactor:make-scm-changes to build only modules with local scm changes.

Running this module with maven 3.0.3 results in a failure

[ERROR] Failed to execute goal org.apache.maven.plugins:maven-reactor-plugin:1.0
:make-scm-changes (default-cli) on project my-project: The parameters 'artifactLis
t', 'folderList' for goal org.apache.maven.plugins:maven-reactor-plugin:1.0:make
-scm-changes are missing or invalid -> [Help 1]

This post seems to indicate there is no equivalent functionality for maven 3.0
http://mail-archives.apache.org/mod_mbox/maven-dev/201011.mbox/%[email protected]%3e

Is there a replacement in maven 3.0 to get the functionality to only build modules that have local scm changes?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

决绝 2024-12-18 08:56:42

你可以用一个围绕以下内容的 shell 脚本来推出你自己的 shell 脚本:

svn --non-interactive status

你的 shell 脚本可以做类似这样的事情:

PROJECT_LIST=`svn --non-interactive status | filter out target dir \
                                           | cut out status \
                                           | cut out subdirectories \
                                           | replace line endings with ','`
mvn $* --projects=$PROJECT_LIST

我没有测试它,但我知道理论上这是可能的。

You could roll your own with a shell script that centers around:

svn --non-interactive status

Your shell script could do something like so:

PROJECT_LIST=`svn --non-interactive status | filter out target dir \
                                           | cut out status \
                                           | cut out subdirectories \
                                           | replace line endings with ','`
mvn $* --projects=$PROJECT_LIST

I didn't test it out, but I know it's possible in theory.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文