Can anyone tell step-by-step what happens when I run Eclipse Project --> Clean? Like in this way -
1. All source codes are compiled
2. Checkstyle verification (as I have the plugin)
...
Also, can I skip some of the tasks to save time?
Can anyone tell step-by-step what happens when I run Eclipse Project --> Clean? Like in this way -
1. All source codes are compiled
2. Checkstyle verification (as I have the plugin)
...
Also, can I skip some of the tasks to save time?
First of all it will be useful to understand Eclipse Builder framework. Simplified each project has a list of builders roughly one for each task to perform on the source code. In your case you will have a Java Builder and a Checkstyle Builder. Each builders can perform different actions dependent on the type of build you are executing, e.g. a full build, an incremental build, or cleaning.
What happens when you click Project -> Clean is this
If you have auto build enabled it continues to build.
The ordering of builders within a projects is definded in a projects meta-data (the .project
file). You can view the ordering by right clicking on a project and go to Properties -> Builders
If you want to know what happens in more details take a look at these pages: