如何在 Ant 脚本中内联几行 java 行?
如何将几行 java 代码行内联(此处文档)到 Ant 脚本中? 请举个例子?
How to inline (here-document) few java code lines into a Ant script ?
Please an example ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我不相信你可以明智地为实际的 Java 代码做到这一点,但我已经通过 取得了很多成功绝妙的。 Groovy Ant 任务文档非常好。 例如:(
如果您愿意,您可以用更像 Java 的方式编写 Groovy。)
I don't believe you can sensibly do it for actual Java code, but I've had a lot of success doing this with Groovy. The Groovy Ant task documentation is pretty good. For example:
(You can write Groovy in a much more Java-like fashion if you want to.)
您可以使用 标签,包括 Javascript、Groovy、JRuby 等。
最像 Java 的 其中 BeanShell 可能就是您想要的。
You can add any BSF capable language to Ant, using the <script> tag, including Javascript, Groovy, JRuby etc.
The most Java-like of these is BeanShell, and is probably what you want.