I have a properties file containing absolute paths to jars, etc. When using these properties, they have a prefix with the name specified in the assembly file. How to get the absolute path?
build.properties:
mylib=/lib/mylib.jar
build.xml
<project name="myproject" basedir=".">
<property file="build.properties"/>
...${mylib}...
</project>
source
share