Using Ant 1.2

Hi, I am trying to write a target named "clean" which deletes all
.class file in the specified directory. That directory contains .java
files, .xml files and .txt files. I thought the following would do the
trick

<fileset dir=".">
<exclude name="*" />
<include name="*.class" />
</fileset>

This did not work, I have to specify all the exclusions individually

<target name="clean">
<delete>
<fileset dir="${srcfile}" >
<patternset id="non.test.sources" >
<exclude name="*.xml" />
<exclude name="*.java" />
<include name="*.class" />
</patternset>
</fileset>
</delete>
</target>

Is there a way to tell Ant to find the composite between excludes and
includes and use the resultant fileset for the target

Regards, Yusuf

-- 
Yusuf Goolamabbas
[EMAIL PROTECTED]

Reply via email to