Create Java project with Maven archetype parallelj-archetype

ParallelJ is a Java framework for parallel computing. It provides flow modeling and execution.

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

mvn archetype:generate   -DgroupId="com.mycompany.app"   -DartifactId="my-app-id"   -DarchetypeGroupId="org.parallelj"   -DarchetypeArtifactId="parallelj-archetype"   -DarchetypeVersion="0.4.0"   -DinteractiveMode=false 

Details about maven archetype parallelj-archetype

GroupId

GroupId

org.parallelj
ArtifactId

ArtifactId

parallelj-archetype
Version

Version

0.4.0
Type

Type

maven-archetype

How to add to project

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