Hi,
I'm using Ant on Win98 :(, and every time I call ant it echos all my
environment variables. Is there any way to stop this?
In case it's something in my build file I've enclosed highlights below.
thanks,
jim
<project name="hemlatta" default="build" basedir=".">
<property name="src" value="src"/>
<property name="build" value="build"/>
<property name="spec" value="spec/cph"/>
<property environment="env"/>
...
<target name="setEnvVars" unless="env">
<property name="env.J2EE_HOME" value="c:\j2sdkee1.2.1"/>
<property name="env.JBOSS_HOME" value="c:\jboss-2.1"/>
</target>
...
</project>