pom.xml 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186
  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. <parent>
  7. <groupId>org.springframework.boot</groupId>
  8. <artifactId>spring-boot-starter-parent</artifactId>
  9. <version>3.2.5</version>
  10. <relativePath/>
  11. </parent>
  12. <groupId>com.qqflow</groupId>
  13. <artifactId>qqflowengine-backend</artifactId>
  14. <version>1.0.0</version>
  15. <name>qqflowengine-backend</name>
  16. <description>通用型流程审批设计与管理系统后端</description>
  17. <properties>
  18. <java.version>17</java.version>
  19. <mybatis-plus.version>3.5.7</mybatis-plus.version>
  20. <hutool.version>5.8.25</hutool.version>
  21. <jjwt.version>0.12.5</jjwt.version>
  22. </properties>
  23. <dependencies>
  24. <dependency>
  25. <groupId>org.springframework.boot</groupId>
  26. <artifactId>spring-boot-starter-web</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.springframework.boot</groupId>
  30. <artifactId>spring-boot-starter-security</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.springframework.boot</groupId>
  34. <artifactId>spring-boot-starter-validation</artifactId>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.springframework.boot</groupId>
  38. <artifactId>spring-boot-starter-data-redis</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.redisson</groupId>
  42. <artifactId>redisson-spring-boot-starter</artifactId>
  43. <version>3.27.2</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>cn.hutool</groupId>
  47. <artifactId>hutool-all</artifactId>
  48. <version>${hutool.version}</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>com.baomidou</groupId>
  52. <artifactId>mybatis-plus-boot-starter</artifactId>
  53. <version>${mybatis-plus.version}</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.mybatis</groupId>
  57. <artifactId>mybatis-spring</artifactId>
  58. <version>3.0.3</version>
  59. </dependency>
  60. <dependency>
  61. <groupId>com.mysql</groupId>
  62. <artifactId>mysql-connector-j</artifactId>
  63. <version>8.0.33</version>
  64. <scope>runtime</scope>
  65. </dependency>
  66. <dependency>
  67. <groupId>io.jsonwebtoken</groupId>
  68. <artifactId>jjwt-api</artifactId>
  69. <version>${jjwt.version}</version>
  70. </dependency>
  71. <dependency>
  72. <groupId>io.jsonwebtoken</groupId>
  73. <artifactId>jjwt-impl</artifactId>
  74. <version>${jjwt.version}</version>
  75. <scope>runtime</scope>
  76. </dependency>
  77. <dependency>
  78. <groupId>io.jsonwebtoken</groupId>
  79. <artifactId>jjwt-jackson</artifactId>
  80. <version>${jjwt.version}</version>
  81. <scope>runtime</scope>
  82. </dependency>
  83. <dependency>
  84. <groupId>org.springdoc</groupId>
  85. <artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
  86. <version>2.3.0</version>
  87. </dependency>
  88. <dependency>
  89. <groupId>org.projectlombok</groupId>
  90. <artifactId>lombok</artifactId>
  91. <scope>provided</scope>
  92. </dependency>
  93. <dependency>
  94. <groupId>org.springframework.boot</groupId>
  95. <artifactId>spring-boot-starter-test</artifactId>
  96. <scope>test</scope>
  97. </dependency>
  98. <dependency>
  99. <groupId>com.h2database</groupId>
  100. <artifactId>h2</artifactId>
  101. <scope>runtime</scope>
  102. </dependency>
  103. <dependency>
  104. <groupId>com.github.codemonstur</groupId>
  105. <artifactId>embedded-redis</artifactId>
  106. <version>1.4.3</version>
  107. </dependency>
  108. <dependency>
  109. <groupId>org.apache.poi</groupId>
  110. <artifactId>poi</artifactId>
  111. <version>5.2.5</version>
  112. </dependency>
  113. <dependency>
  114. <groupId>org.apache.poi</groupId>
  115. <artifactId>poi-ooxml</artifactId>
  116. <version>5.2.5</version>
  117. </dependency>
  118. <!-- JSON解析 -->
  119. <dependency>
  120. <groupId>com.fasterxml.jackson.core</groupId>
  121. <artifactId>jackson-core</artifactId>
  122. </dependency>
  123. <dependency>
  124. <groupId>com.fasterxml.jackson.core</groupId>
  125. <artifactId>jackson-databind</artifactId>
  126. </dependency>
  127. <dependency>
  128. <groupId>com.fasterxml.jackson.dataformat</groupId>
  129. <artifactId>jackson-dataformat-xml</artifactId>
  130. </dependency>
  131. <!-- Jackson JSR310 时间模块 -->
  132. <dependency>
  133. <groupId>com.fasterxml.jackson.datatype</groupId>
  134. <artifactId>jackson-datatype-jsr310</artifactId>
  135. </dependency>
  136. </dependencies>
  137. <build>
  138. <plugins>
  139. <plugin>
  140. <groupId>org.springframework.boot</groupId>
  141. <artifactId>spring-boot-maven-plugin</artifactId>
  142. <configuration>
  143. <excludes>
  144. <exclude>
  145. <groupId>org.projectlombok</groupId>
  146. <artifactId>lombok</artifactId>
  147. </exclude>
  148. </excludes>
  149. </configuration>
  150. </plugin>
  151. <plugin>
  152. <groupId>org.apache.maven.plugins</groupId>
  153. <artifactId>maven-compiler-plugin</artifactId>
  154. <configuration>
  155. <source>17</source>
  156. <target>17</target>
  157. <compilerArgs>
  158. <arg>-proc:full</arg>
  159. </compilerArgs>
  160. <annotationProcessorPaths>
  161. <path>
  162. <groupId>org.projectlombok</groupId>
  163. <artifactId>lombok</artifactId>
  164. <version>1.18.32</version>
  165. </path>
  166. </annotationProcessorPaths>
  167. </configuration>
  168. </plugin>
  169. </plugins>
  170. </build>
  171. <repositories>
  172. <repository>
  173. <id>aliyun</id>
  174. <url>https://maven.aliyun.com/repository/public</url>
  175. </repository>
  176. </repositories>
  177. <pluginRepositories>
  178. <pluginRepository>
  179. <id>aliyun</id>
  180. <url>https://maven.aliyun.com/repository/public</url>
  181. </pluginRepository>
  182. </pluginRepositories>
  183. </project>