vote up 0 vote down star

Does anyone know of a simple web app that supports running ant tasks? Alternatively it could run command line programs. I need to allow the user to choose parameters for running the ant task. I effectively want a web interface to run the ant task and provide any parameters.

I can write one but this is generic enough that it seems like there should already be a few standard packages that do this.

flag

28% accept rate

2 Answers

vote up 1 vote down check

You could give Anthill a shot. They have an open source version. This will periodically check your source code repository, and run a specified ant task any time the code base changes. You can also manually trigger builds.

link|flag
vote up 0 vote down

You could put this in a PHP-file:

echo shell_exec('ant');

It would run ant and return the output to the browser.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.