Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p>Installing the m2eclipse with the optional WTP configuration worked for me. I also added the following to my parent pom to ensure the right natures and builders in the eclipse files</p> <p>This yields eclipse .project files that are ready for m2eclipse. then I can Update the project files using m2eclipse allowing hot deploy the webapp and its dependencies</p> <pre><code>&lt;build&gt; ... &lt;plugin&gt; &lt;artifactId&gt;maven-eclipse-plugin&lt;/artifactId&gt; &lt;version&gt;2.5.1&lt;/version&gt; &lt;!-- Eclipse project natures: http: //vikashazrati.wordpress.com/2007/12/22/adding-project-nature-to-your-maven-pomxml/ Maven-eclipse-plugin: http: //maven.apache.org/plugins/maven-eclipse-plugin/ --&gt; &lt;configuration&gt; &lt;additionalProjectnatures&gt; &lt;projectnature&gt;org.springframework.ide.eclipse.core.springnature&lt;/projectnature&gt; &lt;projectnature&gt;org.eclipse.jem.workbench.JavaEMFNature&lt;/projectnature&gt; &lt;projectnature&gt;org.eclipse.wst.common.modulecore.ModuleCoreNature&lt;/projectnature&gt; &lt;projectnature&gt;org.eclipse.wst.common.project.facet.core.nature&lt;/projectnature&gt; &lt;projectnature&gt;org.eclipse.jdt.core.javanature&lt;/projectnature&gt; &lt;projectnature&gt;org.eclipse.wst.jsdt.core.jsNature&lt;/projectnature&gt; &lt;projectnature&gt;org.maven.ide.eclipse.maven2Nature&lt;/projectnature&gt; &lt;/additionalProjectnatures&gt; &lt;buildcommands&gt; &lt;buildcommand&gt;org.eclipse.wst.jsdt.core.javascriptValidator&lt;/buildcommand&gt; &lt;buildcommand&gt;org.eclipse.jdt.core.javabuilder&lt;/buildcommand&gt; &lt;buildcommand&gt;org.eclipse.wst.common.project.facet.core.builder&lt;/buildcommand&gt; &lt;buildcommand&gt;org.eclipse.wst.validation.validationbuilder&lt;/buildcommand&gt; &lt;buildcommand&gt;org.springframework.ide.eclipse.core.springbuilder&lt;/buildcommand&gt; &lt;buildcommand&gt;org.maven.ide.eclipse.maven2Builder&lt;/buildcommand&gt; &lt;/buildcommands&gt; &lt;/configuration&gt; &lt;/plugin&gt; </code></pre>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload