Archivo pom.xml mínimo para el nuevo proyecto Maven / Spring MVC

Soy completamente nuevo en Maven y Spring MVC. Lo que quiero hacer es configurar un nuevo proyecto Spring MVC, usar Maven (con suerte esta frase tiene sentido), y ejecutar mi aplicación web en Tomcat con Eclipse.

Estoy siguiendo el tutorial en este enlace y tengo un problema con elpom.xml expediente:

Empezando con Maven y Spring

El tutorial solicita crear la estructura de carpetas y crear un archivo pom.xml. Para empezar, piden poner esta línea en pom.xml:

xml 4.0.0org.springsource.greenbeans.mavenexample11.0-SNAPSHOTOur Simple Project

Pero cuando hago eso, mi Eclipse lanza un error:

[INFO] Scanning for projects...
[ERROR] The build could not read 1 project -> [Help 1]
[ERROR]
[ERROR]   The project  (D:\projectName\pom.xml) has 1 error
[ERROR]     Non-parseable POM D:\projectName\pom.xml: only whitespace content allowed before start tag and not ` (position: START_DOCUMENT seen `... @1:1)  @ line 1, column 1 -> [Help 2]
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR]
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/ProjectBuildingException
[ERROR] [Help 2] http://cwiki.apache.org/confluence/display/MAVEN/ModelParseException

¿Alguna idea de cuál podría ser el pom.xml mínimo correcto? Probé muchas cosas pero no me funcionó ...

Respuestas a la pregunta(2)

Su respuesta a la pregunta