Create Java project with Maven archetype netbeans-platform-application-archetype

Tidalwave NetBeans Platform Application Archetype

Create a Java Project by archetype netbeans-platform-application-archetype with Command Line:

mvn archetype:generate   -DgroupId="com.mycompany.app"   -DartifactId="my-app-id"   -DprojectName="My-projectName"   -DsimpleProjectName="My-simpleProjectName"   -Dauthor="My-author"   -DappbundleSignature="My-appbundleSignature"   -DciView="My-ciView"   -Dissues="My-issues"   -DarchetypeGroupId="it.tidalwave.netbeans"   -DarchetypeArtifactId="netbeans-platform-application-archetype"   -DarchetypeVersion="1.5"   -DinteractiveMode=false 

Required parameters for generate java project:

projectName
validationRegex: none
simpleProjectName
validationRegex: none
author
validationRegex: none
appbundleSignature
validationRegex: none
ciView
validationRegex: none
issues
validationRegex: none

Generated Project modules

  • ${rootArtifactId}-modules

Details about maven archetype netbeans-platform-application-archetype

GroupId

GroupId

it.tidalwave.netbeans
ArtifactId

ArtifactId

netbeans-platform-application-archetype
Version

Version

1.5
Type

Type

maven-archetype

How to add to project

mvn archetype:generate -DgroupId=<com.mycompany.app> -DartifactId=<my-app>  -DarchetypeGroupId=it.tidalwave.netbeans -DarchetypeArtifactId=netbeans-platform-application-archetype -DarchetypeVersion=1.5 -DinteractiveMode=false