Re: How to supress the *.java.optionCheck files?

Thorsten Möller <[email protected]> Wed, 19 Nov 2003 18:19:34 +0100
Newsgroups gmane.comp.java.enhydra.xmlc
Message-ID <009401c3aec1$68459e60$33d71e8d@Thoro>
Boris Klug <[email protected]> wrote:

> No really a problem - but after running the xmlc ant task, the
> *.java.optionCheck files laying around. Would be good to have them
> deleted automatically.

Since you are already in an Ant environment it is no work to add an
additional task:

<delete>
         <fileset
          dir="${dir}"
          includes="**/*.optionCheck"/>
</delete>



Thorsten