使用 ANT 实用程序构建 java 项目
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
ant 手册 和 ANT 教程 将是最好的起点。
The ant manual and ANT Tutorial would be the best places to start.
这将使用 my_prj/lib 中的 jar 将 my_prj/src 中的 Java 文件编译为 my_prj/classes。
This will compile the Java files in my_prj/src to my_prj/classes using the jars in my_prj/lib.
您的 Ant 构建脚本将包含多个可以调用的目标。从命令行使用
-p
开关列出可用的目标及其描述:然后您可以调用列出的目标之一:
[注意:
-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:You can then invoke one of the listed targets:
[Note: the
-f
is not necessary if the build file is calledbuild.xml
, as is the usual convention]