In order to compile and run sample clients for WSO2 products, it is necessary to install the latest version of Apache Ant that is compatible with the product.
Note
Refer to Installation Prerequisites for the list of all applications necessary to install and work with WSO2 products you plan to use.
Follow the instructions below to install Apache Ant from the command line.
Establish a SSH connection to the Linux machine or log in on the text Linux console. You should either log in as root or obtain root permissions after login via su
or sudo
command.
wget http://archive.apache.org/dist/ant/binaries/apache-ant-1.8.2-bin.tar.gz
gunzip -c apache-ant-1.8.2-bin.tar.gz |tar xvf -
Add the following lines to BASHRC file:
export ANT_HOME=/opt/apache-ant-1.8.2 export PATH=${ANT_HOME}/bin:${PATH}
ant -version