Total Questions:-39 Goto Page:
1
2 3 4
R4R ---> Articles--> Ant -->Ant Articles List
Page 1
Articles:
Ant Can make directory with relative path?1. true2. false
Post Your View
Views
By:Som
Date:
Articles:
From where we can download Ant latest version?
Post Your View
ViewsWe can download the latest version of ant from the website of Apache ant.The link of website is http://ant.apache.org/bindownload.cgiWe need download
For More
By:Rajesh Kumar
Date:
Articles:
Give Example How we can deploy file on server using ant?
Post Your View
Views<?xml version="1.0" ?>
<project name="ProjectName" default="deploy">
..................
................
<target name="deploy" depends="compile,
For More
By:Rajesh Kumar
Date:
Articles:
How many types of build tool you know?
Post Your View
ViewsI know two type of build tool which are used to build a java based project.
These are ANT and Make.
For More
By:Rajesh Kumar
Date:
Articles:
How many ways we can set properties into build ant file?
Post Your View
ViewsThere are six ways to set properties:
1.Supplying both the name and value attribute.
<property name="src.dir" value="src"/>
2.Supplyin
For More
By:Rajesh Kumar
Date:
Articles:
How to make build directory in XML file?
1. <mkdir dir="${dir.build}"/>
2. <makedir dir="${dir.build}"/>
3. <mkdir Dir="{dir.build}"/>
4. none
Post Your View
Views<mkdir dir="${dir.build}"/>
For More
By:Som
Date:
Articles:
How to set the Source directory in Ant?
1. <Property name="dir.src" value="src"/>
2. <property name="dir.build" value="biuld"/>
3. <property name="dir.src" value="src"/>
4. none
Post Your View
Views<property name="dir.src" value="src"/>
For More
By:Som
Date:
Articles:
How we can create a jar using Ant?
Post Your View
ViewsTo make a jar of classes we need set target as jar. In this target we need to make directory in which jar will stored. Then we need jar tag to make th
For More
By:Rajesh Kumar
Date:
Articles:
How we can echo message in Ant?
Post Your View
ViewsWe need to use <echo> tag to print message on ant consol. We can use following syntax to print message on ant command prompts.
<project>
………
…
For More
By:Rajesh Kumar
Date:
Articles:
How we can run jar using ant?
Post Your View
ViewsTo run a jar we need to create a target with the name of run. In this target we need to pass <java> which is used to instruct ant to run application.
For More
By:Rajesh Kumar
Date:
Go:
1
2 3 4