.flattened-pom.xml 2.2 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>com.jt.cloud</groupId>
  6. <artifactId>jt-spring-boot-starter-protection</artifactId>
  7. <version>2.6.1-SNAPSHOT</version>
  8. <name>jt-spring-boot-starter-protection</name>
  9. <description>服务保证,提供分布式锁、幂等、限流、熔断等等功能</description>
  10. <dependencies>
  11. <dependency>
  12. <groupId>com.jt.cloud</groupId>
  13. <artifactId>jt-spring-boot-starter-web</artifactId>
  14. <version>2.6.1-SNAPSHOT</version>
  15. <scope>provided</scope>
  16. </dependency>
  17. <dependency>
  18. <groupId>com.jt.cloud</groupId>
  19. <artifactId>jt-spring-boot-starter-redis</artifactId>
  20. <version>2.6.1-SNAPSHOT</version>
  21. <scope>compile</scope>
  22. </dependency>
  23. <dependency>
  24. <groupId>com.baomidou</groupId>
  25. <artifactId>lock4j-redisson-spring-boot-starter</artifactId>
  26. <version>2.2.7</version>
  27. <scope>compile</scope>
  28. <exclusions>
  29. <exclusion>
  30. <artifactId>redisson-spring-boot-starter</artifactId>
  31. <groupId>org.redisson</groupId>
  32. </exclusion>
  33. </exclusions>
  34. <optional>true</optional>
  35. </dependency>
  36. </dependencies>
  37. <repositories>
  38. <repository>
  39. <id>huaweicloud</id>
  40. <name>huawei</name>
  41. <url>https://mirrors.huaweicloud.com/repository/maven/</url>
  42. </repository>
  43. <repository>
  44. <id>aliyunmaven</id>
  45. <name>aliyun</name>
  46. <url>https://maven.aliyun.com/repository/public</url>
  47. </repository>
  48. <repository>
  49. <snapshots>
  50. <enabled>false</enabled>
  51. </snapshots>
  52. <id>spring-milestones</id>
  53. <name>Spring Milestones</name>
  54. <url>https://repo.spring.io/milestone</url>
  55. </repository>
  56. <repository>
  57. <releases>
  58. <enabled>false</enabled>
  59. </releases>
  60. <id>spring-snapshots</id>
  61. <name>Spring Snapshots</name>
  62. <url>https://repo.spring.io/snapshot</url>
  63. </repository>
  64. </repositories>
  65. </project>