当我们打包/测试时Maven跳过模块
我的 Maven 项目中有多个模块。
<modules>
<module>module-1</module>
<module>module-2</module>
<module>module-3</module>
</modules>
当我进行打包或测试等时,我想跳过 1 个模块,例如 module-3
。下面的配置文件选项似乎不起作用。
<profiles>
<profile>
<id>default</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<modules>
<module>module-1</module>
<module>module-2</module>
</modules>
</profile>
</profiles>
如何使这项工作有效或者有其他选择吗?
I have multiple modules in my maven project.
<modules>
<module>module-1</module>
<module>module-2</module>
<module>module-3</module>
</modules>
I would like to skip 1 module , say module-3
when i do package or test etc. This below profile option does not seem to work.
<profiles>
<profile>
<id>default</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<modules>
<module>module-1</module>
<module>module-2</module>
</modules>
</profile>
</profiles>
How to make this work or are there any alternatives?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
阅读您的评论后,让我提出以下建议:
module-3
是一个带有集成测试的模块。可以与其他模块一起编译它,它会非常快,并且可能您无论如何都会需要它,否则它最终会停止编译。另外,我认为你不应该“玩”这样的模块结构,因为IDE应该打开所有模块(可能你打开这个“main”pom.xml
)failsafe-plugin
管理。因此,您可以配置此插件,使其仅在某些属性上实际执行。可以使用 Maven 配置文件来完成。After reading your comment, let me suggest the following:
module-3
is a module with integration tests. Its ok to compile it with other modules, it will be pretty fast and probably you'll want it anyway, otherwise it will eventually stop to compile. In addition, I don't think you should "play" with module structure like this, because the IDE should open all the modules (probably you open this "main"pom.xml
)failsafe-plugin
. So you can configure this plugin so that it will be actually executed only upon some property. It can be done with maven profiles.