I have been using maven this last few days. I was wondering why the install phase launches compile or test phase too ?
I have read the documentation of maven, and as far as I understand, mvn install launches install:install goal. It seems to me that before launching this goal, it launches other goals (or phases) which compiles and tests the project.
Does this mean that maven launches all the phases "before" install phase in the default lifecycle ?
Thanks for your answer (there is something I don't undertand).