taskdef 的类路径?
我正在 Ant 中定义一个新任务。 我将其导出为 jar 并添加到我的构建文件中:
<taskdef classname="X" classpath="Y.jar"/>
问题是这在运行时失败。 它告诉我没有找到该课程。 通过将 jar 添加到类路径,它就得到了纠正。
我的问题是:有没有一种方法可以在不更改类路径的情况下从 Ant 构建文件引用我的 jar?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您知道 jar 的路径,则在 ant 脚本内您可以为自己的任务定义类路径。
If you know the path of your jar, inside ant script you can define the classpath for your own task.
是的。我假设您查看了 doc 的
taskdef,仅显示任务名称和实现类。但是,
属性。taskdef
是typedef
的子类,如果您查看 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
subclassestypedef
, and if you look at the doc for the latter you'll see that there's also aclasspath
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.