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"   -Dscope="My-scope"   -Dcommand="My-command"   -Ddescription="My-description"   -Dpackage="My-package"   -DarchetypeGroupId="org.apache.karaf.archetypes"   -DarchetypeArtifactId="karaf-command-archetype"   -DarchetypeVersion="2.3.5"   -DinteractiveMode=false 

Required parameters for generate java project:

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

Details about maven archetype karaf-command-archetype

GroupId

GroupId

org.apache.karaf.archetypes
ArtifactId

ArtifactId

karaf-command-archetype
Version

Version

2.3.5
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=2.3.5 -DinteractiveMode=false