Create Java project with Maven archetype swf-plugin-archetype

Archetype to create plugins for SWF

Create a Java Project by archetype swf-plugin-archetype with Command Line:

mvn archetype:generate   -DgroupId="com.mycompany.app"   -DartifactId="my-app-id"   -DarchetypeVersion="My-archetypeVersion"   -DpluginName="My-pluginName"   -DgroupId="My-groupId"   -DartifactId="My-artifactId"   -Dversion="My-version"   -Dpackage="My-package"   -DarchetypeGroupId="com.github.venkatramanm.swf-all"   -DarchetypeArtifactId="swf-plugin-archetype"   -DarchetypeVersion="1.7"   -DinteractiveMode=false 

Required parameters for generate java project:

archetypeVersion
validationRegex: none
pluginName
validationRegex: none
groupId
validationRegex: none
artifactId
validationRegex: none
version
validationRegex: none
package
validationRegex: none

Details about maven archetype swf-plugin-archetype

GroupId

GroupId

com.github.venkatramanm.swf-all
ArtifactId

ArtifactId

swf-plugin-archetype
Version

Version

1.7
Type

Type

maven-archetype

How to add to project

mvn archetype:generate -DgroupId=<com.mycompany.app> -DartifactId=<my-app>  -DarchetypeGroupId=com.github.venkatramanm.swf-all -DarchetypeArtifactId=swf-plugin-archetype -DarchetypeVersion=1.7 -DinteractiveMode=false