groovy 葡萄详细
使用 Groovy Grape 时有没有办法打印 Ivy 输出。
当我使用 Grape 时,它只是挂在那里直到完成下载所有依赖项。我想知道发生了什么以及正在下载什么。
谢谢,
Is there a way to print Ivy output when using Groovy Grape.
when I use Grape, it's just hanging there till finishes downloading all dependencies. I would like to know what it's happening and what it's downloading.
Thanks,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
看起来这可能在 Groovy 1.7.6
https://issues.apache.org/ jira/browse/GROOVY-4014
即 JAVA_OPTS 或命令行中的
-Dgroovy.grape.report.downloads=true
Looks like this might be in Groovy 1.7.6
https://issues.apache.org/jira/browse/GROOVY-4014
i.e.
-Dgroovy.grape.report.downloads=true
in JAVA_OPTS or on the command linetim_yates 的答案很好,但如果您需要调试 Grapes 的问题,那么这可能很有用:
来源:http://theholyjava.wordpress.com/2012/04/02/groovy-grape-troubleshooting-failed-download/
tim_yates answer is good but if you need to debug a problem with Grapes, then this might be useful:
source: http://theholyjava.wordpress.com/2012/04/02/groovy-grape-troubleshooting-failed-download/
为了进行完整的调试,您需要在 Groovy 脚本中运行时使用通过 JAVA_OPTS 导出的这两个设置。
For full debugging, you need to use both of these settings exported via
JAVA_OPTS
when running in a Groovy script.视窗
<代码>
设置 JAVA_OPTS="-Dgroovy.grape.report.downloads=true -Divy.message.logger.level=4 %JAVA_OPTS%"
UNIX
<代码>
导出 JAVA_OPTS="-Dgroovy.grape.report.downloads=true -Divy.message.logger.level=4 $JAVA_OPTS"
windows
set JAVA_OPTS="-Dgroovy.grape.report.downloads=true -Divy.message.logger.level=4 %JAVA_OPTS%"
unix
export JAVA_OPTS="-Dgroovy.grape.report.downloads=true -Divy.message.logger.level=4 $JAVA_OPTS"