.flattened-pom.xml 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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-module-infra-api</artifactId>
  7. <version>2.6.1-SNAPSHOT</version>
  8. <name>jt-module-infra-api</name>
  9. <description>infra 模块 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.springdoc</groupId>
  19. <artifactId>springdoc-openapi-starter-webmvc-api</artifactId>
  20. <version>2.8.3</version>
  21. <scope>provided</scope>
  22. </dependency>
  23. <dependency>
  24. <groupId>org.springframework.boot</groupId>
  25. <artifactId>spring-boot-starter-validation</artifactId>
  26. <version>3.4.5</version>
  27. <scope>compile</scope>
  28. <optional>true</optional>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.springframework.cloud</groupId>
  32. <artifactId>spring-cloud-starter-openfeign</artifactId>
  33. <version>4.2.1</version>
  34. <scope>compile</scope>
  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>