#AskMe

How to create project with MAVEN

I. How to create project in MAVEN

There are two ways for create project in MAVEN

1. Normal Java Project

mvn archetype:generate -DgroupId=com.javacambodia -DartifactId=NumberGenerator -DarchetypeArtifactId=maven-archetype-quickstart -DinteractiveMode=false

You will see the result

2. Spring MVC Project Example