Create Java project with Maven archetype helidon-mp

Archetype to generate a basic Helidon MP application

Create a Java Project by archetype helidon-mp with Command Line:

mvn archetype:generate   -DgroupId="com.mycompany.app"   -DartifactId="my-app-id"   -DgroupId="My-groupId"   -DartifactId="My-artifactId"   -Dversion="My-version"   -Dpackage="My-package"   -DmainClass="My-mainClass"   -DapplicationName="My-applicationName"   -DrestResource="My-restResource"   -DrestResourceName="My-restResourceName"   -DrestResourcePath="My-restResourcePath"   -DloggingConfig="My-loggingConfig"   -DapplicationYaml="My-applicationYaml"   -DunitTest="My-unitTest"   -DarchetypeGroupId="io.helidon.archetypes"   -DarchetypeArtifactId="helidon-mp"   -DarchetypeVersion="1.4.7"   -DinteractiveMode=false 

Required parameters for generate java project:

groupId
validationRegex: none
artifactId
validationRegex: none
version
validationRegex: none
package
validationRegex: none
mainClass
validationRegex: none
applicationName
validationRegex: ([$_a-zA-Z][$_a-zA-Z0-9]*)
restResource
validationRegex: none
restResourceName
validationRegex: ([$_a-zA-Z][$_a-zA-Z0-9]*)
restResourcePath
validationRegex: ^\/.*
loggingConfig
validationRegex: none
applicationYaml
validationRegex: none
unitTest
validationRegex: none

Details about maven archetype helidon-mp

GroupId

GroupId

io.helidon.archetypes
ArtifactId

ArtifactId

helidon-mp
Version

Version

1.4.7
Type

Type

maven-archetype

How to add to project

mvn archetype:generate -DgroupId=<com.mycompany.app> -DartifactId=<my-app>  -DarchetypeGroupId=io.helidon.archetypes -DarchetypeArtifactId=helidon-mp -DarchetypeVersion=1.4.7 -DinteractiveMode=false