maven java webapp project example
Maven java webapp project: The archetype:generate command is used to create the simple maven java web project. First we have to navigate the terminal (*uix or Mac) or command prompt (Windows) to the folder where we want to create the Java web project. Syntax: mvn archetype:generate -DgroupId=groupid -DartifactId=project-name -DarchetypeArtifactId=maven-archetype-webapp -DinteractiveMode=booleanValuemvn archetype:generate -DgroupId=groupid -DartifactId=project-name -DarchetypeArtifactId=maven-archetype-webapp -DinteractiveMode=booleanValue … Read more