startBuildActivity task not recognized
Hi, I'm having one heck of a time trying to get the startBuildActivity task to work. No matter what I try, I get the following information in my log with the failed build:
The shell script I use to start my Jazz Build Engine is:
I'd appreciate if someone could take a look for anything obviously wrong. Here is the snippet of my build.xml with the startBuildActivity task:
Thanks in advance, John Czukkermann |
3 answers
On 2/11/2012 2:53 PM, jlczuk wrote:
Hi, I'm having one heck of a time trying to get the The Jazz Build Engine (JBE) will add the Jazz build toolkit JARs to Ant's classpath (if you check the correct box in your build definition). But the JBE will not automatically define the build toolkit's tasks. You have to do that yourself. That can be done with <import> (where ${jazzBuildToolkit} is the path to the build toolkit). Or you can declare each task individually, such as: <taskdef> -- David Olsen IBM Rational Beaverton, Oregon |
Thank you David, that did the trick.
I had to guess a little as to exactly what to do because it seems the code blocks are getting truncated in the forums. I noticed that when I re-read my original post. Thanks again, John |
Thanks. This worked for me (XML escaped):
<taskdef name="startBuildActivity" classname="com.ibm.team.build.ant.task.StartBuildActivityTask" /> |
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.