如何在类路径中为ant脚本添加一个文件夹?
我需要在当前类路径中为我为运行 java 文件编写的 ant 脚本添加一个文件夹。怎么办呢?
I need to add a folder in current classpath for ant script that I have written for running java files. How can it be done?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以将其添加为属性
或使用嵌套的
标记:请参阅 Java 任务。
You could add it as an attribute
Or using the nested
<classpath>
tag:See the documentation for the Java task.
我在任务的标签中添加了以下行,它运行成功。
此后脚本成功运行。
i added the following line in the tag of the task and it ran successfully.
and after this the script ran successfully.