码迷,mamicode.com
首页 > 系统相关 > 详细

Ubuntu环境下配置ant

时间:2014-12-18 18:41:58      阅读:272      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   ar   sp   on   文件   div   log   

配置ant

1. 下载ant(http://ant.apache.org/bindownload.cgi)

例如我下载的是:apache-ant-1.9.4-bin.tar.gz

解压ant,将文件夹名称改为apache_ant,并移动到/home目录下

 

2. 设置环境变量

sudo gedit /etc/profile

 在打开的profile文件末尾加入:

#set ant
export ANT_HOME=/home/apache_ant
export PATH=/home/apache_ant/bin:$PATH

 

3. 测试

ant

 shell中应该会返回以下信息,表示安装成功

Buildfile: build.xml does not exist!
Build failed

原因:因为ant不带任何参数,会在当前日志下搜索build.xml文件。如果找到了就以该文件作为默认的生成文件,并执行默认的target。

 

Ubuntu环境下配置ant

标签:style   blog   http   ar   sp   on   文件   div   log   

原文地址:http://www.cnblogs.com/xxx0624/p/4172277.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!