.flattened-pom.xml 3.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  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-web</artifactId>
  7. <version>2.6.1-SNAPSHOT</version>
  8. <name>jt-spring-boot-starter-web</name>
  9. <description>Web 框架,全局异常、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.boot</groupId>
  19. <artifactId>spring-boot-configuration-processor</artifactId>
  20. <version>3.4.5</version>
  21. <scope>compile</scope>
  22. <optional>true</optional>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.springframework.boot</groupId>
  26. <artifactId>spring-boot-starter-web</artifactId>
  27. <version>3.4.5</version>
  28. <scope>compile</scope>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.springframework.boot</groupId>
  32. <artifactId>spring-boot-starter-validation</artifactId>
  33. <version>3.4.5</version>
  34. <scope>compile</scope>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.springframework.security</groupId>
  38. <artifactId>spring-security-core</artifactId>
  39. <version>6.4.5</version>
  40. <scope>provided</scope>
  41. </dependency>
  42. <dependency>
  43. <groupId>com.github.xingfudeshi</groupId>
  44. <artifactId>knife4j-openapi3-jakarta-spring-boot-starter</artifactId>
  45. <version>4.6.0</version>
  46. <scope>compile</scope>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.springdoc</groupId>
  50. <artifactId>springdoc-openapi-starter-webmvc-api</artifactId>
  51. <version>2.8.3</version>
  52. <scope>compile</scope>
  53. </dependency>
  54. <dependency>
  55. <groupId>com.jt.cloud</groupId>
  56. <artifactId>jt-spring-boot-starter-rpc</artifactId>
  57. <version>2.6.1-SNAPSHOT</version>
  58. <scope>compile</scope>
  59. <optional>true</optional>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.jsoup</groupId>
  63. <artifactId>jsoup</artifactId>
  64. <version>1.18.1</version>
  65. <scope>compile</scope>
  66. </dependency>
  67. </dependencies>
  68. <repositories>
  69. <repository>
  70. <id>huaweicloud</id>
  71. <name>huawei</name>
  72. <url>https://mirrors.huaweicloud.com/repository/maven/</url>
  73. </repository>
  74. <repository>
  75. <id>aliyunmaven</id>
  76. <name>aliyun</name>
  77. <url>https://maven.aliyun.com/repository/public</url>
  78. </repository>
  79. <repository>
  80. <snapshots>
  81. <enabled>false</enabled>
  82. </snapshots>
  83. <id>spring-milestones</id>
  84. <name>Spring Milestones</name>
  85. <url>https://repo.spring.io/milestone</url>
  86. </repository>
  87. <repository>
  88. <releases>
  89. <enabled>false</enabled>
  90. </releases>
  91. <id>spring-snapshots</id>
  92. <name>Spring Snapshots</name>
  93. <url>https://repo.spring.io/snapshot</url>
  94. </repository>
  95. </repositories>
  96. </project>