zoukankan      html  css  js  c++  java
  • ANT在Mac OS X上的安装和设置

    ANT在Mac OS X上的安装和设置

     1. 关于ANT installation on Mac OS X

     这是一篇国外的文章:

    Installation of Ant on OS X

    Recently at work, I had to perform the task of setting up Ant on my PowerBook, and I was not satisfied with the tutorials I found online. When I finished setting up everything, I wanted to record the entire procedure for my own sake and also for people who need it. At this point, if you don’t know what is Ant, you can probably stop reading further. Most likely you will not need the knowledge that I am about to share. Of course, if you already know how to do this, then please don’t waste your time.

    Before I get into step-by-step instruction, you need to download Ant. and I am assuming you saved it on your desktop. Next, open you Terminal and type the following commands:

       1. cd ~/Desktop
       2. sudo sh
       3. mv apache-ant-1.6.5-bin.zip /usr/local/
       4. cd /usr/local/
       5. unzip apache-ant-1.6.5-bin.zip
       6. chown (your account name):(your account name) apache-ant-1.6.5
       7. ln -s apache-ant-1.6.5 ant

    Now, let me explain what each line of command means:

       1. Navigate to the Desktop folder where you saved the zip file.
       2. Authenticate as root/superuser, you will need to type your password to complete the authentication.
       3. Move the Ant zip file to the directory /usr/local.
       4. Navigate to directory /usr/local. You can execute ls command to list the content of the current directory just to verify the zip file is here.
       5. Unzip the zip file (pretty obvious).
       6. Change the ownership of the expanded directory to your regular account, so in the future you can modify the Ant folder without authenticating as root again.
       7. Create a link or alias, this step is optional. After the creation of this link, you can refer to Ant directory as /usr/local/ant, instead of /usr/local/apache-ant-1.6.5.

    To test whether everything was done correctly, you can open a new Terminal window, and type /usr/local/ant/bin/ant. You should be able to execute Ant if everything is correct. Last thing we need to do is to set up our account so we can simply type Ant instead of this long command. After all, we are all too lazy to type few more characters.

    Assuming the default shell of your Terminal is bash; make sure the following lines are in the bashrc file. You can find the file under /etc.

       1. export ANT_HOME=/usr/local/ant
       2. export PATH=${PATH}:${ANT_HOME}/bin

    That’s it. To test it, quit all your Terminal windows, and then re-open a new one, type ant, you should see an error message complaining that build.xml does not exist. Done! I hope this is helpful to someone.

    from: http://www.asceticmonk.com/blog/?p=388

     2. ANT在Mac 上的安装位置:

    在Mac OS X 10.5 (Leopard)中,ant是默认自带的工具.这样当你需要做一些扩展时就需要知道它被默认安装的地方:

    /usr/shared/ant

    将你要安装的*.jar文件放到/usr/share/ant/lib中即可.


  • 相关阅读:
    和菜鸟一起学产品之产品经理的自我管理能力
    和菜鸟一起学产品之产品经理的工作职责
    遗传算法解决TSP问题实现以及与最小生成树的对比
    双系统或三系统:Grub Rescue修复方法
    err:安装程序试图挂载映像 1(缺少ISO 9660图像)
    OpenCV手写数字字符识别(基于k近邻算法)
    最小生成树
    ubuntu12.04:Tomcat 7服务器:手动安装
    ubuntu12.04:jdk7:手动安装
    ubuntu12.04:Mysql数据库:手动安装
  • 原文地址:https://www.cnblogs.com/SunWentao/p/1291803.html
Copyright © 2011-2022 走看看