使用 ANT 实用程序构建 java 项目

发布于 2024-08-17 00:55:57 字数 149 浏览 7 评论 0原文

我正在使用 ANT 脚本来构建 Eclipse 工作区中项目的 jar。我使用的命令是 ant -f

我想仅使用 ant 脚本构建项目(目前我正在使用 eclipse 来实现此目的)。有人可以帮我吗?

I am using an ANT script to build the jars of the projects that I have in my eclipse workspace. The command that I use is ant -f <build_file.xml>

I want to build the projects using the ant script only (at the moment I am using eclipse for the this). Can anyone help me out?

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

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

发布评论

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

评论(3

心碎的声音 2024-08-24 00:55:57

ant 手册ANT 教程 将是最好的起点。

The ant manual and ANT Tutorial would be the best places to start.

第几種人 2024-08-24 00:55:57

这将使用 my_prj/lib 中的 jar 将 my_prj/src 中的 Java 文件编译为 my_prj/classes

<javac srcdir="my_prj/src"
    destdir="my_prj/classes"
    debug="on">
    <classpath>
        <fileset dir="my_prj/lib">
            <include name="**/*.jar"/>
        </fileset>
    </classpath>
</javac>

This will compile the Java files in my_prj/src to my_prj/classes using the jars in my_prj/lib.

<javac srcdir="my_prj/src"
    destdir="my_prj/classes"
    debug="on">
    <classpath>
        <fileset dir="my_prj/lib">
            <include name="**/*.jar"/>
        </fileset>
    </classpath>
</javac>
混浊又暗下来 2024-08-24 00:55:57

您的 Ant 构建脚本将包含多个可以调用的目标。从命令行使用 -p 开关列出可用的目标及其描述:

ant -f mybuildfile.xml -p

然后您可以调用列出的目标之一:

ant -f mybuildfile.xml sometarget

[注意:-f如果构建文件名为 build.xml,则不需要,这是通常的约定]

Your Ant build script will contain several targets that you can invoke. From the command line use the -p switch to list those that are available along with their descriptions:

ant -f mybuildfile.xml -p

You can then invoke one of the listed targets:

ant -f mybuildfile.xml sometarget

[Note: the -f is not necessary if the build file is called build.xml, as is the usual convention]

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