pom.xml 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  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. <parent>
  6. <artifactId>ruoyi</artifactId>
  7. <groupId>com.ruoyi</groupId>
  8. <version>3.9.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>ruoyi-system</artifactId>
  12. <description>
  13. system系统模块
  14. </description>
  15. <dependencies>
  16. <!-- 通用工具-->
  17. <dependency>
  18. <groupId>com.ruoyi</groupId>
  19. <artifactId>ruoyi-common</artifactId>
  20. </dependency>
  21. <!-- JUnit 5 测试框架 -->
  22. <dependency>
  23. <groupId>org.junit.jupiter</groupId>
  24. <artifactId>junit-jupiter</artifactId>
  25. <scope>test</scope>
  26. </dependency>
  27. <!-- Spring Boot 测试 -->
  28. <dependency>
  29. <groupId>org.springframework.boot</groupId>
  30. <artifactId>spring-boot-starter-test</artifactId>
  31. <scope>test</scope>
  32. </dependency>
  33. <!-- Jsoup HTML 爬虫库 -->
  34. <dependency>
  35. <groupId>org.jsoup</groupId>
  36. <artifactId>jsoup</artifactId>
  37. <version>1.15.3</version>
  38. </dependency>
  39. <!-- Selenium WebDriver (用于动态页面爬虫) -->
  40. <dependency>
  41. <groupId>org.seleniumhq.selenium</groupId>
  42. <artifactId>selenium-java</artifactId>
  43. <version>4.8.0</version>
  44. <scope>test</scope>
  45. </dependency>
  46. <!-- HTTP 客户端 -->
  47. <dependency>
  48. <groupId>org.apache.httpcomponents.client5</groupId>
  49. <artifactId>httpclient5</artifactId>
  50. <version>5.2.1</version>
  51. </dependency>
  52. </dependencies>
  53. </project>