Create Java project with Maven archetype parallelj-archetype

ParallelJ is a Java framework for parallel computing. It provides flow modeling and execution. This archetype projects allows to create a project skeleton using ParallelJ.

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="1.2.3"   -DinteractiveMode=false 

Details about maven archetype parallelj-archetype

GroupId

GroupId

org.parallelj
ArtifactId

ArtifactId

parallelj-archetype
Version

Version

1.2.3
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=1.2.3 -DinteractiveMode=false