在哪里可以获得 gmaven-plugin 中预定义变量的完整列表?
在哪里获取在 Maven 中的 gmaven-plugin 下执行的 Groovy 脚本中可用的变量的完整列表?除此之外,也许有人知道在哪里可以找到 Gmaven 文档?
我了解项目
和设置
。我猜还有其他一些..
Where to get a complete list of variables available in Groovy scripts executed under gmaven-plugin in Maven? Besides that, maybe someone knows where to find Gmaven documentation?
I'm aware about project
and settings
. I assume there are some others..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
页面 http://docs.codehaus.org/display/GMAVEN/Executing+Groovy +代码列出:
The page http://docs.codehaus.org/display/GMAVEN/Executing+Groovy+Code lists:
pom 中的这段代码应该可以让您更好地了解运行脚本时可用的内容。大多数有趣的部分可能都在 Binding.project 中,它是 MavenProject 的一个实例。
This snippet in your pom should give you a better idea of what's available while running the script. Most of the interesting bits are probably in the binding.project, an instance of MavenProject.