diff options
author | Mavlushechka <mavlushechka@gmail.com> | 2022-09-27 21:51:53 +0500 |
---|---|---|
committer | Mavlushechka <mavlushechka@gmail.com> | 2022-09-27 21:51:53 +0500 |
commit | c0469440d567349cdf20d6296b9949e05348d1f4 (patch) | |
tree | 733fc3d58647f12db7bd34a786edfcb37595f46d /pom.xml | |
parent | e7c380c64056a004a1d61f04df7afb2a1c1c3675 (diff) | |
parent | 441d7a21494f3cb9a16ae6095540326938af536b (diff) |
Merge branch 'testing-framework' into task-3
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 |