Maven:如何阻止部署插件记录上传进度?
我怎样才能使 Maven 不会在 Hudson 控制台中垃圾邮件上传进度?
Uploading: http://www.example.com/archiva/repository/snapshots/com/example/app/1.0-SNAPSHOT/app-1.0-20100804.175640-1.war
4/9430K
8/9430K
12/9430K
16/9430K
20/9430K
24/9430K
28/9430K
How can I make it so Maven doesn't spam upload progress in the Hudson console?
Uploading: http://www.example.com/archiva/repository/snapshots/com/example/app/1.0-SNAPSHOT/app-1.0-20100804.175640-1.war
4/9430K
8/9430K
12/9430K
16/9430K
20/9430K
24/9430K
28/9430K
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为添加 maven2 的批处理模式选项应该可以解决问题。
http://books.sonatype .com/mvnref-book/reference/running-sect-options.html#running-sect-batch-option
另一个好主意是对 hudson 作业使用 -fae (fail-at-end),因为它将报告项目中不止第一个错误。
I think adding the batch mode option of maven2 should do the trick.
http://books.sonatype.com/mvnref-book/reference/running-sect-options.html#running-sect-batch-option
Another good idea is to use -fae (fail-at-end) for you hudson jobs, as it will report on more than the first error in your project.