Create Java project with Maven archetype worker-batch-archetype


Create a Java Project by archetype worker-batch-archetype with Command Line:

mvn archetype:generate   -DgroupId="com.mycompany.app"   -DartifactId="my-app-id"   -DworkerName="My-workerName"   -DarchetypeGroupId="com.github.jobservice"   -DarchetypeArtifactId="worker-batch-archetype"   -DarchetypeVersion="3.1.0-161"   -DinteractiveMode=false 

Required parameters for generate java project:

workerName
validationRegex: none

Generated Project modules

  • {rootArtifactId}-batch-plugin
  • {rootArtifactId}-container

Details about maven archetype worker-batch-archetype

GroupId

GroupId

com.github.jobservice
ArtifactId

ArtifactId

worker-batch-archetype
Version

Version

3.1.0-161
Type

Type

maven-archetype

How to add to project

mvn archetype:generate -DgroupId=<com.mycompany.app> -DartifactId=<my-app>  -DarchetypeGroupId=com.github.jobservice -DarchetypeArtifactId=worker-batch-archetype -DarchetypeVersion=3.1.0-161 -DinteractiveMode=false