Create Java project with Maven archetype webdriver-testng-archetype

Generates a basic skeleton project with Selenium WebDriver, WebDrivermanager, TestNG and Allure

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

mvn archetype:generate   -DgroupId="com.mycompany.app"   -DartifactId="my-app-id"   -DarchetypeGroupId="io.testsmith"   -DarchetypeArtifactId="webdriver-testng-archetype"   -DarchetypeVersion="0.3"   -DinteractiveMode=false 

Details about maven archetype webdriver-testng-archetype

GroupId

GroupId

io.testsmith
ArtifactId

ArtifactId

webdriver-testng-archetype
Version

Version

0.3
Type

Type

maven-archetype

How to add to project

mvn archetype:generate -DgroupId=<com.mycompany.app> -DartifactId=<my-app>  -DarchetypeGroupId=io.testsmith -DarchetypeArtifactId=webdriver-testng-archetype -DarchetypeVersion=0.3 -DinteractiveMode=false