2025-10-16 21:01:15 +08:00
|
|
|
<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>cn.hezhaohui</groupId>
|
|
|
|
|
<artifactId>fund-crawler</artifactId>
|
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
|
<java.version>21</java.version>
|
|
|
|
|
</properties>
|
|
|
|
|
|
2025-10-16 21:27:47 +08:00
|
|
|
<parent>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
|
|
|
|
<version>3.2.2</version>
|
|
|
|
|
</parent>
|
|
|
|
|
|
2025-10-16 21:01:15 +08:00
|
|
|
<dependencies>
|
2025-10-16 21:27:47 +08:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2025-10-16 21:01:15 +08:00
|
|
|
<!-- https://mvnrepository.com/artifact/org.jsoup/jsoup -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.jsoup</groupId>
|
|
|
|
|
<artifactId>jsoup</artifactId>
|
|
|
|
|
<version>1.17.2</version>
|
|
|
|
|
</dependency>
|
2025-10-16 21:27:47 +08:00
|
|
|
|
|
|
|
|
<!-- https://mvnrepository.com/artifact/cn.hutool/hutool-http -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>cn.hutool</groupId>
|
|
|
|
|
<artifactId>hutool-http</artifactId>
|
|
|
|
|
<version>5.8.31</version>
|
|
|
|
|
</dependency>
|
2025-10-16 21:01:15 +08:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
|
|
</project>
|