Create Java project with Maven archetype simple-site1-step1-archetype


Create a Java Project by archetype simple-site1-step1-archetype with Command Line:

mvn archetype:generate   -DgroupId="com.mycompany.app"   -DartifactId="my-app-id"   -DgroupId="My-groupId"   -DartifactId="My-artifactId"   -DcreationDate="My-creationDate"   -DarchetypeGroupId="it.tidalwave.northernwind"   -DarchetypeArtifactId="simple-site1-step1-archetype"   -DarchetypeVersion="1.1"   -DinteractiveMode=false 

Required parameters for generate java project:

groupId
validationRegex: none
artifactId
validationRegex: none
creationDate
validationRegex: none

Details about maven archetype simple-site1-step1-archetype

GroupId

GroupId

it.tidalwave.northernwind
ArtifactId

ArtifactId

simple-site1-step1-archetype
Version

Version

1.1
Type

Type

maven-archetype

How to add to project

mvn archetype:generate -DgroupId=<com.mycompany.app> -DartifactId=<my-app>  -DarchetypeGroupId=it.tidalwave.northernwind -DarchetypeArtifactId=simple-site1-step1-archetype -DarchetypeVersion=1.1 -DinteractiveMode=false