Tras instalar la nueva version de Maven me he encontrado con la siguiente Excepcion al realizar lanzar el comando mvn eclipse:eclipse
[ERROR] BUILD ERROR
[INFO] ------------------------------------------------------------------------
[INFO] Request to merge when 'filtering' is not identical. Original=resource src/main/resources: output=target/classes, include=[], exclude=[ApplicationResources_de.properties|ApplicationResources_fr.properties|ApplicationResources_ko.properti
es|ApplicationResources_nl.properties|ApplicationResources_no.properties|ApplicationResources_pt*.properties|
ApplicationResources_tr.properties|ApplicationResources_zh*.properties|applicationContext-resources.xml|struts.xml|**/*.java], test=false, filtering=true, merging with=resource src/main/resources: output=target/classes, include=[applicationContext-resources.xml|struts.xml], exclude=[**/*.java], test=false, filtering=false
[INFO] ------------------------------------------------------------------------
Esto se debe a que un problema que existe con el plugin de maven para eclipse de la version 2.7 que es el usa ahora por defecto, la solucion es ejecutar la version 2.6
Despues de ver varios foros.. la solución que mejor me ha funcionado ha sido ejecutar lo siguiente
mvn org.apache.maven.plugins:maven-eclipse-plugin:2.6:eclipse
Otra posible solucion es la siguiente pero no he conseguido que me funcione correctamente
1. Add the following line within the element of your ~/.m2/settings.xml file:
true
2. Add the file ~/.m2/plugin-registry.xml with the following contents:
org.apache.maven.plugins
maven-eclipse-plugin
2.6
2.7