DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUGĀ· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://issues.apache.org/bugzilla/show_bug.cgi?id=40776>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED ANDĀ· INSERTED IN THE BUG DATABASE.
http://issues.apache.org/bugzilla/show_bug.cgi?id=40776 [EMAIL PROTECTED] changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED Target Milestone|--- |1.7.1 ------- Additional Comments From [EMAIL PROTECTED] 2007-07-20 10:19 ------- I have added an new attribute to the javac task - includeDestClasses. This is by default set to true - in which case the javac task includes the destination directory in the classpath parameter given to javac command (default behaviour), if set to false, this will not happen. the build file: <project name="Test" default="build"> <presetdef name="compile"> <javac srcdir="src" destdir="bin" target="1.5" source="1.5" debug="true" includeDestClasses="false" listfiles="true"> </javac> </presetdef> <target name="build"> <mkdir dir="bin"/> <compile/> <delete><fileset dir="bin/test" includes="Test3*.class"/></delete> <compile/> </target> </project> now works. -- Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]