pom.xml 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163
  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. <spring-statemachine.version>4.0.0</spring-statemachine.version>
  23. </properties>
  24. <dependencies>
  25. <dependency>
  26. <groupId>org.springframework.boot</groupId>
  27. <artifactId>spring-boot-starter-web</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.springframework.boot</groupId>
  31. <artifactId>spring-boot-starter-security</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.springframework.boot</groupId>
  35. <artifactId>spring-boot-starter-validation</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.springframework.boot</groupId>
  39. <artifactId>spring-boot-starter-data-redis</artifactId>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.springframework.statemachine</groupId>
  43. <artifactId>spring-statemachine-starter</artifactId>
  44. <version>${spring-statemachine.version}</version>
  45. </dependency>
  46. <dependency>
  47. <groupId>com.baomidou</groupId>
  48. <artifactId>mybatis-plus-boot-starter</artifactId>
  49. <version>${mybatis-plus.version}</version>
  50. </dependency>
  51. <dependency>
  52. <groupId>org.mybatis</groupId>
  53. <artifactId>mybatis-spring</artifactId>
  54. <version>3.0.3</version>
  55. </dependency>
  56. <dependency>
  57. <groupId>com.mysql</groupId>
  58. <artifactId>mysql-connector-j</artifactId>
  59. <version>8.0.33</version>
  60. <scope>runtime</scope>
  61. </dependency>
  62. <dependency>
  63. <groupId>cn.hutool</groupId>
  64. <artifactId>hutool-all</artifactId>
  65. <version>${hutool.version}</version>
  66. </dependency>
  67. <dependency>
  68. <groupId>io.jsonwebtoken</groupId>
  69. <artifactId>jjwt-api</artifactId>
  70. <version>${jjwt.version}</version>
  71. </dependency>
  72. <dependency>
  73. <groupId>io.jsonwebtoken</groupId>
  74. <artifactId>jjwt-impl</artifactId>
  75. <version>${jjwt.version}</version>
  76. <scope>runtime</scope>
  77. </dependency>
  78. <dependency>
  79. <groupId>io.jsonwebtoken</groupId>
  80. <artifactId>jjwt-jackson</artifactId>
  81. <version>${jjwt.version}</version>
  82. <scope>runtime</scope>
  83. </dependency>
  84. <dependency>
  85. <groupId>org.springdoc</groupId>
  86. <artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
  87. <version>2.3.0</version>
  88. </dependency>
  89. <dependency>
  90. <groupId>org.projectlombok</groupId>
  91. <artifactId>lombok</artifactId>
  92. <scope>provided</scope>
  93. </dependency>
  94. <dependency>
  95. <groupId>org.springframework.boot</groupId>
  96. <artifactId>spring-boot-starter-test</artifactId>
  97. <scope>test</scope>
  98. </dependency>
  99. <dependency>
  100. <groupId>org.springframework.security</groupId>
  101. <artifactId>spring-security-test</artifactId>
  102. <scope>test</scope>
  103. </dependency>
  104. <dependency>
  105. <groupId>com.h2database</groupId>
  106. <artifactId>h2</artifactId>
  107. <scope>runtime</scope>
  108. </dependency>
  109. <dependency>
  110. <groupId>com.github.codemonstur</groupId>
  111. <artifactId>embedded-redis</artifactId>
  112. <version>1.4.3</version>
  113. </dependency>
  114. </dependencies>
  115. <build>
  116. <plugins>
  117. <plugin>
  118. <groupId>org.springframework.boot</groupId>
  119. <artifactId>spring-boot-maven-plugin</artifactId>
  120. <configuration>
  121. <excludes>
  122. <exclude>
  123. <groupId>org.projectlombok</groupId>
  124. <artifactId>lombok</artifactId>
  125. </exclude>
  126. </excludes>
  127. </configuration>
  128. </plugin>
  129. <plugin>
  130. <groupId>org.apache.maven.plugins</groupId>
  131. <artifactId>maven-compiler-plugin</artifactId>
  132. <configuration>
  133. <source>17</source>
  134. <target>17</target>
  135. <compilerArgs>
  136. <arg>-proc:full</arg>
  137. </compilerArgs>
  138. <annotationProcessorPaths>
  139. <path>
  140. <groupId>org.projectlombok</groupId>
  141. <artifactId>lombok</artifactId>
  142. <version>1.18.32</version>
  143. </path>
  144. </annotationProcessorPaths>
  145. </configuration>
  146. </plugin>
  147. </plugins>
  148. </build>
  149. <repositories>
  150. <repository>
  151. <id>aliyun</id>
  152. <url>https://maven.aliyun.com/repository/public</url>
  153. </repository>
  154. </repositories>
  155. <pluginRepositories>
  156. <pluginRepository>
  157. <id>aliyun</id>
  158. <url>https://maven.aliyun.com/repository/public</url>
  159. </pluginRepository>
  160. </pluginRepositories>
  161. </project>