1+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2+ <project xmlns =" http://maven.apache.org/POM/4.0.0"
3+ xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
4+ xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
5+ <modelVersion >4.0.0</modelVersion >
6+
7+ <groupId >org.example</groupId >
8+ <artifactId >CodePlayground</artifactId >
9+ <version >1.0-SNAPSHOT</version >
10+
11+ <properties >
12+ <maven .compiler.source>17</maven .compiler.source>
13+ <maven .compiler.target>17</maven .compiler.target>
14+ <project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
15+ <selenium .version>4.16.1</selenium .version>
16+ <restassured .version>5.4.0</restassured .version>
17+ <appium .version>9.0.0</appium .version>
18+ <testng .version>7.8.0</testng .version>
19+ <assertJ .version>3.24.2</assertJ .version>
20+ </properties >
21+
22+ <dependencies >
23+ <!-- https://mvnrepository.com/artifact/org.seleniumhq.selenium/selenium-java -->
24+ <dependency >
25+ <groupId >org.seleniumhq.selenium</groupId >
26+ <artifactId >selenium-java</artifactId >
27+ <version >${selenium.version} </version >
28+ </dependency >
29+ <!-- https://mvnrepository.com/artifact/io.rest-assured/rest-assured -->
30+ <dependency >
31+ <groupId >io.rest-assured</groupId >
32+ <artifactId >rest-assured</artifactId >
33+ <version >${restassured.version} </version >
34+ <scope >test</scope >
35+ </dependency >
36+ <!-- https://mvnrepository.com/artifact/org.testng/testng -->
37+ <dependency >
38+ <groupId >org.testng</groupId >
39+ <artifactId >testng</artifactId >
40+ <version >${testng.version} </version >
41+ <scope >test</scope >
42+ </dependency >
43+ <!-- https://mvnrepository.com/artifact/io.appium/java-client -->
44+ <dependency >
45+ <groupId >io.appium</groupId >
46+ <artifactId >java-client</artifactId >
47+ <version >${appium.version} </version >
48+ </dependency >
49+ <!-- https://mvnrepository.com/artifact/org.assertj/assertj-core -->
50+ <dependency >
51+ <groupId >org.assertj</groupId >
52+ <artifactId >assertj-core</artifactId >
53+ <version >${assertJ.version} </version >
54+ <scope >test</scope >
55+ </dependency >
56+ </dependencies >
57+
58+ </project >
0 commit comments