Create Java project with Maven archetype marmotta-archetype-module

This Maven Archetype allows creating the basic structure for an Marmotta Module

Create a Java Project by archetype marmotta-archetype-module with Command Line:

mvn archetype:generate   -DgroupId="com.mycompany.app"   -DartifactId="my-app-id"   -DmoduleKey="My-moduleKey"   -DmoduleName="My-moduleName"   -DarchetypeGroupId="org.apache.marmotta"   -DarchetypeArtifactId="marmotta-archetype-module"   -DarchetypeVersion="3.2.0"   -DinteractiveMode=false 

Required parameters for generate java project:

moduleKey
validationRegex: none
moduleName
validationRegex: none

Details about maven archetype marmotta-archetype-module

GroupId

GroupId

org.apache.marmotta
ArtifactId

ArtifactId

marmotta-archetype-module
Version

Version

3.2.0
Type

Type

maven-archetype

How to add to project

mvn archetype:generate -DgroupId=<com.mycompany.app> -DartifactId=<my-app>  -DarchetypeGroupId=org.apache.marmotta -DarchetypeArtifactId=marmotta-archetype-module -DarchetypeVersion=3.2.0 -DinteractiveMode=false