m2eclipse settings.xml inexistente

Tras realizar actualizaciones sobre Eclipse Galileo la ejecución de ‘builds’ maven a través de m2eclipse causaba el siguiente error:

[ERROR] Error executing Maven.
[ERROR] The specified user settings file does not exist: /Users/nombre_usuario/.m2/settings.xml

Este problema se soluciona creando un xml válido con contenido vacío en la ruta indicada (/Users/nombre_usuario/.m2/settings.xml)

<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0
http://maven.apache.org/xsd/settings-1.0.0.xsd">

Visto en:
https://issues.sonatype.org/browse/MNGECLIPSE-1882