Create Java project with Maven archetype dddplus-archetype

A Maven Archetype for generating a DDDplus Framework enabled project

Create a Java Project by archetype dddplus-archetype with Command Line:

mvn archetype:generate   -DgroupId="com.mycompany.app"   -DartifactId="my-app-id"   -DarchetypeGroupId="io.github.dddplus"   -DarchetypeArtifactId="dddplus-archetype"   -DarchetypeVersion="1.0.3"   -DinteractiveMode=false 

Generated Project modules

  • ${rootArtifactId}-application
  • ${rootArtifactId}-facade
  • ${rootArtifactId}-domain
  • ${rootArtifactId}-spec
  • ${rootArtifactId}-api
  • ${rootArtifactId}-infrastructure
  • ${rootArtifactId}-main
  • ${rootArtifactId}-test

Details about maven archetype dddplus-archetype

GroupId

GroupId

io.github.dddplus
ArtifactId

ArtifactId

dddplus-archetype
Version

Version

1.0.3
Type

Type

maven-archetype

How to add to project

mvn archetype:generate -DgroupId=<com.mycompany.app> -DartifactId=<my-app>  -DarchetypeGroupId=io.github.dddplus -DarchetypeArtifactId=dddplus-archetype -DarchetypeVersion=1.0.3 -DinteractiveMode=false