------ Provide Build Commands ------ Edwin Punzalan ------ 14 July 2006 ------ Provide Project Natures And Build Commands for Eclipse The default project nature for projects created by the Eclipse Plugin is <<>> and the default build command is <<>>. Additional project natures and build commands are also added as needed when WTP is enabled. If you want to provide additional project natures and build commands for your project, i.e. Spring project, you can add them in your pom.xml like this: +----- [...] [...] [...] org.apache.maven.plugins maven-eclipse-plugin org.springframework.ide.eclipse.core.springnature org.springframework.ide.eclipse.core.springbuilder [...] [...] [...] +----- To provide your own project natures and build commands which will override the defaults, you can put them in your pom.xml as follows: +----- [...] [...] [...] org.apache.maven.plugins maven-eclipse-plugin my.own.project.nature my.own.build.command [...] [...] [...] +-----