CentOS 5.5 – Install Ant

FrançaisLinuxTutorials

Pré-requis
CentOS 5.5 – Install Java 6

Allons dans le répertoire de téléchargement et récupérons ant (si ce miroir ne répond pas trouvez-en un autre 🙂 ) :

cd ~
wget -c http://apache.cict.fr//ant/binaries/apache-ant-1.8.2-bin.tar.gz

Décompression de ant dans /usr/local/ et création des liens symboliques pour simplifier les changements de versions plus tard :

tar zxvf apache-ant-1.8.2-bin.tar.gz
mv apache-ant-1.8.2 /usr/local/ant-1.8.2
cd /usr/local/
ln -s ant-1.8.2/ ant

Ajoutons à la fin de /etc/profile des choses (ANT_HOME) :


cat >> /etc/profile << "EOF" ANT_HOME=/usr/local/ant export ANT_HOME PATH=$PATH:$ANT_HOME/bin EOF [/shell] Relancez une console et regardez si ant fonctionne : [shell] ant -version [/shell] Vous devriez obtenir une sortie du type : [shell] Apache Ant(TM) version 1.8.2 compiled on December 20 2010 [/shell] @+

Previous
CentOS 5.5 – Install Maven 3
Next
Création d’un fichier kickstart pour CentOS Net install

Leave a comment

Your email address will not be published. Required fields are marked *

Time limit is exhausted. Please reload the CAPTCHA.