diff options
author | Mavlushechka <mavlushechka@gmail.com> | 2022-09-20 21:13:24 +0500 |
---|---|---|
committer | Mavlushechka <mavlushechka@gmail.com> | 2022-09-20 21:13:24 +0500 |
commit | 3b1af3333d687e354ab9fa0a475ae7ef74b740f9 (patch) | |
tree | 3341bf5457adbc3f317fdbd6120036dc19bd7551 /pom.xml | |
parent | 528fbeb1542ffba584eecf8bc07528d1633f4fa5 (diff) |
Add testing framework
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 51 |
1 files changed, 51 insertions, 0 deletions
@@ -0,0 +1,51 @@ +<?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>com.mavlushechka.a1qa</groupId> + <artifactId>task3</artifactId> + <version>1.0-SNAPSHOT</version> + + <dependencies> + <dependency> + <groupId>org.seleniumhq.selenium</groupId> + <artifactId>selenium-java</artifactId> + <version>4.4.0</version> + </dependency> + <dependency> + <groupId>io.github.bonigarcia</groupId> + <artifactId>webdrivermanager</artifactId> + <version>5.3.0</version> + </dependency> + <dependency> + <groupId>org.testng</groupId> + <artifactId>testng</artifactId> + <version>7.6.1</version> + <scope>test</scope> + </dependency> + <dependency> + <groupId>com.googlecode.json-simple</groupId> + <artifactId>json-simple</artifactId> + <version>1.1.1</version> + </dependency> + <dependency> + <groupId>org.apache.logging.log4j</groupId> + <artifactId>log4j-core</artifactId> + <version>2.18.0</version> + </dependency> + <dependency> + <groupId>org.awaitility</groupId> + <artifactId>awaitility</artifactId> + <version>4.2.0</version> + </dependency> + </dependencies> + + <properties> + <maven.compiler.source>18</maven.compiler.source> + <maven.compiler.target>18</maven.compiler.target> + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> + </properties> + +</project>
\ No newline at end of file |