본문 바로가기

OS/Linux

[Linux] Apache Ant Installation (Binary)

반응형

Download: https://archive.apache.org/dist/ant/binaries/

 

Index of /dist/ant/binaries

 

archive.apache.org

 

# sudo wget https://archive.apache.org/dist/ant/binaries/apache-ant-1.10.8-bin.tar.gz
# sudo tar xzvf apache-ant-1.10.8-bin.tar.gz
# sudo mv apache-ant-1.10.8 /usr/local
# sudo ln -s /usr/local/apache-ant-1.10.8 /usr/local/ant

 

# sudo vi /etc/profile.d/ant.sh
export ANT_HOME=/usr/local/ant
export PATH=${ANT_HOME}/bin:${PATH}

저장

 

# source /etc/profile.d/ant.sh

 

 

참고: https://ant.apache.org/index.html

 

Apache Ant - Welcome

Welcome Apache Ant™ Apache Ant is a Java library and command-line tool whose mission is to drive processes described in build files as targets and extension points dependent upon each other. The main known usage of Ant is the build of Java applications. An

ant.apache.org

        https://websiteforstudents.com/how-to-install-apache-ant-on-ubuntu-18-04-16-04/

 

How to Install Apache Ant on Ubuntu 18.04 | 16.04 | Website for Students

This brief tutorial shows students and new users how to install Apache Ant on Ubuntu 18.04 | 16.04. Apache Ant is a Java library and tool that has number of built-in tasks allowing to compile…

websiteforstudents.com

 

반응형