Hi Thanks for the info. I will try it out.
I have another to you if i may ask. Here is the scenario
I have a plugin developed which does "Execute Test"
The execute test plugin does the following as a post build step
1. Produce a JMS message
2. Run Test1
3. Publish result
Now I want to make it little different. So that when i add multiple post build step "execute test", it should do
loop 3 times{
1. Produce a JMS message
2. Run Test1
3. Publish result
2. RunTest2
3. Publish result
2. RunTest3
3. Publish result
}
I dont want to make Step1 every time. I just want to do once per JOB. Is there any way other than developing step1 alone as a plugin & the rest as another plugin?
I also dont want to put this step1 in global.jelly file.