Create Java project with Maven archetype serialized-dropwizard-archetype

Simple Dropwizard Maven archetype for Serialized

Create a Java Project by archetype serialized-dropwizard-archetype with Command Line:

mvn archetype:generate   -DgroupId="com.mycompany.app"   -DartifactId="my-app-id"   -DapplicationName="My-applicationName"   -DaggregateRoot="My-aggregateRoot"   -DarchetypeGroupId="io.serialized.archetype"   -DarchetypeArtifactId="serialized-dropwizard-archetype"   -DarchetypeVersion="1.0.1"   -DinteractiveMode=false 

Required parameters for generate java project:

applicationName
validationRegex: none
aggregateRoot
validationRegex: none

Details about maven archetype serialized-dropwizard-archetype

GroupId

GroupId

io.serialized.archetype
ArtifactId

ArtifactId

serialized-dropwizard-archetype
Version

Version

1.0.1
Type

Type

maven-archetype

How to add to project

mvn archetype:generate -DgroupId=<com.mycompany.app> -DartifactId=<my-app>  -DarchetypeGroupId=io.serialized.archetype -DarchetypeArtifactId=serialized-dropwizard-archetype -DarchetypeVersion=1.0.1 -DinteractiveMode=false