pom.xml 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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>monitor</artifactId>
  7. <groupId>com.usthe.tancloud</groupId>
  8. <version>1.0-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>warehouse</artifactId>
  12. <dependencies>
  13. <!-- common -->
  14. <dependency>
  15. <groupId>com.usthe.tancloud</groupId>
  16. <artifactId>common</artifactId>
  17. <version>1.0-SNAPSHOT</version>
  18. </dependency>
  19. <!-- spring -->
  20. <dependency>
  21. <groupId>org.springframework.boot</groupId>
  22. <artifactId>spring-boot-starter-web</artifactId>
  23. <scope>provided</scope>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.springframework.boot</groupId>
  27. <artifactId>spring-boot-autoconfigure</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.springframework.boot</groupId>
  31. <artifactId>spring-boot-configuration-processor</artifactId>
  32. <optional>true</optional>
  33. </dependency>
  34. <!-- influxdb -->
  35. <dependency>
  36. <groupId>com.influxdb</groupId>
  37. <artifactId>influxdb-client-java</artifactId>
  38. <version>3.4.0</version>
  39. </dependency>
  40. <!-- kafka -->
  41. <dependency>
  42. <groupId>org.apache.kafka</groupId>
  43. <artifactId>kafka-clients</artifactId>
  44. <version>3.0.0</version>
  45. </dependency>
  46. <!--redis-->
  47. <dependency>
  48. <groupId>io.lettuce</groupId>
  49. <artifactId>lettuce-core</artifactId>
  50. <scope>provided</scope>
  51. </dependency>
  52. <!-- swagger -->
  53. <dependency>
  54. <groupId>io.springfox</groupId>
  55. <artifactId>springfox-boot-starter</artifactId>
  56. <scope>provided</scope>
  57. </dependency>
  58. <!-- feign -->
  59. <dependency>
  60. <groupId>org.springframework.cloud</groupId>
  61. <artifactId>spring-cloud-starter-openfeign</artifactId>
  62. <version>3.0.5</version>
  63. <scope>provided</scope>
  64. </dependency>
  65. </dependencies>
  66. </project>