tags:

views:

74

answers:

2

Are there any compelling reasons for me to upgrade to Maven 3 immediately? Nothing stands out from the release notes.

Have you upgraded to Maven 3 yet? If so, what benefits did you see?

A: 

I have upgraded to maven 3. Everything is backward compatible. I have noticed better performance and clear logging. There aren't any compelling reasons yet. However, maven3 has new build phases that should be able to support better plugins with more control. Why not upgrade if everything will still work?

Amir Raminfar
A: 

Speed man, speed :) New Maven runs MUCH faster then Maven2.

Just try it:

alias mvn3='M2_HOME=/opt/apache-maven-3.0 /opt/apache-maven-3.0/bin/mvn'

And execute mvn3 clean install in your plain old Maven2 project to feel the difference.

Henryk Konsek