Create Java project with Maven archetype karaf-command-archetype

A Karaf command archetype.

Create a Java Project by archetype karaf-command-archetype with Command Line:

mvn archetype:generate   -DgroupId="com.mycompany.app"   -DartifactId="my-app-id"   -Dpackage="My-package"   -Dscope="My-scope"   -Dcommand="My-command"   -Ddescription="My-description"   -DarchetypeGroupId="org.apache.karaf.archetypes"   -DarchetypeArtifactId="karaf-command-archetype"   -DarchetypeVersion="4.2.13"   -DinteractiveMode=false 

Required parameters for generate java project:

package
validationRegex: none
scope
validationRegex: none
command
validationRegex: none
description
validationRegex: none

Details about maven archetype karaf-command-archetype

GroupId

GroupId

org.apache.karaf.archetypes
ArtifactId

ArtifactId

karaf-command-archetype
Version

Version

4.2.13
Type

Type

maven-archetype

How to add to project

mvn archetype:generate -DgroupId=<com.mycompany.app> -DartifactId=<my-app>  -DarchetypeGroupId=org.apache.karaf.archetypes -DarchetypeArtifactId=karaf-command-archetype -DarchetypeVersion=4.2.13 -DinteractiveMode=false