dependency-reduced-pom.xml 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210
  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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  3. <parent>
  4. <artifactId>jzg</artifactId>
  5. <groupId>com.jzg</groupId>
  6. <version>1.0-SNAPSHOT</version>
  7. </parent>
  8. <modelVersion>4.0.0</modelVersion>
  9. <artifactId>authentication</artifactId>
  10. <name>authentication Maven Webapp</name>
  11. <url>http://maven.apache.org</url>
  12. <build>
  13. <plugins>
  14. <plugin>
  15. <groupId>org.springframework.boot</groupId>
  16. <artifactId>spring-boot-maven-plugin</artifactId>
  17. </plugin>
  18. </plugins>
  19. </build>
  20. <dependencies>
  21. <dependency>
  22. <groupId>org.springframework.boot</groupId>
  23. <artifactId>spring-boot-starter-web</artifactId>
  24. <version>3.0.0</version>
  25. <scope>provided</scope>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.springframework.boot</groupId>
  29. <artifactId>spring-boot-starter-security</artifactId>
  30. <version>3.0.0</version>
  31. <scope>provided</scope>
  32. </dependency>
  33. <dependency>
  34. <groupId>mysql</groupId>
  35. <artifactId>mysql-connector-java</artifactId>
  36. <version>8.0.26</version>
  37. <scope>provided</scope>
  38. </dependency>
  39. <dependency>
  40. <groupId>com.baomidou</groupId>
  41. <artifactId>mybatis-plus-spring-boot3-starter</artifactId>
  42. <version>3.5.7</version>
  43. <scope>provided</scope>
  44. </dependency>
  45. <dependency>
  46. <groupId>com.baomidou</groupId>
  47. <artifactId>mybatis-plus</artifactId>
  48. <version>3.5.7</version>
  49. <scope>provided</scope>
  50. </dependency>
  51. <dependency>
  52. <groupId>com.baomidou</groupId>
  53. <artifactId>mybatis-plus-extension</artifactId>
  54. <version>3.5.7</version>
  55. <scope>provided</scope>
  56. </dependency>
  57. <dependency>
  58. <groupId>org.springframework.security</groupId>
  59. <artifactId>spring-security-core</artifactId>
  60. <version>6.2.6</version>
  61. <scope>provided</scope>
  62. </dependency>
  63. <dependency>
  64. <groupId>org.projectlombok</groupId>
  65. <artifactId>lombok</artifactId>
  66. <version>1.18.24</version>
  67. <scope>provided</scope>
  68. </dependency>
  69. <dependency>
  70. <groupId>org.springframework.security.oauth</groupId>
  71. <artifactId>spring-security-oauth2</artifactId>
  72. <version>2.3.3.RELEASE</version>
  73. <scope>provided</scope>
  74. </dependency>
  75. <dependency>
  76. <groupId>com.jzg</groupId>
  77. <artifactId>commons</artifactId>
  78. <version>1.0-SNAPSHOT</version>
  79. <scope>provided</scope>
  80. </dependency>
  81. <dependency>
  82. <groupId>com.github.whvcse</groupId>
  83. <artifactId>easy-captcha</artifactId>
  84. <version>1.6.2</version>
  85. <scope>provided</scope>
  86. </dependency>
  87. <dependency>
  88. <groupId>org.redisson</groupId>
  89. <artifactId>redisson</artifactId>
  90. <version>3.23.3</version>
  91. <scope>provided</scope>
  92. </dependency>
  93. <dependency>
  94. <groupId>org.redisson</groupId>
  95. <artifactId>redisson-spring-boot-starter</artifactId>
  96. <version>3.23.3</version>
  97. <scope>provided</scope>
  98. </dependency>
  99. <dependency>
  100. <groupId>org.redisson</groupId>
  101. <artifactId>redisson-spring-data-27</artifactId>
  102. <version>3.23.3</version>
  103. <scope>provided</scope>
  104. </dependency>
  105. <dependency>
  106. <groupId>com.alibaba.cloud</groupId>
  107. <artifactId>spring-cloud-starter-alibaba-seata</artifactId>
  108. <version>2022.0.0.0</version>
  109. <scope>provided</scope>
  110. </dependency>
  111. <dependency>
  112. <groupId>org.springframework.boot</groupId>
  113. <artifactId>spring-boot-starter-test</artifactId>
  114. <version>3.0.0</version>
  115. <scope>test</scope>
  116. <exclusions>
  117. <exclusion>
  118. <artifactId>spring-boot-test</artifactId>
  119. <groupId>org.springframework.boot</groupId>
  120. </exclusion>
  121. <exclusion>
  122. <artifactId>spring-boot-test-autoconfigure</artifactId>
  123. <groupId>org.springframework.boot</groupId>
  124. </exclusion>
  125. <exclusion>
  126. <artifactId>json-path</artifactId>
  127. <groupId>com.jayway.jsonpath</groupId>
  128. </exclusion>
  129. <exclusion>
  130. <artifactId>jakarta.xml.bind-api</artifactId>
  131. <groupId>jakarta.xml.bind</groupId>
  132. </exclusion>
  133. <exclusion>
  134. <artifactId>assertj-core</artifactId>
  135. <groupId>org.assertj</groupId>
  136. </exclusion>
  137. <exclusion>
  138. <artifactId>hamcrest</artifactId>
  139. <groupId>org.hamcrest</groupId>
  140. </exclusion>
  141. <exclusion>
  142. <artifactId>junit-jupiter</artifactId>
  143. <groupId>org.junit.jupiter</groupId>
  144. </exclusion>
  145. <exclusion>
  146. <artifactId>mockito-core</artifactId>
  147. <groupId>org.mockito</groupId>
  148. </exclusion>
  149. <exclusion>
  150. <artifactId>mockito-junit-jupiter</artifactId>
  151. <groupId>org.mockito</groupId>
  152. </exclusion>
  153. <exclusion>
  154. <artifactId>jsonassert</artifactId>
  155. <groupId>org.skyscreamer</groupId>
  156. </exclusion>
  157. <exclusion>
  158. <artifactId>spring-test</artifactId>
  159. <groupId>org.springframework</groupId>
  160. </exclusion>
  161. <exclusion>
  162. <artifactId>xmlunit-core</artifactId>
  163. <groupId>org.xmlunit</groupId>
  164. </exclusion>
  165. </exclusions>
  166. </dependency>
  167. <dependency>
  168. <groupId>org.springframework.boot</groupId>
  169. <artifactId>spring-boot-starter-aop</artifactId>
  170. <version>3.0.0</version>
  171. <scope>provided</scope>
  172. </dependency>
  173. <dependency>
  174. <groupId>org.springframework.boot</groupId>
  175. <artifactId>spring-boot-starter-validation</artifactId>
  176. <version>3.0.0</version>
  177. <scope>provided</scope>
  178. </dependency>
  179. <dependency>
  180. <groupId>org.springframework.statemachine</groupId>
  181. <artifactId>spring-statemachine-core</artifactId>
  182. <version>4.0.0</version>
  183. <scope>provided</scope>
  184. </dependency>
  185. <dependency>
  186. <groupId>com.alibaba</groupId>
  187. <artifactId>fastjson</artifactId>
  188. <version>2.0.43</version>
  189. <scope>provided</scope>
  190. </dependency>
  191. <dependency>
  192. <groupId>de.siegmar</groupId>
  193. <artifactId>logback-gelf</artifactId>
  194. <version>5.0.0</version>
  195. <scope>provided</scope>
  196. </dependency>
  197. <dependency>
  198. <groupId>com.alibaba.cloud</groupId>
  199. <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
  200. <version>2022.0.0.0</version>
  201. <scope>provided</scope>
  202. </dependency>
  203. <dependency>
  204. <groupId>com.alibaba.cloud</groupId>
  205. <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
  206. <version>2022.0.0.0</version>
  207. <scope>provided</scope>
  208. </dependency>
  209. </dependencies>
  210. </project>