Create Java project with Maven archetype ets-archetype-testng

A template for creating an executable test suite (ETS) based on the TestNG framework.

Create a Java Project by archetype ets-archetype-testng with Command Line:

mvn archetype:generate   -DgroupId="com.mycompany.app"   -DartifactId="my-app-id"   -Dets-code="My-ets-code"   -Dets-title="My-ets-title"   -DgroupId="My-groupId"   -DartifactId="My-artifactId"   -Dpackage="My-package"   -Dversion="My-version"   -DarchetypeGroupId="org.opengis.cite"   -DarchetypeArtifactId="ets-archetype-testng"   -DarchetypeVersion="2.6"   -DinteractiveMode=false 

Required parameters for generate java project:

ets-code
validationRegex: none
ets-title
validationRegex: none
groupId
validationRegex: none
artifactId
validationRegex: none
package
validationRegex: none
version
validationRegex: none

Details about maven archetype ets-archetype-testng

GroupId

GroupId

org.opengis.cite
ArtifactId

ArtifactId

ets-archetype-testng
Version

Version

2.6
Type

Type

maven-archetype

How to add to project

mvn archetype:generate -DgroupId=<com.mycompany.app> -DartifactId=<my-app>  -DarchetypeGroupId=org.opengis.cite -DarchetypeArtifactId=ets-archetype-testng -DarchetypeVersion=2.6 -DinteractiveMode=false