pom.xml 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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. <groupId>space.anyi</groupId>
  7. <artifactId>newCollection</artifactId>
  8. <version>1.0-SNAPSHOT</version>
  9. <properties>
  10. <maven.compiler.source>25</maven.compiler.source>
  11. <maven.compiler.target>25</maven.compiler.target>
  12. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  13. </properties>
  14. <dependencies>
  15. <dependency>
  16. <groupId>com.baomidou</groupId>
  17. <artifactId>mybatis-plus</artifactId>
  18. <version>3.5.9</version>
  19. </dependency>
  20. <dependency>
  21. <groupId>com.zaxxer</groupId>
  22. <artifactId>HikariCP</artifactId>
  23. <version>6.3.3</version>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.postgresql</groupId>
  27. <artifactId>postgresql</artifactId>
  28. <version>42.7.4</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.jsoup</groupId>
  32. <artifactId>jsoup</artifactId>
  33. <version>1.16.1</version>
  34. </dependency>
  35. <dependency>
  36. <groupId>com.fasterxml.jackson.core</groupId>
  37. <artifactId>jackson-databind</artifactId>
  38. <version>2.18.3</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.junit.jupiter</groupId>
  42. <artifactId>junit-jupiter</artifactId>
  43. <version>5.14.0</version>
  44. <scope>test</scope>
  45. </dependency>
  46. </dependencies>
  47. <build>
  48. <plugins>
  49. <plugin>
  50. <groupId>org.apache.maven.plugins</groupId>
  51. <artifactId>maven-surefire-plugin</artifactId>
  52. <version>3.5.6</version>
  53. </plugin>
  54. </plugins>
  55. </build>
  56. </project>