Ant in Eclipse has the global property WEBLOGIC_HOME but while it gives a correct tooltip in the editor it doesn't work in a build script, e.g.
<taskdef name="wsdlc" classname="weblogic.wsee.tools.anttasks.WsdlcTask" classpath="${WEBLOGIC_HOME}\server\lib\weblogic.jar" />
gives: build failed: wsdlctask cannot be found.
When I replace ${WEBLOGIC_HOME}
with C:\bea\wlserver_10.3
or define my own global property there is no problem.
So nothing to worry about, but I was wondering, why does such a strange behaviour exist?