I am working on a project which has an Ant script for all lifecycle phases. The project, divided in small projects, is meant to be developed with Eclipse. The common version is the Indigo One.
Basically I am interested on putting a series of buttons with a shortcut each, or at least a shortcut only, to execute some of the main tasks. The relevant tasks are:
- fast build: this involves only the front end classes and jsps, I have solved this easily in the builders panel by adding an Ant build which call the task, for later review with the buttons issue, because there's no shortcut for the "Project->Build Project"
- full build: occasionally I need to launch a task for a complete build, which is taking quite some time in respect to a simple build
- deploy: this task simply packs the war file and deploy to a local jboss location, at the moment I am launching the jboss server manually via shell script, but I was thinking for a convenient way to have it launched by Eclipse if not already started
thanks