I recently installed and created an application with JHipster. When I launch the application in the terminal using "mvn spring-boot: run", the application starts without problems .
But when I import a project (like a maven project) into Eclipse, I have this error in my pom:
No market entries were found to handle yoman-maven-plugin: 0.4: build in Eclipse. For more information, see Help.
Here is a screenshot of the error.

Here is how this plugin is defined in the generated pom.xml by default:
<build>
<plugins>
<plugin>
<groupId>com.github.trecloux</groupId>
<artifactId>yeoman-maven-plugin</artifactId>
<version>0.4</version>
<executions>
<execution>
<id>run-grunt</id>
<phase>generate-resources</phase>
<goals>
<goal>build</goal>
</goals>
<configuration>
<skipTests>true</skipTests>
<buildTool>grunt</buildTool>
<buildArgs>compass:server --force</buildArgs>
</configuration>
</execution>
</executions>
<configuration>
<yeomanProjectDirectory>${project.basedir}</yeomanProjectDirectory>
</configuration>
</plugin>
</plugins>
</build>
How can I continue to manipulate, edit created project files in my Eclipse?