RTC JBE Ant build fails with multiple "cannot find symbol" errors when building RAD Ant build
When trying to build the Ant script provided by RAD, the build fails in JBE with multiple "cannot find symbol" errors. How can I get my RAD Ant script to compile using the JBE?
|
Accepted answer
RAD has a special Ant build script bat file that must be used to compile its own generated Ant files. Running the RAD Ant script by itself does not work, it needs whatever environments the bat file will add. This bat file is called runAnt and can be found with the RAD install. So to compile the RAD Ant script you will need to use the JBE Command Line participant instead of the Ant participant. To run the build the command line will need to look like this: runAnt.bat -buildfile "buildFile.xml".
Spencer Murata selected this answer as the correct answer
|
Your answer
Dashboards and work items are no longer publicly available, so some links may be invalid. We now provide similar information through other means. Learn more here.
Comments
Hi Spencer,