Create Java project with Maven archetype uctool-archetype

Creates a new project ready to be used with Use Case Tool.

Create a Java Project by archetype uctool-archetype with Command Line:

mvn archetype:generate   -DgroupId="com.mycompany.app"   -DartifactId="my-app-id"   -Ductool-version="My-uctool-version"   -Ductool-maven-plugin-version="My-uctool-maven-plugin-version"   -DarchetypeGroupId="net.sf.uctool"   -DarchetypeArtifactId="uctool-archetype"   -DarchetypeVersion="2.0.0"   -DinteractiveMode=false 

Required parameters for generate java project:

uctool-version
validationRegex: none
uctool-maven-plugin-version
validationRegex: none

Details about maven archetype uctool-archetype

GroupId

GroupId

net.sf.uctool
ArtifactId

ArtifactId

uctool-archetype
Version

Version

2.0.0
Type

Type

maven-archetype

How to add to project

mvn archetype:generate -DgroupId=<com.mycompany.app> -DartifactId=<my-app>  -DarchetypeGroupId=net.sf.uctool -DarchetypeArtifactId=uctool-archetype -DarchetypeVersion=2.0.0 -DinteractiveMode=false