Create Java project with Maven archetype spring-boot-archetype

This repository contains a Maven Archetype for a Spring Boot based project of the Dolphin Platform.

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

mvn archetype:generate   -DgroupId="com.mycompany.app"   -DartifactId="my-app-id"   -DarchetypeGroupId="com.canoo.dolphin-platform"   -DarchetypeArtifactId="spring-boot-archetype"   -DarchetypeVersion="0.8.10"   -DinteractiveMode=false 

Generated Project modules

  • common
  • server
  • client

Details about maven archetype spring-boot-archetype

GroupId

GroupId

com.canoo.dolphin-platform
ArtifactId

ArtifactId

spring-boot-archetype
Version

Version

0.8.10
Type

Type

maven-archetype

How to add to project

mvn archetype:generate -DgroupId=<com.mycompany.app> -DartifactId=<my-app>  -DarchetypeGroupId=com.canoo.dolphin-platform -DarchetypeArtifactId=spring-boot-archetype -DarchetypeVersion=0.8.10 -DinteractiveMode=false