Create Java project with Maven archetype bundle-archetype

Archetype to use the Databus Maven Plugin to test data, prepare meta-data (DataIDs) and publish the resulting DataIDs to the Databus repository.

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

mvn archetype:generate   -DgroupId="com.mycompany.app"   -DartifactId="my-app-id"   -Ddatabus-artifact-name="My-databus-artifact-name"   -Ddatabus-download-url-path="My-databus-download-url-path"   -Ddatabus-issued-date="My-databus-issued-date"   -Ddatabus-license="My-databus-license"   -Ddatabus-modified-date="My-databus-modified-date"   -Ddatabus-package-directory="My-databus-package-directory"   -Ddatabus-pkcs12-file="My-databus-pkcs12-file"   -Ddatabus-publisher="My-databus-publisher"   -DarchetypeGroupId="org.dbpedia.databus.archetype"   -DarchetypeArtifactId="bundle-archetype"   -DarchetypeVersion="1.0.0"   -DinteractiveMode=false 

Required parameters for generate java project:

databus-artifact-name
validationRegex: none
databus-download-url-path
validationRegex: none
databus-issued-date
validationRegex: none
databus-license
validationRegex: none
databus-modified-date
validationRegex: none
databus-package-directory
validationRegex: none
databus-pkcs12-file
validationRegex: none
databus-publisher
validationRegex: none

Details about maven archetype bundle-archetype

GroupId

GroupId

org.dbpedia.databus.archetype
ArtifactId

ArtifactId

bundle-archetype
Version

Version

1.0.0
Type

Type

maven-archetype

How to add to project

mvn archetype:generate -DgroupId=<com.mycompany.app> -DartifactId=<my-app>  -DarchetypeGroupId=org.dbpedia.databus.archetype -DarchetypeArtifactId=bundle-archetype -DarchetypeVersion=1.0.0 -DinteractiveMode=false