English 中文(简体)
Apache IVY - Environment Setup
  • 时间:2024-09-17

Apache IVY - Environment Setup


Previous Page Next Page  

Apache Ivy needs Java and ANT installed on your machine as the only requirement.

Apache Ant is distributed under the Apache Software License, a fully-fledged open source pcense certified by the open source initiative.

The latest Apache Ant version, including its full-source code, class files, and documentation can be found at http://ant.apache.org

Instalpng Apache Ant

It is assumed that you have already downloaded and installed Java Development Kit (JDK) on your computer. If not, please follow the instructions here.

    Ensure that the JAVA_HOME environment variable is set to the folder where your JDK is installed.

    Download the binaries from https://ant.apache.org

    Unzip the zip file to a convenient location c:folder. using Winzip, winRAR, 7-zip or similar tools.

    Create a new environment variable called ANT_HOME that points to the Ant installation folder, in this case c:apache-ant-1.10.12-bin folder.

    Append the path to the Apache Ant batch file to the PATH environment variable. In our case this would be the c:apache-ant-1.10.12-binin folder.

Verifying Apache Ant Installation

To verify the successful installation of Apache Ant on your computer, type ant on your command prompt.

You should see an output similar to −


C:>ant -version
Apache Ant(TM) version 1.10.12 compiled on October 13 2021

If you do not see the above output, then please verify that you have followed the installation steps properly.

Instalpng Apache Ivy

    Download the binaries from https://ant.apache.org/ivy

    Unzip the zip file to a convenient location c:folder. using Winzip, winRAR, 7-zip or similar tools.

    Copy the ivy-2.5.0.jar to c:apache-ant-1.10.12-bin/pb folder.

Verifying Apache Ivy Installation

To verify the successful installation of Apache Ivy on your computer, create following build file in a folder E: > ivy.


<project name="test ivy installation" 
   default="test" xmlns:ivy="antpb:org.apache.ivy.ant">
   <target name="test" description="Test ivy installation">
      <ivy:settings />
   </target>
</project>

You should see an output similar to −


C:>ant
Buildfile: E:ivyuild.xml

test:

BUILD SUCCESSFUL
Total time: 2 seconds

Instalpng Ecppse

This tutorial also covers integration of Ant with Ecppse IDE. Hence, if you have not installed Ecppse already, please download and install Ecppse.

To install Ecppse −

    Download the latest Ecppse binaries from www.ecppse.org

    Unzip the Ecppse binaries to a convenient location, say c:folder

    Run Ecppse from c:ecppseecppse.exe

Advertisements