0

我想在我的 ant 项目中使用第三方 jar 文件。我想我应该在 build.xml 文件中添加一些东西。实际上我想在我的构建文件中添加 Jsoup 依赖项。我在谷歌搜索后读过一些东西,但我找不到。我已经尝试过

 <classloader loader="system">
    <classpath>
        <fileset dir="${basedir}" includes="jsoup-1.6.2.jar"/>
    </classpath>
</classloader>

有人可以告诉我该怎么做吗?

4

2 回答 2

2

Here is one way to add a jar to your javac classpath.

<javac srcdir="${src}" destdir="${classes}">
    <classpath>
        <pathelement location="jsoup-1.6.2.jar"/>
    </classpath>
</javac>

You could also define the classpath outside the scope of javac (e.g. at top-level of your build file) and then refer to it by id in your javac task.

于 2012-05-25T11:55:50.527 回答
0

感谢您的回复。但后来我设法解决了这个问题。因为这是蚂蚁项目。有一个 ivy.xml,所以只需在 ivy.xml 中添加 jsoup 的 ant 依赖项就可以了。

于 2012-05-28T04:26:34.037 回答