Sibon Barman wrote:

> <delete dir="${classes.dir}" />
> It will delete the classes.dir too --- I want to be able to delete
> everything underneath except the parent directory (i.e. classes.dir)

You can't currently do what you want <delete> to do.  Sorry.  I should have
this done for 1.3.

In the meantime, do

<delete dir="${classes.dir}" />
<mkdir dir="${classes.dir}" />

Glenn McAllister

Reply via email to