groovy 葡萄详细

发布于 2024-09-19 11:43:36 字数 112 浏览 8 评论 0原文

使用 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 技术交流群。

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

发布评论

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

评论(4

作妖 2024-09-26 11:43:37

看起来这可能在 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 line

嗼ふ静 2024-09-26 11:43:37

tim_yates 的答案很好,但如果您需要调试 Grapes 的问题,那么这可能很有用:

-Divy.message.logger.level=4

来源: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:

-Divy.message.logger.level=4

source: http://theholyjava.wordpress.com/2012/04/02/groovy-grape-troubleshooting-failed-download/

懒的傷心 2024-09-26 11:43:37

为了进行完整的调试,您需要在 Groovy 脚本中运行时使用通过 JAVA_OPTS 导出的这两个设置。

export JAVA_OPTS='-Divy.message.logger.level=4 -Dgroovy.grape.report.downloads=true'
./myScript.groovy

For full debugging, you need to use both of these settings exported via JAVA_OPTS when running in a Groovy script.

export JAVA_OPTS='-Divy.message.logger.level=4 -Dgroovy.grape.report.downloads=true'
./myScript.groovy
李不 2024-09-26 11:43:37

视窗
<代码>
设置 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"

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