.flattened-pom.xml 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>cn.iocoder.boot</groupId>
  6. <artifactId>yudao-spring-boot-starter-protection</artifactId>
  7. <version>2025.11-SNAPSHOT</version>
  8. <name>yudao-spring-boot-starter-protection</name>
  9. <description>服务保证,提供分布式锁、幂等、限流、熔断、API 签名等等功能</description>
  10. <url>https://github.com/YunaiV/ruoyi-vue-pro</url>
  11. <dependencies>
  12. <dependency>
  13. <groupId>cn.iocoder.boot</groupId>
  14. <artifactId>yudao-spring-boot-starter-web</artifactId>
  15. <version>2025.11-SNAPSHOT</version>
  16. <scope>provided</scope>
  17. </dependency>
  18. <dependency>
  19. <groupId>cn.iocoder.boot</groupId>
  20. <artifactId>yudao-spring-boot-starter-redis</artifactId>
  21. <version>2025.11-SNAPSHOT</version>
  22. <scope>compile</scope>
  23. </dependency>
  24. <dependency>
  25. <groupId>com.baomidou</groupId>
  26. <artifactId>lock4j-redisson-spring-boot-starter</artifactId>
  27. <version>2.2.7</version>
  28. <scope>compile</scope>
  29. <exclusions>
  30. <exclusion>
  31. <groupId>org.redisson</groupId>
  32. <artifactId>redisson-spring-boot-starter</artifactId>
  33. </exclusion>
  34. </exclusions>
  35. <optional>true</optional>
  36. </dependency>
  37. </dependencies>
  38. <repositories>
  39. <repository>
  40. <id>huaweicloud</id>
  41. <name>huawei</name>
  42. <url>https://mirrors.huaweicloud.com/repository/maven/</url>
  43. </repository>
  44. <repository>
  45. <id>aliyunmaven</id>
  46. <name>aliyun</name>
  47. <url>https://maven.aliyun.com/repository/public</url>
  48. </repository>
  49. <repository>
  50. <snapshots>
  51. <enabled>false</enabled>
  52. </snapshots>
  53. <id>spring-milestones</id>
  54. <name>Spring Milestones</name>
  55. <url>https://repo.spring.io/milestone</url>
  56. </repository>
  57. <repository>
  58. <releases>
  59. <enabled>false</enabled>
  60. </releases>
  61. <id>spring-snapshots</id>
  62. <name>Spring Snapshots</name>
  63. <url>https://repo.spring.io/snapshot</url>
  64. </repository>
  65. </repositories>
  66. </project>