taskdef 的类路径?

发布于 2024-10-08 22:58:09 字数 234 浏览 2 评论 0 原文

我正在 Ant 中定义一个新任务。 我将其导出为 jar 并添加到我的构建文件中:

<taskdef classname="X" classpath="Y.jar"/>

问题是这在运行时失败。 它告诉我没有找到该课程。 通过将 jar 添加到类路径,它就得到了纠正。

我的问题是:有没有一种方法可以在不更改类路径的情况下从 Ant 构建文件引用我的 jar?

I am defining a new task in Ant.
I exported it as a jar and added to my buildfile:

<taskdef classname="X" classpath="Y.jar"/>

The problem is that this fails at runtime.
It tells me it didn't find the class.
By adding the jar to the classpath, it is corrected.

My question is: Is there a way that I can refer to my jar from the Ant buildfile, without changing the classpath?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

巡山小妖精 2024-10-15 22:58:09

如果您知道 jar 的路径,则在 ant 脚本内您可以为自己的任务定义类路径。

<taskdef name="myTaskName" classname="com.myorg.myclass">
  <classpath>
    <pathelement location="pathToMyJar.jar"/>
  </classpath>
</taskdef>

If you know the path of your jar, inside ant script you can define the classpath for your own task.

<taskdef name="myTaskName" classname="com.myorg.myclass">
  <classpath>
    <pathelement location="pathToMyJar.jar"/>
  </classpath>
</taskdef>
以歌曲疗慰 2024-10-15 22:58:09

是的。我假设您查看了 doctaskdef,仅显示任务名称和实现类。但是,taskdeftypedef 的子类,如果您查看 classpath 属性。

但是,使用此属性意味着您的 ant 脚本与特定环境相关联;它们不太便携。更好的方法是使用 -lib 将类路径传递到 Ant 中

Yes. I'm assuming that you looked at the doc for taskdef, which just shows the task name and implementing class. However, taskdef subclasses typedef, and if you look at the doc for the latter you'll see that there's also a classpath attribute.

HOWEVER, using this attribute means that your ant scripts are tied to a particular environment; they aren't very portable. A far better approach is to pass the classpath into Ant, using the -lib invocation option.

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