pom.xml 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>com.example</groupId>
  6. <artifactId>finance-gdc-api</artifactId>
  7. <version>0.0.1-SNAPSHOT</version>
  8. <name>finance-gdc-api</name>
  9. <description>finance-gdc-api</description>
  10. <properties>
  11. <java.version>17</java.version>
  12. <maven.compiler.source>${java.version}</maven.compiler.source>
  13. <maven.compiler.target>${java.version}</maven.compiler.target>
  14. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  15. <project.reporting.outputEncoding>${project.build.sourceEncoding}</project.reporting.outputEncoding>
  16. <spring-boot.version>2.7.16</spring-boot.version>
  17. </properties>
  18. <dependencies>
  19. <dependency>
  20. <groupId>org.springframework.boot</groupId>
  21. <artifactId>spring-boot-starter-web</artifactId>
  22. </dependency>
  23. <dependency>
  24. <groupId>org.springframework.boot</groupId>
  25. <artifactId>spring-boot-configuration-processor</artifactId>
  26. <optional>true</optional>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.projectlombok</groupId>
  30. <artifactId>lombok</artifactId>
  31. <optional>true</optional>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.springframework.boot</groupId>
  35. <artifactId>spring-boot-starter-test</artifactId>
  36. <scope>test</scope>
  37. </dependency>
  38. <!-- https://mvnrepository.com/artifact/cn.hutool/hutool-all -->
  39. <dependency>
  40. <groupId>cn.hutool</groupId>
  41. <artifactId>hutool-all</artifactId>
  42. <version>5.8.23</version>
  43. </dependency>
  44. <!-- https://mvnrepository.com/artifact/org.apache.commons/commons-exec -->
  45. <dependency>
  46. <groupId>org.apache.commons</groupId>
  47. <artifactId>commons-exec</artifactId>
  48. <version>1.3</version>
  49. </dependency>
  50. <!-- https://mvnrepository.com/artifact/com.google.code.gson/gson -->
  51. <dependency>
  52. <groupId>com.google.code.gson</groupId>
  53. <artifactId>gson</artifactId>
  54. <version>2.10.1</version>
  55. </dependency>
  56. <!-- https://mvnrepository.com/artifact/com.baomidou/mybatis-plus-boot-starter -->
  57. <dependency>
  58. <groupId>com.baomidou</groupId>
  59. <artifactId>mybatis-plus-boot-starter</artifactId>
  60. <version>3.5.5</version>
  61. </dependency>
  62. <dependency>
  63. <groupId>org.postgresql</groupId>
  64. <artifactId>postgresql</artifactId>
  65. <scope>runtime</scope>
  66. </dependency>
  67. <dependency>
  68. <groupId>org.springframework.boot</groupId>
  69. <artifactId>spring-boot-starter-validation</artifactId>
  70. </dependency>
  71. <!-- https://mvnrepository.com/artifact/com.github.xiaoymin/knife4j-openapi3-spring-boot-starter -->
  72. <dependency>
  73. <groupId>com.github.xiaoymin</groupId>
  74. <artifactId>knife4j-openapi3-spring-boot-starter</artifactId>
  75. <version>4.3.0</version>
  76. </dependency>
  77. <!-- https://mvnrepository.com/artifact/com.github.pagehelper/pagehelper -->
  78. <dependency>
  79. <groupId>com.github.pagehelper</groupId>
  80. <artifactId>pagehelper</artifactId>
  81. <version>6.1.0</version>
  82. </dependency>
  83. <!-- <dependency>-->
  84. <!-- <groupId>com.itextpdf</groupId>-->
  85. <!-- <artifactId>itext7-core</artifactId>-->
  86. <!-- <version>7.1.4</version>-->
  87. <!-- <type>pom</type>-->
  88. <!-- </dependency>-->
  89. <!-- https://mvnrepository.com/artifact/com.alibaba/easyexcel -->
  90. <dependency>
  91. <groupId>com.alibaba</groupId>
  92. <artifactId>easyexcel</artifactId>
  93. <version>3.0.5</version>
  94. </dependency>
  95. <!-- https://mvnrepository.com/artifact/commons-io/commons-io -->
  96. <dependency>
  97. <groupId>commons-io</groupId>
  98. <artifactId>commons-io</artifactId>
  99. <version>2.15.1</version>
  100. </dependency>
  101. <!-- https://mvnrepository.com/artifact/com.baomidou/mybatis-plus-generator -->
  102. <dependency>
  103. <groupId>com.baomidou</groupId>
  104. <artifactId>mybatis-plus-generator</artifactId>
  105. <version>3.5.5</version>
  106. <scope>test</scope>
  107. </dependency>
  108. <!-- https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-freemarker -->
  109. <dependency>
  110. <groupId>org.springframework.boot</groupId>
  111. <artifactId>spring-boot-starter-freemarker</artifactId>
  112. <version>3.2.3</version>
  113. <scope>test</scope>
  114. </dependency>
  115. </dependencies>
  116. <dependencyManagement>
  117. <dependencies>
  118. <dependency>
  119. <groupId>org.springframework.boot</groupId>
  120. <artifactId>spring-boot-dependencies</artifactId>
  121. <version>${spring-boot.version}</version>
  122. <type>pom</type>
  123. <scope>import</scope>
  124. </dependency>
  125. <dependency>
  126. <groupId>com.github.jsqlparser</groupId>
  127. <artifactId>jsqlparser</artifactId>
  128. <version>4.6</version>
  129. <scope>compile</scope>
  130. </dependency>
  131. <dependency>
  132. <groupId>org.apache.commons</groupId>
  133. <artifactId>commons-compress</artifactId>
  134. <version>1.24.0</version>
  135. <scope>compile</scope>
  136. </dependency>
  137. <dependency>
  138. <groupId>org.checkerframework</groupId>
  139. <artifactId>checker-qual</artifactId>
  140. <version>3.33.0</version>
  141. </dependency>
  142. <dependency>
  143. <groupId>org.ow2.asm</groupId>
  144. <artifactId>asm</artifactId>
  145. <version>9.3</version>
  146. </dependency>
  147. </dependencies>
  148. </dependencyManagement>
  149. <build>
  150. <finalName>finance-gdc-api</finalName>
  151. <plugins>
  152. <plugin>
  153. <groupId>org.springframework.boot</groupId>
  154. <artifactId>spring-boot-maven-plugin</artifactId>
  155. <executions>
  156. <execution>
  157. <id>repackage</id>
  158. <goals>
  159. <goal>repackage</goal>
  160. </goals>
  161. </execution>
  162. </executions>
  163. <configuration>
  164. <excludes>
  165. <exclude>
  166. <groupId>org.projectlombok</groupId>
  167. <artifactId>lombok</artifactId>
  168. </exclude>
  169. </excludes>
  170. </configuration>
  171. </plugin>
  172. </plugins>
  173. </build>
  174. </project>