Create Java project with Maven archetype ecology-plugin-archetype

ecology archetype for Java

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

mvn archetype:generate   -DgroupId="com.mycompany.app"   -DartifactId="my-app-id"   -DpackageName="My-packageName"   -DpluginName="My-pluginName"   -Dgitignore="My-gitignore"   -DarchetypeGroupId="com.github.liuzhenghui"   -DarchetypeArtifactId="ecology-plugin-archetype"   -DarchetypeVersion="0.0.1"   -DinteractiveMode=false 

Required parameters for generate java project:

packageName
validationRegex: none
pluginName
validationRegex: none
gitignore
validationRegex: none

Details about maven archetype ecology-plugin-archetype

GroupId

GroupId

com.github.liuzhenghui
ArtifactId

ArtifactId

ecology-plugin-archetype
Version

Version

0.0.1
Type

Type

maven-archetype

How to add to project

mvn archetype:generate -DgroupId=<com.mycompany.app> -DartifactId=<my-app>  -DarchetypeGroupId=com.github.liuzhenghui -DarchetypeArtifactId=ecology-plugin-archetype -DarchetypeVersion=0.0.1 -DinteractiveMode=false