Mega Code Archive

 
Categories / Java Tutorial / Ant
 

Construct path in ant script

<?xml version="1.0"?> <project name="Apache Ant Properties Project" basedir=".">      <target name="build.path">     <echo message="File: ${basedir}${file.separator}build.xml"/>     <echo message="Path: ${basedir}${file.separator}build.xml${path.separator}${basedir}${file.separator}build.properties"/>   </target> </project>