on 4/10/01 4:28 AM, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote:
> - <property name="build.compiler" value="classic"/>
> + <property name="build.compiler" value="jikes"/>
What you should do is remove this entirely and use Ant 1.3 which will set it
for you.
Also, you should add lines like this:
<!-- Give user a chance to override without editing this file
(and without typing -D each time they invoke a target) -->
<property file="${user.home}/.ant.properties" />
<property file=".ant.properties" />
To the top of the file. That will allow people to override the settings as
needed.
Thanks!
-jon