Create Java project with Maven archetype basic

The basic archetype, which provides preconfigured dependencies for the basic usage of AutomataLib.

Create a Java Project by archetype basic with Command Line:

mvn archetype:generate   -DgroupId="com.mycompany.app"   -DartifactId="my-app-id"   -DautomatalibVersion="My-automatalibVersion"   -DarchetypeGroupId="net.automatalib.archetypes"   -DarchetypeArtifactId="basic"   -DarchetypeVersion="0.7.1"   -DinteractiveMode=false 

Required parameters for generate java project:

automatalibVersion
validationRegex: none

Details about maven archetype basic

GroupId

GroupId

net.automatalib.archetypes
ArtifactId

ArtifactId

basic
Version

Version

0.7.1
Type

Type

maven-archetype

How to add to project

mvn archetype:generate -DgroupId=<com.mycompany.app> -DartifactId=<my-app>  -DarchetypeGroupId=net.automatalib.archetypes -DarchetypeArtifactId=basic -DarchetypeVersion=0.7.1 -DinteractiveMode=false