ant 将所有参数传递给 java 任务
有没有办法将所有 ant 命令行参数作为属性传递给 java 任务?
例如 : ant -Dprop1=value1 -Dprop2=value2 ... -file build.xml myTarget
<target name="myTarget">
<java classname="MyClass">
<sysproperty ... all properties>
</java>
</target>
因此启动的 jvm 将具有从 ant 命令行传递的所有属性。
谢谢
Is there a way to pass all ant command-line parameters as properties to a java task ?
For example :
ant -Dprop1=value1 -Dprop2=value2 ... -file build.xml myTarget
<target name="myTarget">
<java classname="MyClass">
<sysproperty ... all properties>
</java>
</target>
So the started jvm will have all properties passed from the ant command-line.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
试试这个:
Try this: