Converting Maven project to Dynamic Web Project for Eclipse
eclipse, eclipse-wtp, java, maven, project-conversion
Solution
I have the below's suggestions :
First check whether your eclipse is in `Jave EE Perspective` or not. If it was in only Java perspective, run option will not come.
Right click on your project, go to properties.
Click on `Project Facets`
Check whether `Dynamic Web module` is check marked or not. If not just check marked it.
Problem
Create a web project using Maven: ``` mvn archetype:generate -DgroupId=com.trial -DartifactId=message -DarchetypeArtifactId=maven-archetype-webapp -DinteractiveMode=false ``` Convert the project to Eclipse web project using: ``` mvn eclipse:eclipse -Dwtpversion=2.0 ``` Import existing project into Eclipse: The project icon contains an folder instead of a web icon and folder icon. I find this a bit strange and when I try to run also, the run on server option is missing. I am sure I followed the steps correctly. Where may I be lagging to obtains such a result ?