We have third party software that ships with a bundled ant installation and I would like to setup the build like this:
- Copy the third party software into the workspace(including their bundled ant)(works)
- checkout my source code(works)
- invoke the bundled ant within the workspace using the ant plugin.(doesn't work).
I've tried:
- ${WORKSPACE}\path-to-bundled-ant\apache-ant-1.8.2
- %WORKSPACE%\path-to-bundled-ant\apache-ant-1.8.2
- path-to-bundled-ant\apache-ant-1.8.2 (I'm on windows).
Has anyone succeeded in doing this type of setup?