Created
December 8, 2020 05:54
-
-
Save pragmatictesters/c7d15b20f26e368896ee8b5f5850a773 to your computer and use it in GitHub Desktop.
Pragmatic Learning Dec 2020
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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