Create Java project with Maven archetype brooklyn-archetype-quickstart

This project defines an archetype for creating new projects which consume brooklyn, including an example application and an example new entity type, able to build an OSGi JAR and a binary assembly, with logging and READMEs.

Create a Java Project by archetype brooklyn-archetype-quickstart with Command Line:

mvn archetype:generate   -DgroupId="com.mycompany.app"   -DartifactId="my-app-id"   -DarchetypeGroupId="io.brooklyn"   -DarchetypeArtifactId="brooklyn-archetype-quickstart"   -DarchetypeVersion="0.6.0"   -DinteractiveMode=false 

Details about maven archetype brooklyn-archetype-quickstart

GroupId

GroupId

io.brooklyn
ArtifactId

ArtifactId

brooklyn-archetype-quickstart
Version

Version

0.6.0
Type

Type

maven-archetype

How to add to project

mvn archetype:generate -DgroupId=<com.mycompany.app> -DartifactId=<my-app>  -DarchetypeGroupId=io.brooklyn -DarchetypeArtifactId=brooklyn-archetype-quickstart -DarchetypeVersion=0.6.0 -DinteractiveMode=false