Is it possible to have both versions of maven running on the sam开发者_StackOverflow社区e computer?
From what I understand you have to setup environmental variables for both of them, so won't that conflict?
From what I understand you have to setup environmental variables for both of them, so won't that conflict?
No, because they don't use the same environment variables (MAVEN_HOME
and M2_HOME
) and the executable have different names (maven
and mvn
). So no conflicts.
It is possible. Checkout http://maven.apache.org/guides/mini/guide-m1-m2.html
精彩评论