pom.xml 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  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. <!-- Define the version of OPEN HTML TO PDF in the properties section of your POM. -->
  14. <openhtml.version>1.0.10</openhtml.version>
  15. </properties>
  16. <dependencies>
  17. <dependency>
  18. <groupId>com.baomidou</groupId>
  19. <artifactId>mybatis-plus</artifactId>
  20. <version>3.5.9</version>
  21. </dependency>
  22. <dependency>
  23. <groupId>com.zaxxer</groupId>
  24. <artifactId>HikariCP</artifactId>
  25. <version>6.3.3</version>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.postgresql</groupId>
  29. <artifactId>postgresql</artifactId>
  30. <version>42.7.4</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.jsoup</groupId>
  34. <artifactId>jsoup</artifactId>
  35. <version>1.16.1</version>
  36. </dependency>
  37. <dependency>
  38. <groupId>com.fasterxml.jackson.core</groupId>
  39. <artifactId>jackson-databind</artifactId>
  40. <version>2.18.3</version>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.junit.jupiter</groupId>
  44. <artifactId>junit-jupiter</artifactId>
  45. <version>5.14.0</version>
  46. <scope>test</scope>
  47. </dependency>
  48. <dependency>
  49. <groupId>ch.qos.logback</groupId>
  50. <artifactId>logback-classic</artifactId>
  51. <version>1.5.18</version>
  52. </dependency>
  53. <dependency>
  54. <!-- ALWAYS required, usually included transitively. -->
  55. <groupId>com.openhtmltopdf</groupId>
  56. <artifactId>openhtmltopdf-core</artifactId>
  57. <version>${openhtml.version}</version>
  58. </dependency>
  59. <dependency>
  60. <!-- Required for PDF output. -->
  61. <groupId>com.openhtmltopdf</groupId>
  62. <artifactId>openhtmltopdf-pdfbox</artifactId>
  63. <version>${openhtml.version}</version>
  64. </dependency>
  65. <dependency>
  66. <!-- Required for image output only. -->
  67. <groupId>com.openhtmltopdf</groupId>
  68. <artifactId>openhtmltopdf-java2d</artifactId>
  69. <version>${openhtml.version}</version>
  70. </dependency>
  71. <dependency>
  72. <!-- Optional, leave out if you do not need right-to-left or bi-directional text support. -->
  73. <groupId>com.openhtmltopdf</groupId>
  74. <artifactId>openhtmltopdf-rtl-support</artifactId>
  75. <version>${openhtml.version}</version>
  76. </dependency>
  77. <dependency>
  78. <!-- Optional, leave out if you do not need logging via slf4j. -->
  79. <groupId>com.openhtmltopdf</groupId>
  80. <artifactId>openhtmltopdf-slf4j</artifactId>
  81. <version>${openhtml.version}</version>
  82. </dependency>
  83. <!--<dependency>-->
  84. <!-- &lt;!&ndash; Optional, leave out if you do not need SVG support. &ndash;&gt;-->
  85. <!-- <groupId>com.openhtmltopdf</groupId>-->
  86. <!-- <artifactId>openhtmltopdf-svg-support</artifactId>-->
  87. <!-- <version>${openhtml.version}</version>-->
  88. <!--</dependency>-->
  89. <!--<dependency>-->
  90. <!-- &lt;!&ndash; Optional, leave out if you do not need MathML support. &ndash;&gt;-->
  91. <!-- &lt;!&ndash; Introduced in RC-13. &ndash;&gt;-->
  92. <!-- <groupId>com.openhtmltopdf</groupId>-->
  93. <!-- <artifactId>openhtmltopdf-mathml-support</artifactId>-->
  94. <!-- <version>${openhtml.version}</version>-->
  95. <!--</dependency>-->
  96. </dependencies>
  97. <build>
  98. <plugins>
  99. <plugin>
  100. <groupId>org.apache.maven.plugins</groupId>
  101. <artifactId>maven-surefire-plugin</artifactId>
  102. <version>3.5.6</version>
  103. </plugin>
  104. </plugins>
  105. </build>
  106. </project>