[d4d8f61] | 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>groupId</groupId>
|
---|
| 8 | <artifactId>GlobeGuru</artifactId>
|
---|
| 9 | <version>1.0-SNAPSHOT</version>
|
---|
| 10 |
|
---|
| 11 | <properties>
|
---|
| 12 | <maven.compiler.source>21</maven.compiler.source>
|
---|
| 13 | <maven.compiler.target>21</maven.compiler.target>
|
---|
| 14 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
---|
| 15 | </properties>
|
---|
| 16 | <dependencies>
|
---|
| 17 | <dependency>
|
---|
| 18 | <groupId>com.fasterxml.jackson.core</groupId>
|
---|
| 19 | <artifactId>jackson-core</artifactId>
|
---|
| 20 | <version>2.17.0</version>
|
---|
| 21 | </dependency>
|
---|
| 22 | <dependency>
|
---|
| 23 | <groupId>com.fasterxml.jackson.core</groupId>
|
---|
| 24 | <artifactId>jackson-databind</artifactId>
|
---|
| 25 | <version>2.17.0</version>
|
---|
| 26 | </dependency>
|
---|
| 27 | <dependency>
|
---|
| 28 | <groupId>com.fasterxml.jackson.core</groupId>
|
---|
| 29 | <artifactId>jackson-annotations</artifactId>
|
---|
| 30 | <version>2.17.1</version>
|
---|
| 31 | </dependency>
|
---|
| 32 |
|
---|
| 33 | <dependency>
|
---|
| 34 | <groupId>org.seleniumhq.selenium</groupId>
|
---|
| 35 | <artifactId>selenium-java</artifactId>
|
---|
| 36 | <version>4.1.2</version>
|
---|
| 37 | </dependency>
|
---|
| 38 | <dependency>
|
---|
| 39 | <groupId>org.seleniumhq.selenium</groupId>
|
---|
| 40 | <artifactId>selenium-chrome-driver</artifactId>
|
---|
| 41 | <version>4.1.2</version>
|
---|
| 42 | </dependency>
|
---|
| 43 | <dependency>
|
---|
| 44 | <groupId>org.seleniumhq.selenium</groupId>
|
---|
| 45 | <version>4.8.1</version>
|
---|
| 46 | <artifactId>selenium-http-jdk-client</artifactId>
|
---|
| 47 | </dependency>
|
---|
| 48 | <dependency>
|
---|
| 49 | <!-- jsoup HTML parser library @ https://jsoup.org/ -->
|
---|
| 50 | <groupId>org.jsoup</groupId>
|
---|
| 51 | <artifactId>jsoup</artifactId>
|
---|
| 52 | <version>1.17.2</version>
|
---|
| 53 | </dependency>
|
---|
| 54 |
|
---|
| 55 |
|
---|
| 56 |
|
---|
| 57 |
|
---|
| 58 | </dependencies>
|
---|
| 59 | </project> |
---|