I don't want to get baseir, which seems to contain a build.xml script - I want the CWD call to be ant itself.
Basically, I want to do this:
$ cd /home/chrisr/projects/some_project
$ ant -f ../../tools/ant-build-rules/library.xml build-library
At this moment I need two things:
- The path to ant -build rules in absolute form; it is currently in the property
basedir, so I installed there. - The path some_project in absolute form. This is what I do not know how to do it.
What property contains this information?
source
share