Create Java project with Maven archetype tentackle-project-archetype

Archetype for a multi-module Tentackle application

Create a Java Project by archetype tentackle-project-archetype with Command Line:

mvn archetype:generate   -DgroupId="com.mycompany.app"   -DartifactId="my-app-id"   -Dapplication="My-application"   -DarchetypeGroupId="org.tentackle"   -DarchetypeArtifactId="tentackle-project-archetype"   -DarchetypeVersion="11.7.4.1"   -DinteractiveMode=false 

Required parameters for generate java project:

application
validationRegex: none

Generated Project modules

  • ${rootArtifactId}-common
  • ${rootArtifactId}-pdo
  • ${rootArtifactId}-domain
  • ${rootArtifactId}-persistence
  • ${rootArtifactId}-gui
  • ${rootArtifactId}-client
  • ${rootArtifactId}-server
  • ${rootArtifactId}-daemon

Details about maven archetype tentackle-project-archetype

GroupId

GroupId

org.tentackle
ArtifactId

ArtifactId

tentackle-project-archetype
Version

Version

11.7.4.1
Type

Type

maven-archetype

How to add to project

mvn archetype:generate -DgroupId=<com.mycompany.app> -DartifactId=<my-app>  -DarchetypeGroupId=org.tentackle -DarchetypeArtifactId=tentackle-project-archetype -DarchetypeVersion=11.7.4.1 -DinteractiveMode=false