Create Java project with Maven archetype mvc-1.0-blank-archetype

MVC 1.0 Blank Project

Create a Java Project by archetype mvc-1.0-blank-archetype with Command Line:

mvn archetype:generate   -DgroupId="com.mycompany.app"   -DartifactId="my-app-id"   -DarchetypeGroupId="am.ik.archetype"   -DarchetypeArtifactId="mvc-1.0-blank-archetype"   -DarchetypeVersion="1.0.0-m01"   -DinteractiveMode=false 

Details about maven archetype mvc-1.0-blank-archetype

GroupId

GroupId

am.ik.archetype
ArtifactId

ArtifactId

mvc-1.0-blank-archetype
Version

Version

1.0.0-m01
Type

Type

maven-archetype

How to add to project

mvn archetype:generate -DgroupId=<com.mycompany.app> -DartifactId=<my-app>  -DarchetypeGroupId=am.ik.archetype -DarchetypeArtifactId=mvc-1.0-blank-archetype -DarchetypeVersion=1.0.0-m01 -DinteractiveMode=false