Skip to content

Instantly share code, notes, and snippets.

@pragmatictesters
Created December 8, 2020 05:54
Show Gist options
  • Save pragmatictesters/c7d15b20f26e368896ee8b5f5850a773 to your computer and use it in GitHub Desktop.
Save pragmatictesters/c7d15b20f26e368896ee8b5f5850a773 to your computer and use it in GitHub Desktop.
Pragmatic Learning Dec 2020
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.example</groupId>
<artifactId>ptl-hrm</artifactId>
<version>1.0-SNAPSHOT</version>
<properties>
<selenium-java.version>4.0.0-alpha-7</selenium-java.version>
<testng.version>7.1.0</testng.version>
<webdrivermanager.version>4.2.2</webdrivermanager.version>
<maven.compiler.source>15</maven.compiler.source>
<maven.compiler.target>15</maven.compiler.target>
</properties>
<dependencies>
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-java</artifactId>
<version>${selenium-java.version}</version>
</dependency>
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>${testng.version}</version>
</dependency>
<dependency>
<groupId>io.github.bonigarcia</groupId>
<artifactId>webdrivermanager</artifactId>
<version>${webdrivermanager.version}</version>
</dependency>
<dependency>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
</dependency>
</dependencies>
</project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment