Update: Does Project->Build Project in Eclipse with m2e include any Maven goal by default?
Does including
<build>
<defaultGoal>install</defaultGoal>
</build>
into POM.xml change the action of "Build Project" and add the second compilation also by Maven Builder?
When the flag Project-> Build automatically is checked in Eclipse two builders do differnt things when I update a project. As far as I understand:
1) Maven Project Builder gets dependencies when I update pom.xml. 2) One of these two builders compiles code when I change it.
a. Which builder compiles code? As far as I know Maven has its own JAVA_HOME. And I can also attach any JRE to my Eclipse project. So JREs may be different.
b. What other actions does Maven Builder do and when (when updating pom or code)?