.flattened-pom.xml 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  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-env</artifactId>
  7. <version>2.6.1-SNAPSHOT</version>
  8. <name>jt-spring-boot-starter-env</name>
  9. <description>开发环境拓展,实现类似阿里的特性环境的能力
  10. 1. https://segmentfault.com/a/1190000018022987</description>
  11. <dependencies>
  12. <dependency>
  13. <groupId>com.jt.cloud</groupId>
  14. <artifactId>jt-common</artifactId>
  15. <version>2.6.1-SNAPSHOT</version>
  16. <scope>compile</scope>
  17. </dependency>
  18. <dependency>
  19. <groupId>org.springframework.boot</groupId>
  20. <artifactId>spring-boot-starter</artifactId>
  21. <version>3.4.5</version>
  22. <scope>compile</scope>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.springframework</groupId>
  26. <artifactId>spring-web</artifactId>
  27. <version>6.2.6</version>
  28. <scope>compile</scope>
  29. </dependency>
  30. <dependency>
  31. <groupId>jakarta.servlet</groupId>
  32. <artifactId>jakarta.servlet-api</artifactId>
  33. <version>6.0.0</version>
  34. <scope>compile</scope>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.springframework.cloud</groupId>
  38. <artifactId>spring-cloud-loadbalancer</artifactId>
  39. <version>4.2.1</version>
  40. <scope>compile</scope>
  41. </dependency>
  42. <dependency>
  43. <groupId>io.github.openfeign</groupId>
  44. <artifactId>feign-core</artifactId>
  45. <version>13.5</version>
  46. <scope>compile</scope>
  47. </dependency>
  48. <dependency>
  49. <groupId>com.alibaba.cloud</groupId>
  50. <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
  51. <version>2023.0.3.2</version>
  52. <scope>compile</scope>
  53. </dependency>
  54. </dependencies>
  55. <repositories>
  56. <repository>
  57. <id>huaweicloud</id>
  58. <name>huawei</name>
  59. <url>https://mirrors.huaweicloud.com/repository/maven/</url>
  60. </repository>
  61. <repository>
  62. <id>aliyunmaven</id>
  63. <name>aliyun</name>
  64. <url>https://maven.aliyun.com/repository/public</url>
  65. </repository>
  66. <repository>
  67. <snapshots>
  68. <enabled>false</enabled>
  69. </snapshots>
  70. <id>spring-milestones</id>
  71. <name>Spring Milestones</name>
  72. <url>https://repo.spring.io/milestone</url>
  73. </repository>
  74. <repository>
  75. <releases>
  76. <enabled>false</enabled>
  77. </releases>
  78. <id>spring-snapshots</id>
  79. <name>Spring Snapshots</name>
  80. <url>https://repo.spring.io/snapshot</url>
  81. </repository>
  82. </repositories>
  83. </project>