I have a really strange problem! I made a mistake like this in a class System.out.println( ) asdfa ;
after saving the file, running ant compile throws this: compile: BUILD SUCCESSFUL It seems like the javac task is not recompiling the class ( since using a ant clean, ant compile works ). If I run ant from command line or JIdea it runs properly and throws the error on that line. So it seems it is an eclipse specific error. This are my ant tasks that have always worked wonderfully <!-- Check timestamp on files --> <target name="prepare"> <tstamp /> </target> <!-- Normal build of application --> <target name="compile" depends="prepare,resources"> <javac debug="true" debuglevel="lines,source" srcdir="src" destdir="${webinf}/classes"> <classpath refid="compile.classpath" /> </javac> </target> I´m using eclipse 3.1.0 and ant 1.6.2 It this an eclipse bug? a known issue maybe? Everything helps at this stage! Thanks a lot! Lucas --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]