Hi All,
 

In the ant build file displayed below, when i am trying to reference the src 
directory declared with the name src.dir, it say ${src.dir} directory not 
found. Why is this happening so, to my understanding, ${src} should obtain 
the value associated with that name.

<?xml version = '1.0' encoding = 'ISO-8859-1'?>
<project name="Learn_Ant" default="compile" 
basedir="/home1/reshma/Learn_Build">
  <target name="init">
    <property name="src.dir" value="src"/>
  </target>
  <target name="compile" >
    <javac srcdir="${src}" destdir="."/>
    <echo message="${build.dir}"/>
  </target>
</project>

Thanks in advance,
Reshma Pai

--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to