dependency-reduced-pom.xml 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  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>mysql</groupId>
  23. <artifactId>mysql-connector-java</artifactId>
  24. <version>8.0.26</version>
  25. <scope>provided</scope>
  26. </dependency>
  27. <dependency>
  28. <groupId>com.baomidou</groupId>
  29. <artifactId>mybatis-plus</artifactId>
  30. <version>3.5.7</version>
  31. <scope>provided</scope>
  32. </dependency>
  33. <dependency>
  34. <groupId>com.baomidou</groupId>
  35. <artifactId>mybatis-plus-extension</artifactId>
  36. <version>3.5.7</version>
  37. <scope>provided</scope>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.springframework.security</groupId>
  41. <artifactId>spring-security-core</artifactId>
  42. <version>6.2.6</version>
  43. <scope>provided</scope>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.projectlombok</groupId>
  47. <artifactId>lombok</artifactId>
  48. <version>1.18.24</version>
  49. <scope>provided</scope>
  50. </dependency>
  51. <dependency>
  52. <groupId>org.springframework.boot</groupId>
  53. <artifactId>spring-boot-starter-web</artifactId>
  54. <version>3.0.0</version>
  55. <scope>provided</scope>
  56. </dependency>
  57. <dependency>
  58. <groupId>org.springframework.boot</groupId>
  59. <artifactId>spring-boot-starter-test</artifactId>
  60. <version>3.0.0</version>
  61. <scope>test</scope>
  62. <exclusions>
  63. <exclusion>
  64. <artifactId>spring-boot-test</artifactId>
  65. <groupId>org.springframework.boot</groupId>
  66. </exclusion>
  67. <exclusion>
  68. <artifactId>spring-boot-test-autoconfigure</artifactId>
  69. <groupId>org.springframework.boot</groupId>
  70. </exclusion>
  71. <exclusion>
  72. <artifactId>json-path</artifactId>
  73. <groupId>com.jayway.jsonpath</groupId>
  74. </exclusion>
  75. <exclusion>
  76. <artifactId>jakarta.xml.bind-api</artifactId>
  77. <groupId>jakarta.xml.bind</groupId>
  78. </exclusion>
  79. <exclusion>
  80. <artifactId>assertj-core</artifactId>
  81. <groupId>org.assertj</groupId>
  82. </exclusion>
  83. <exclusion>
  84. <artifactId>hamcrest</artifactId>
  85. <groupId>org.hamcrest</groupId>
  86. </exclusion>
  87. <exclusion>
  88. <artifactId>junit-jupiter</artifactId>
  89. <groupId>org.junit.jupiter</groupId>
  90. </exclusion>
  91. <exclusion>
  92. <artifactId>mockito-core</artifactId>
  93. <groupId>org.mockito</groupId>
  94. </exclusion>
  95. <exclusion>
  96. <artifactId>mockito-junit-jupiter</artifactId>
  97. <groupId>org.mockito</groupId>
  98. </exclusion>
  99. <exclusion>
  100. <artifactId>jsonassert</artifactId>
  101. <groupId>org.skyscreamer</groupId>
  102. </exclusion>
  103. <exclusion>
  104. <artifactId>spring-test</artifactId>
  105. <groupId>org.springframework</groupId>
  106. </exclusion>
  107. <exclusion>
  108. <artifactId>xmlunit-core</artifactId>
  109. <groupId>org.xmlunit</groupId>
  110. </exclusion>
  111. </exclusions>
  112. </dependency>
  113. <dependency>
  114. <groupId>org.springframework.boot</groupId>
  115. <artifactId>spring-boot-starter-security</artifactId>
  116. <version>3.0.0</version>
  117. <scope>provided</scope>
  118. </dependency>
  119. </dependencies>
  120. </project>