I am writing a path to a text file from ant, which is later read by a Java application to find another file.
In my ant script, I have:
<property name="fulltrainer.dir" location="${trainer.dir}" /> <echo file="${trainer.dir}/properties/commonConfig.properties">
in the build.properties file trainer.dir is set to:
trainer.dir=../trainer
In the end, he writes:
to the commonConfig.properties file.
I need to write:
or I need to write:
How can i do this?
java windows unix ant
systemoutprintln
source share