pom.xml 5.7 KB

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