I am new to Maven .
I am using Maven to build a Web Application Struture .
I have issued this below comand , as a result it generated ( Please refer to the screen shot )

mvn archetype:generate -DgroupId=com.mkyong.core -DartifactId=mkyongweb-core -DarchetypeArtifactId=maven-archetype-webapp -DinteractiveMode=false
Now my question is when i tried to import this generated Project into Eclipse IDE through Existing Projects into Workspace Option , it displays No projects are found to import
Please tell me how to resolve this issue .
Thank you very much and Advance New Year Wishes to all .
Not surprising, since it is a maven project and not an existing Eclipse project.
There are two ways to
import thisinto Eclipse IDE.Run
mvn eclipse:eclipse(as suggested by @Neevek). This will generate the.projectand.classpathfiles, which makes it an Eclipse project.Better still, ensure you have the M2E Eclipse Plugin installed. In this case, you can skip the step above and simply choose
Import as Maven project...It is not a good idea to do both – maven eclipse plugin and m2e don’t work well together.