In my build.xml file, I have these lines:
<property environment="env"/>
<echo message="JAVA_HOME is set to = ${env.JAVA_HOME}" />
On some machine, this would print
"JAVA_HOME is set to = /usr/jdk1.6"
But on some others, it would print this
"JAVA_HOME is set to = ${env.JAVA_HOME}"
Does anyone know what might cause this?
Thanks
The message tells you that Ant was not able to resolve the property env.JAVA_HOME
; this means that the environment variable JAVA_HOME
was not set in that machine.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With