ant_1_准备
ant_1_准备
.1、设置环境变量
1)dos下
setANT_HOME=D:\apache-ant-1.8.3;
setPATH=%PATH%;%ANT_HOME%\bin;
2)window界面
我的电脑-属性-高级-环境变量
变量名:ANT_HOME变量值:D:\apache-ant-1.8.3;
变量名:PATH变量值追加%ANT_HOME%\bin;
3)linux
root用户登录,修改root目录下“。bash_profile”属性文件,追加如下
exportANT_HOME=/user/local/ant;
exportPATH=$PATH;$ANT_HOME/bin;
2、常用命令
1)ant:使用当前目录下的build.xml运行ant,执行默认target;
2)ant-buildfiletwm.xml:使用当前目录下的twm.xml运行ant,执行默认target;
3)ant-buildfiletwm.xmlmain:使用当前目录下的twm.xml运行ant,执行main的target;
4)ant-buildfiletwm.xml-Dbuild=build/classesmain:使用当前目录下的twm.xml运行ant,执行main的target,设定build的属性值为build/classes;
相关推荐
chichichi0 2020-01-06
BitsPlayer 2020-05-29
roygbip 2020-02-16
BitsPlayer 2020-02-13
lrcoop 2020-02-03
BitsPlayer 2019-12-19
BitsPlayer 2019-12-14
xueliangEmail 2013-07-22
cailianren 2010-04-15
wugang0 2019-11-09
lustdevil 2011-08-28
evilvoid 2008-04-17
leonranri 2019-11-05
leeccr 2019-10-31
evilvoid 2010-02-02