Create Java project with Maven archetype springboot-activemq-archetype

Creates a new Shows how to use ActiveMQ with Spring Boot in the Java Container

Create a Java Project by archetype springboot-activemq-archetype with Command Line:

mvn archetype:generate   -DgroupId="com.mycompany.app"   -DartifactId="my-app-id"   -Dactivemq-version="My-activemq-version"   -DarchetypeGroupId="io.fabric8.archetypes"   -DarchetypeArtifactId="springboot-activemq-archetype"   -DarchetypeVersion="1.2.0.Beta3"   -DinteractiveMode=false 

Required parameters for generate java project:

activemq-version
validationRegex: none

Details about maven archetype springboot-activemq-archetype

GroupId

GroupId

io.fabric8.archetypes
ArtifactId

ArtifactId

springboot-activemq-archetype
Version

Version

1.2.0.Beta3
Type

Type

maven-archetype

How to add to project

mvn archetype:generate -DgroupId=<com.mycompany.app> -DartifactId=<my-app>  -DarchetypeGroupId=io.fabric8.archetypes -DarchetypeArtifactId=springboot-activemq-archetype -DarchetypeVersion=1.2.0.Beta3 -DinteractiveMode=false