Post-build action
One answer
Chris,
similar to https://jazz.net/library/article/1000 you could run a post build script using the process Java API.
However, that script would run in the server context and I don't think you want to do that. You want to really call your script in the build job (also on the build server with access to the files you built) using an ANT command. I think you could use the ANT exec task to achieve that.
similar to https://jazz.net/library/article/1000 you could run a post build script using the process Java API.
However, that script would run in the server context and I don't think you want to do that. You want to really call your script in the build job (also on the build server with access to the files you built) using an ANT command. I think you could use the ANT exec task to achieve that.