As we discussed all basic concepts of Apache ant, let us see the below example to build java project using ant.
In build.xml file:
1. src.dir: It specify the project source folder.
2. build.dir: It specify the project compilation output folder.
Example explanation:
When we run the build.xml file, control first go on the project element and look for the default target. In our example, mainTarget is the default target so control go on the mainTarget. Then control looks for those targets on which mainTarget depends. The mainTarget depends on compile target which is further depends upon clean and makedir target. So first clean target will execute followed by makedir, compile and mainTarget. The javac task in the compile target is responsible for compiling the code.
Example:
ArmstrongNumber.java
/** * This program is used to find that given number is Armstrong or not. * @author w3schools */ public class ArmstrongNumber { /** * This method is used to find that * given number is Armstrong or not. * @param num */ static void armstrong(int num){ int newNum = 0, reminder, temp; temp = num; //find sum of all digit's cube of the number. while(temp != 0){ reminder = temp % 10; newNum = newNum + reminder*reminder*reminder; temp = temp/10; } //Check if sum of all digit's cube of the number is //equal to the given number or not. if(newNum == num){ System.out.println("Given no. is an armstrong no."); }else{ System.out.println("Given no. is not an armstrong no."); } } public static void main(String args[]){ //method call armstrong(407); } } |
build.xml
<?xml version="1.0" encoding="UTF-8"?> <!-- Set the project name, basedir and default target to be executed--> <project name="Ant-Build-Project-Test" default="mainTarget" basedir="."> <!-- Sets the properties here--> <property name="src.dir" location="src" /> <property name="build.dir" location="bin" /> <!-- Target for deleting the existing directories--> <target name="clean"> <delete dir="${build.dir}" /> </target> <!-- Target for creating the new directories--> <target name="makedir"> <mkdir dir="${build.dir}" /> </target> <!-- Target for compiling the java code--> <target name="compile" depends="clean, makedir"> <javac srcdir="${src.dir}" destdir="${build.dir}"> </javac> </target> <!-- Defualt target to run all targets--> <target name="mainTarget" depends="compile"> <description>Main target</description> </target> </project> |
Console:
Buildfile: D:\TestWorkspace\AntBuildProject\build.xml clean: [delete] Deleting directory D:\TestWorkspace\AntBuildProject\bin makedir: [mkdir] Created dir: D:\TestWorkspace\AntBuildProject\bin compile: [javac] D:\TestWorkspace\AntBuildProject\build.xml:20: warning: 'includeantruntime' was not set, defaulting to build.sysclasspath=last; set to false for repeatable builds [javac] Compiling 1 source file to D:\TestWorkspace\AntBuildProject\bin mainTarget: BUILD SUCCESSFUL Total time: 688 milliseconds |
Download this example.
Next Topic: How to create java document using ant in eclipse with example?
Previous Topic: Ant build file.