views:

14

answers:

1

Eclipse IDE (3.4) contains an option to build the code automatically in the following tab
Project ---> Build Automatically. When we select this option , we need not build the project manually. It happens Automatically.

Actually I see this working for builtin eclipse build tool. Is there any possibility that , we can make it to (Build Automatically) work for seperate ANT build scripts ?

+1  A: 

If you add that ant script builder in the builders of your Java project, it will be executed at the same time than the default Java Builder, automatically if the "Build automatically" option is set.

alt text

VonC