pom.xml 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171
  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.baomidou/mybatis-plus-boot-starter -->
  51. <dependency>
  52. <groupId>com.baomidou</groupId>
  53. <artifactId>mybatis-plus-boot-starter</artifactId>
  54. <version>3.5.5</version>
  55. </dependency>
  56. <dependency>
  57. <groupId>org.postgresql</groupId>
  58. <artifactId>postgresql</artifactId>
  59. <scope>runtime</scope>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.springframework.boot</groupId>
  63. <artifactId>spring-boot-starter-validation</artifactId>
  64. </dependency>
  65. <!-- https://mvnrepository.com/artifact/com.github.xiaoymin/knife4j-openapi3-spring-boot-starter -->
  66. <dependency>
  67. <groupId>com.github.xiaoymin</groupId>
  68. <artifactId>knife4j-openapi3-spring-boot-starter</artifactId>
  69. <version>4.3.0</version>
  70. </dependency>
  71. <!-- https://mvnrepository.com/artifact/com.github.pagehelper/pagehelper -->
  72. <dependency>
  73. <groupId>com.github.pagehelper</groupId>
  74. <artifactId>pagehelper</artifactId>
  75. <version>6.1.0</version>
  76. </dependency>
  77. <!-- <dependency>-->
  78. <!-- <groupId>com.itextpdf</groupId>-->
  79. <!-- <artifactId>itext7-core</artifactId>-->
  80. <!-- <version>7.1.4</version>-->
  81. <!-- <type>pom</type>-->
  82. <!-- </dependency>-->
  83. <!-- https://mvnrepository.com/artifact/com.alibaba/easyexcel -->
  84. <dependency>
  85. <groupId>com.alibaba</groupId>
  86. <artifactId>easyexcel</artifactId>
  87. <version>3.0.5</version>
  88. </dependency>
  89. <!-- https://mvnrepository.com/artifact/commons-io/commons-io -->
  90. <dependency>
  91. <groupId>commons-io</groupId>
  92. <artifactId>commons-io</artifactId>
  93. <version>2.15.1</version>
  94. </dependency>
  95. <!-- https://mvnrepository.com/artifact/com.baomidou/mybatis-plus-generator -->
  96. <dependency>
  97. <groupId>com.baomidou</groupId>
  98. <artifactId>mybatis-plus-generator</artifactId>
  99. <version>3.5.5</version>
  100. <scope>test</scope>
  101. </dependency>
  102. <!-- https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-freemarker -->
  103. <dependency>
  104. <groupId>org.springframework.boot</groupId>
  105. <artifactId>spring-boot-starter-freemarker</artifactId>
  106. <version>3.2.3</version>
  107. <scope>test</scope>
  108. </dependency>
  109. </dependencies>
  110. <dependencyManagement>
  111. <dependencies>
  112. <dependency>
  113. <groupId>org.springframework.boot</groupId>
  114. <artifactId>spring-boot-dependencies</artifactId>
  115. <version>${spring-boot.version}</version>
  116. <type>pom</type>
  117. <scope>import</scope>
  118. </dependency>
  119. <dependency>
  120. <groupId>com.github.jsqlparser</groupId>
  121. <artifactId>jsqlparser</artifactId>
  122. <version>4.6</version>
  123. <scope>compile</scope>
  124. </dependency>
  125. <dependency>
  126. <groupId>org.apache.commons</groupId>
  127. <artifactId>commons-compress</artifactId>
  128. <version>1.24.0</version>
  129. <scope>compile</scope>
  130. </dependency>
  131. <dependency>
  132. <groupId>org.checkerframework</groupId>
  133. <artifactId>checker-qual</artifactId>
  134. <version>3.33.0</version>
  135. </dependency>
  136. <dependency>
  137. <groupId>org.ow2.asm</groupId>
  138. <artifactId>asm</artifactId>
  139. <version>9.3</version>
  140. </dependency>
  141. </dependencies>
  142. </dependencyManagement>
  143. <build>
  144. <finalName>finance-gdc-api</finalName>
  145. <plugins>
  146. <plugin>
  147. <groupId>org.springframework.boot</groupId>
  148. <artifactId>spring-boot-maven-plugin</artifactId>
  149. <executions>
  150. <execution>
  151. <id>repackage</id>
  152. <goals>
  153. <goal>repackage</goal>
  154. </goals>
  155. </execution>
  156. </executions>
  157. <configuration>
  158. <excludes>
  159. <exclude>
  160. <groupId>org.projectlombok</groupId>
  161. <artifactId>lombok</artifactId>
  162. </exclude>
  163. </excludes>
  164. </configuration>
  165. </plugin>
  166. </plugins>
  167. </build>
  168. </project>