Maven 3:覆盖 POM 中的命令行
我们可以使用命令行覆盖 POM 中定义的属性。
我们能以某种方式产生相反的效果吗?覆盖POM中的命令行参数?
我有一个 Hudson 在命令行中带有“-Dmaven.test.skip -DskipTests -DskipITs”,我无法更改它(管理员在一个月内响应请求),但我还是想运行我的测试..
谢谢)
We can override properties defined in POM using command line.
Can we somehow make the opposite effect? To override command line parameters in POM?
I have a Hudson with "-Dmaven.test.skip -DskipTests -DskipITs" in command line, and I can't change it (admin responds to requests in a month), but I want to run my tests anyway..
Thank you)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以尝试的事情:更改 POM 以将测试作为生命周期另一个阶段的一部分执行。我不知道如何立即执行此操作,但在最坏的情况下,您始终可以使用
将其插入。祝您好运!Something you might try: Change your POM to execute the tests as part of another phase in the lifecycle. I don't know how to do this off-hand, but in the worst-case you could always use
<ant>
to shoehorn it in. Good luck!覆盖pom中显式忽略测试的配置。
Overwrite the configuration for ignoring the test in the pom explicit.