-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom.xml
More file actions
32 lines (28 loc) · 1.55 KB
/
pom.xml
File metadata and controls
32 lines (28 loc) · 1.55 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<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.organizationName</groupId>
<artifactId>artifactID_myFirstMavenProject</artifactId>
<version>0.0.1-SNAPSHOT</version>
<dependencies>
<dependency> <!-- popular library for working with Microsoft Office douments, makes Java program read date from an external Excel sheet -->
<groupId>org.apache.poi</groupId>
<artifactId>poi</artifactId> <!-- core functionality for working with MS Office file formats, handles .xls files and basic excel related operations -->
<version>5.2.3</version>
</dependency>
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi-ooxml</artifactId> <!-- extends poi lib to use .xlsx, .docx, and .pptx, reading and writing to .xlsx files -->
<version>5.2.3</version>
</dependency>
<dependency> <!-- browser automation framework, testing web app by sim user actions like click, typing, nav, form filling, and validation of UI elem -->
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-java</artifactId>
<version>4.18.1</version>
</dependency>
<dependency> <!-- automatically downloads the correct driver version for your browser -->
<groupId>io.github.bonigarcia</groupId>
<artifactId>webdrivermanager</artifactId>
<version>5.5.0</version>
</dependency>
</dependencies>
</project>