I have a property file containing absolute paths to jars etc. When using these properties they are prefixed with the basedir specified in the build file. How do I get the absolute path?
建设。 财产:
mylib=/lib/mylib.jar
建设:
<project name="myproject" basedir=".">
<property file="build.properties"/>
...${mylib}...
</project>