dependency-reduced-pom.xml 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186
  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>org.springframework.boot</groupId>
  107. <artifactId>spring-boot-starter-test</artifactId>
  108. <version>3.0.0</version>
  109. <scope>test</scope>
  110. <exclusions>
  111. <exclusion>
  112. <artifactId>spring-boot-test</artifactId>
  113. <groupId>org.springframework.boot</groupId>
  114. </exclusion>
  115. <exclusion>
  116. <artifactId>spring-boot-test-autoconfigure</artifactId>
  117. <groupId>org.springframework.boot</groupId>
  118. </exclusion>
  119. <exclusion>
  120. <artifactId>json-path</artifactId>
  121. <groupId>com.jayway.jsonpath</groupId>
  122. </exclusion>
  123. <exclusion>
  124. <artifactId>jakarta.xml.bind-api</artifactId>
  125. <groupId>jakarta.xml.bind</groupId>
  126. </exclusion>
  127. <exclusion>
  128. <artifactId>assertj-core</artifactId>
  129. <groupId>org.assertj</groupId>
  130. </exclusion>
  131. <exclusion>
  132. <artifactId>hamcrest</artifactId>
  133. <groupId>org.hamcrest</groupId>
  134. </exclusion>
  135. <exclusion>
  136. <artifactId>junit-jupiter</artifactId>
  137. <groupId>org.junit.jupiter</groupId>
  138. </exclusion>
  139. <exclusion>
  140. <artifactId>mockito-core</artifactId>
  141. <groupId>org.mockito</groupId>
  142. </exclusion>
  143. <exclusion>
  144. <artifactId>mockito-junit-jupiter</artifactId>
  145. <groupId>org.mockito</groupId>
  146. </exclusion>
  147. <exclusion>
  148. <artifactId>jsonassert</artifactId>
  149. <groupId>org.skyscreamer</groupId>
  150. </exclusion>
  151. <exclusion>
  152. <artifactId>spring-test</artifactId>
  153. <groupId>org.springframework</groupId>
  154. </exclusion>
  155. <exclusion>
  156. <artifactId>xmlunit-core</artifactId>
  157. <groupId>org.xmlunit</groupId>
  158. </exclusion>
  159. </exclusions>
  160. </dependency>
  161. <dependency>
  162. <groupId>org.springframework.boot</groupId>
  163. <artifactId>spring-boot-starter-aop</artifactId>
  164. <version>3.0.0</version>
  165. <scope>provided</scope>
  166. </dependency>
  167. <dependency>
  168. <groupId>org.springframework.boot</groupId>
  169. <artifactId>spring-boot-starter-validation</artifactId>
  170. <version>3.0.0</version>
  171. <scope>provided</scope>
  172. </dependency>
  173. <dependency>
  174. <groupId>org.springframework.statemachine</groupId>
  175. <artifactId>spring-statemachine-core</artifactId>
  176. <version>4.0.0</version>
  177. <scope>provided</scope>
  178. </dependency>
  179. <dependency>
  180. <groupId>com.alibaba</groupId>
  181. <artifactId>fastjson</artifactId>
  182. <version>2.0.43</version>
  183. <scope>provided</scope>
  184. </dependency>
  185. </dependencies>
  186. </project>