I have an ant script that creates runnable jar and I want it to run each time I make changes in my code and save them. I guess I need some “auto build after save” option in Eclipse. Is there such a thing?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You could declare your script as a builder, and make it run “
during auto build“.See the properties of your project: you can add an external program (above) or an an script (below).
If you can export your script as an ant script, like the OP David B did in his answer, it becomes quite easy:
project -> export -> runaable jar file, tick “save as ANT script” and finish.project -> properties -> Builders -> new (Ant).Paste the path for the ant file, go to “
targets” tab and click the “set targets” button next to “auto build“.Finally, click OK, OK, OK.