Second attempt to get some help on this issue...
properties.gif shows the build file properties I'm using
messages.gif shows the resulting error.
build.xml is the trivial build script I'm using for the test

When I turn off "include project classpath" , the build script runs 
fine. I've tested this on a new, empty project, so there's nothing in my 
own code that is wrong.

Has anybody had similar problems?

Pepijn Van Eeckhoudt

GIF image

GIF image

<project name="MyProject" default="build" basedir=".">
   <property name="src.dir" value="src"/>
   <property name="dest.dir" value="classes"/>

   <target name="build">
      <javac srcdir="${src.dir}" destdir="${dest.dir}" debug="on"/>
   </target>
</project>

Reply via email to