Maven archetype for simple Servlet application

There is an archetype for webapp: mvn archetype:generate -DgroupId=com.acme \ -DartifactId=my-webapp \ -Dversion=1.0-SNAPSHOT \ -DarchetypeArtifactId=maven-archetype-webapp \ -DinteractiveMode=false This will generate the following structure: $ tree my-webapp/ my-webapp/ ├── pom.xml └── src └── main ├── resources └── webapp ├── index.jsp └── WEB-INF └── web.xml Where the web.xml is a Servlet 2.3 web.xml: $ cat my-webapp/src/main/webapp/WEB-INF/web.xml <!DOCTYPE … Read more