.flattened-pom.xml 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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-rpc</artifactId>
  7. <version>2.6.1-SNAPSHOT</version>
  8. <name>jt-spring-boot-starter-rpc</name>
  9. <description>OpenFeign:提供 RESTful API 的调用</description>
  10. <dependencies>
  11. <dependency>
  12. <groupId>com.jt.cloud</groupId>
  13. <artifactId>jt-common</artifactId>
  14. <version>2.6.1-SNAPSHOT</version>
  15. <scope>compile</scope>
  16. </dependency>
  17. <dependency>
  18. <groupId>org.springframework.cloud</groupId>
  19. <artifactId>spring-cloud-starter-loadbalancer</artifactId>
  20. <version>4.2.1</version>
  21. <scope>compile</scope>
  22. </dependency>
  23. <dependency>
  24. <groupId>org.springframework.cloud</groupId>
  25. <artifactId>spring-cloud-starter-openfeign</artifactId>
  26. <version>4.2.1</version>
  27. <scope>compile</scope>
  28. </dependency>
  29. <dependency>
  30. <groupId>io.github.openfeign</groupId>
  31. <artifactId>feign-okhttp</artifactId>
  32. <version>13.5</version>
  33. <scope>compile</scope>
  34. </dependency>
  35. <dependency>
  36. <groupId>jakarta.validation</groupId>
  37. <artifactId>jakarta.validation-api</artifactId>
  38. <version>3.0.2</version>
  39. <scope>compile</scope>
  40. </dependency>
  41. </dependencies>
  42. <repositories>
  43. <repository>
  44. <id>huaweicloud</id>
  45. <name>huawei</name>
  46. <url>https://mirrors.huaweicloud.com/repository/maven/</url>
  47. </repository>
  48. <repository>
  49. <id>aliyunmaven</id>
  50. <name>aliyun</name>
  51. <url>https://maven.aliyun.com/repository/public</url>
  52. </repository>
  53. <repository>
  54. <snapshots>
  55. <enabled>false</enabled>
  56. </snapshots>
  57. <id>spring-milestones</id>
  58. <name>Spring Milestones</name>
  59. <url>https://repo.spring.io/milestone</url>
  60. </repository>
  61. <repository>
  62. <releases>
  63. <enabled>false</enabled>
  64. </releases>
  65. <id>spring-snapshots</id>
  66. <name>Spring Snapshots</name>
  67. <url>https://repo.spring.io/snapshot</url>
  68. </repository>
  69. </repositories>
  70. </project>