pom.xml 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <artifactId>common</artifactId>
  7. <groupId>com.atguigu.tingshu</groupId>
  8. <version>1.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>service-util</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>com.atguigu.tingshu</groupId>
  15. <artifactId>common-util</artifactId>
  16. <version>1.0</version>
  17. </dependency>
  18. <dependency>
  19. <groupId>com.atguigu.tingshu</groupId>
  20. <artifactId>model</artifactId>
  21. <version>1.0</version>
  22. </dependency>
  23. <dependency>
  24. <groupId>org.springframework.boot</groupId>
  25. <artifactId>spring-boot-starter-web</artifactId>
  26. </dependency>
  27. <dependency>
  28. <groupId>com.baomidou</groupId>
  29. <artifactId>mybatis-plus-boot-starter</artifactId>
  30. </dependency>
  31. <!--mysql-->
  32. <dependency>
  33. <groupId>mysql</groupId>
  34. <artifactId>mysql-connector-java</artifactId>
  35. </dependency>
  36. <dependency>
  37. <groupId>com.github.xiaoymin</groupId>
  38. <artifactId>knife4j-openapi3-jakarta-spring-boot-starter</artifactId>
  39. </dependency>
  40. <!-- 校验参数 -->
  41. <dependency>
  42. <groupId>org.springframework.boot</groupId>
  43. <artifactId>spring-boot-starter-validation</artifactId>
  44. </dependency>
  45. <!-- redis -->
  46. <dependency>
  47. <groupId>org.springframework.boot</groupId>
  48. <artifactId>spring-boot-starter-data-redis</artifactId>
  49. </dependency>
  50. <!-- redisson -->
  51. <dependency>
  52. <groupId>org.redisson</groupId>
  53. <artifactId>redisson-spring-boot-starter</artifactId>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.springframework.boot</groupId>
  57. <artifactId>spring-boot-starter-aop</artifactId>
  58. </dependency>
  59. <!-- 服务调用feign -->
  60. <dependency>
  61. <groupId>org.springframework.cloud</groupId>
  62. <artifactId>spring-cloud-starter-openfeign</artifactId>
  63. </dependency>
  64. <dependency>
  65. <groupId>org.springframework.cloud</groupId>
  66. <artifactId>spring-cloud-starter-loadbalancer</artifactId>
  67. </dependency>
  68. <!-- 服务注册 -->
  69. <dependency>
  70. <groupId>com.alibaba.cloud</groupId>
  71. <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
  72. </dependency>
  73. <!-- 服务配置 -->
  74. <dependency>
  75. <groupId>org.springframework.cloud</groupId>
  76. <artifactId>spring-cloud-starter-bootstrap</artifactId>
  77. </dependency>
  78. <dependency>
  79. <groupId>com.alibaba.cloud</groupId>
  80. <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
  81. </dependency>
  82. <dependency>
  83. <groupId>io.micrometer</groupId>
  84. <artifactId>micrometer-tracing-bridge-brave</artifactId>
  85. </dependency>
  86. <dependency>
  87. <groupId>io.zipkin.reporter2</groupId>
  88. <artifactId>zipkin-reporter-brave</artifactId>
  89. </dependency>
  90. <dependency>
  91. <groupId>io.micrometer</groupId>
  92. <artifactId>micrometer-observation</artifactId>
  93. </dependency>
  94. <dependency>
  95. <groupId>org.springframework.boot</groupId>
  96. <artifactId>spring-boot-starter-actuator</artifactId>
  97. </dependency>
  98. <dependency>
  99. <groupId>org.springframework.cloud</groupId>
  100. <artifactId>spring-cloud-starter-zipkin</artifactId>
  101. <version>2.2.8.RELEASE</version>
  102. </dependency>
  103. <dependency>
  104. <groupId>io.github.openfeign</groupId>
  105. <artifactId>feign-micrometer</artifactId>
  106. <version>12.5</version>
  107. </dependency>
  108. </dependencies>
  109. </project>