如何在类路径中为ant脚本添加一个文件夹?

发布于 2024-09-28 03:15:27 字数 53 浏览 1 评论 0原文

我需要在当前类路径中为我为运行 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 技术交流群。

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

发布评论

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

评论(2

不及他 2024-10-05 03:15:27

您可以将其添加为属性

<java classpath="${extraDir}"
      classname="pkg.Class">
      ...
</java>

或使用嵌套的 标记:

<java classname="pkg.Class">
  <classpath>
    <pathelement path="${extraDir}"/>
  </classpath>
</java>

请参阅 Java 任务

You could add it as an attribute

<java classpath="${extraDir}"
      classname="pkg.Class">
      ...
</java>

Or using the nested <classpath> tag:

<java classname="pkg.Class">
  <classpath>
    <pathelement path="${extraDir}"/>
  </classpath>
</java>

See the documentation for the Java task.

请帮我爱他 2024-10-05 03:15:27

我在任务的标签中添加了以下行,它运行成功。

<pathelement path="C:\JunitTest\folderIsHere"/>

此后脚本成功运行。

i added the following line in the tag of the task and it ran successfully.

<pathelement path="C:\JunitTest\folderIsHere"/>

and after this the script ran successfully.

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