Sunday, September 13, 2015

Ant built-in Properties

This is a simple example that illustrates how to find the basedir name, file name, project name, ant version, java version, operating system name, ant home directory name, java home directory name, user home directory name and user name. Ant provides you with certain built-in properties that you may find useful during your build process. The following table shows the property name and it's description.
Ant's built-in properties:
Property
Description
ant.file
The absolute path of the build file
ant.project.name
The name of the project as set in the element's name attribute.
ant.home
The root directory of ant
ant.version
The version of this ant installation. This is not just the version number and includes information such as the compilation date.
ant.java.version
The version of the java that ant uses
basedir
The absolute path of the project
os.name
Operating system name
java.home
Java home directory name
user.home
User directory name
user.name
User name
Source code of build.xml:
"1.0"?>

"AntProperties" default="echo" basedir=".">

"echo">
"The operating system is: ${os.name}"/>


"The home path is: ${basedir}"/>


"The file name is: ${ant.file}"/>


"The Project name is: ${ant.project.name}"/>
"The Ant home directory is: ${ant.home}"/>
"The Ant version is: ${ant.version}"/>
"The Java version is: ${ant.java.version}"/>


"The Java home directory is: ${java.home}"/>
"The User home directory is: ${user.home}"/>
"The User name is: ${user.name}"/>


Run this program - the following output will be displayed:

No comments:

Post a Comment