Skip to content

Instantly share code, notes, and snippets.

@hemanth22
Forked from paulouskin/SQA-051
Created January 4, 2020 08:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hemanth22/7056a4998567be1868e05993889f2684 to your computer and use it in GitHub Desktop.
Save hemanth22/7056a4998567be1868e05993889f2684 to your computer and use it in GitHub Desktop.
<properties>
<surefire.version>2.21.0</surefire.version>
<compiler.version>3.7.0</compiler.version>
<failsafe.version>2.21.0</failsafe.version>
<java.version>1.8</java.version>
<selenium.version>3.141.59</selenium.version>
<testng.version>6.14.3</testng.version>
<hamcrest.version>1.3</hamcrest.version>
<uncommons.version>1.1.4</uncommons.version>
<isHeadless>true</isHeadless>
<chromedriver.location>/Users/ivan.paulouski/Dev/protractor-training/selenium/chromedriver</chromedriver.location>
</properties>
<dependencies>
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>${testng.version}</version>
</dependency>
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-java</artifactId>
<version>${selenium.version}</version>
</dependency>
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-chrome-driver</artifactId>
<version>${selenium.version}</version>
</dependency>
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-api</artifactId>
<version>${selenium.version}</version>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-all</artifactId>
<version>${hamcrest.version}</version>
</dependency>
<dependency>
<groupId>org.uncommons</groupId>
<artifactId>reportng</artifactId>
<version>${uncommons.version}</version>
<scope>test</scope>
</dependency>
<!-- https://mvnrepository.com/artifact/com.google.inject/guice -->
<dependency>
<groupId>com.google.inject</groupId>
<artifactId>guice</artifactId>
<version>4.1.0</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>${surefire.version}</version>
<configuration>
<systemProperties>
<isHeadless>${isHeadless}</isHeadless>
</systemProperties>
<suiteXmlFiles>
<suiteXmlFile>testng.xml</suiteXmlFile>
</suiteXmlFiles>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${compiler.version}</version>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
</configuration>
</plugin>
</plugins>
</build>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment