I'm getting the same "out of memory error" as described below on compiles,
but when I tried
form="yes"
memoryInitialSize="128m"
memoryMaximumSize="512m"
I got the message:
Class org.apache.tools.ant.taskdefs.Javac doesn't support the "fork" attribute
t
I resolved my out of memory issue by adding "-Xmx256m" in the shell script
for ant when it is starting org.apache.tools.ant.Main:
$JAVACMD -classpath "$LOCALCLASSPATH" -Dant.home="${ANT_HOME}"
$ANT_OPTS -Xmx256m org.apache.tools.ant.Main "$@"
The clue that there may be multiple copies of An
>I'm getting the same "out of memory error" as described below on compiles,
>but when I tried
>fork="yes"
>memoryInitialSize="128m"
>memoryMaximumSize="512m"
>
>I got the message:
> Class org.apache.tools.ant.taskdefs.Javac doesn't support the
> "fork