Create Java project with Maven archetype dropwizard-kotlin

Maven archetype for Kotlin based Dropwizard applications

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

mvn archetype:generate   -DgroupId="com.mycompany.app"   -DartifactId="my-app-id"   -Dname="My-name"   -Ddescription="My-description"   -Dshaded="My-shaded"   -DdropwizardVersion="My-dropwizardVersion"   -DkotlinVersion="My-kotlinVersion"   -DjunitVersion="My-junitVersion"   -DarchetypeGroupId="com.udaan.archetypes"   -DarchetypeArtifactId="dropwizard-kotlin"   -DarchetypeVersion="1.1.1"   -DinteractiveMode=false 

Required parameters for generate java project:

name
validationRegex: none
description
validationRegex: none
shaded
validationRegex: none
dropwizardVersion
validationRegex: none
kotlinVersion
validationRegex: none
junitVersion
validationRegex: none

Details about maven archetype dropwizard-kotlin

GroupId

GroupId

com.udaan.archetypes
ArtifactId

ArtifactId

dropwizard-kotlin
Version

Version

1.1.1
Type

Type

maven-archetype

How to add to project

mvn archetype:generate -DgroupId=<com.mycompany.app> -DartifactId=<my-app>  -DarchetypeGroupId=com.udaan.archetypes -DarchetypeArtifactId=dropwizard-kotlin -DarchetypeVersion=1.1.1 -DinteractiveMode=false