Create Java project with Maven archetype storage-plugin-archetype

Maven archetype for an Abiquo Storage Plugin

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

mvn archetype:generate   -DgroupId="com.mycompany.app"   -DartifactId="my-app-id"   -DgroupId="My-groupId"   -Dpackage="My-package"   -DarchetypeGroupId="com.abiquo"   -DarchetypeArtifactId="storage-plugin-archetype"   -DarchetypeVersion="5.0.0"   -DinteractiveMode=false 

Required parameters for generate java project:

groupId
validationRegex: none
package
validationRegex: none

Details about maven archetype storage-plugin-archetype

GroupId

GroupId

com.abiquo
ArtifactId

ArtifactId

storage-plugin-archetype
Version

Version

5.0.0
Type

Type

maven-archetype

How to add to project

mvn archetype:generate -DgroupId=<com.mycompany.app> -DartifactId=<my-app>  -DarchetypeGroupId=com.abiquo -DarchetypeArtifactId=storage-plugin-archetype -DarchetypeVersion=5.0.0 -DinteractiveMode=false