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=31834>. 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=31834 defaultexcludes is deprecated but not in the documentation [EMAIL PROTECTED] changed: What |Removed |Added ---------------------------------------------------------------------------- Status|RESOLVED |REOPENED Resolution|WORKSFORME | ------- Additional Comments From [EMAIL PROTECTED] 2004-11-03 17:32 ------- looks like I shouldn't have WORKSFORME this bug afterall I am creating a patch for the documentation. Also contacted Ariel and double checked after her response Ariel Kroszynski to me More options Oct 24 well, It should read tried to use <delete defaultexcludes="no"> . . . sorry for the typo... - Show quoted text - steve morin wrote: >I was going to fix the documentation for this, but looking quickly >didn't see <find> as a core task. Does this also happen if using the >core task delete? Where did you get the task find from ? >Steve > > >tried to use <find defaultexcludes="no"> >and got: >[delete] DEPRECATED - Use of the implicit FileSet is deprecated. Use a nested >fileset element in stead. > >whilst in the documentation it doesn't state thi > > -- Ariel Kroszynski Operations, Neat Group Inc. Israel steves-Computer:~/test steve$ ant -version Apache Ant version 1.7alpha compiled on October 20 2004 steves-Computer:~/test steve$ ant Buildfile: build.xml init: [touch] Creating /Users/steve/test/test.txt test: [delete] DEPRECATED - Use of the implicit FileSet is deprecated. Use a nested fileset element instead. [delete] Deleting: /Users/steve/test/test.txt BUILD SUCCESSFUL Total time: 0 seconds steves-Computer:~/test steve$ -----build.xml <project name="test" basedir="." default="test"> <target name="init"> <touch file="test.txt"/> </target> <target name="test" depends="init"> <delete defaultexcludes="no" file="test.txt"/> </target> </project> --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]