Create Java project with Maven archetype spring-boot-keycloak-archetype

Creates a new Shows how to use Spring Boot with Keycloak

Create a Java Project by archetype spring-boot-keycloak-archetype with Command Line:

mvn archetype:generate   -DgroupId="com.mycompany.app"   -DartifactId="my-app-id"   -Denv.DOCKER_REGISTRY="My-env.DOCKER_REGISTRY"   -Dfabric8.version="My-fabric8.version"   -Ddocker.maven.plugin.version="My-docker.maven.plugin.version"   -DarchetypeGroupId="io.fabric8.archetypes"   -DarchetypeArtifactId="spring-boot-keycloak-archetype"   -DarchetypeVersion="2.0.29"   -DinteractiveMode=false 

Required parameters for generate java project:

env.DOCKER_REGISTRY
validationRegex: none
fabric8.version
validationRegex: none
docker.maven.plugin.version
validationRegex: none

Details about maven archetype spring-boot-keycloak-archetype

GroupId

GroupId

io.fabric8.archetypes
ArtifactId

ArtifactId

spring-boot-keycloak-archetype
Version

Version

2.0.29
Type

Type

maven-archetype

How to add to project

mvn archetype:generate -DgroupId=<com.mycompany.app> -DartifactId=<my-app>  -DarchetypeGroupId=io.fabric8.archetypes -DarchetypeArtifactId=spring-boot-keycloak-archetype -DarchetypeVersion=2.0.29 -DinteractiveMode=false