pom.xml 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  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</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</version>
  18. </dependency>
  19. <!-- collector -->
  20. <dependency>
  21. <groupId>com.usthe.tancloud</groupId>
  22. <artifactId>collector</artifactId>
  23. <version>1.0</version>
  24. <scope>provided</scope>
  25. </dependency>
  26. <!-- spring -->
  27. <dependency>
  28. <groupId>org.springframework.boot</groupId>
  29. <artifactId>spring-boot-starter-web</artifactId>
  30. <scope>provided</scope>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.springframework.boot</groupId>
  34. <artifactId>spring-boot-starter-jdbc</artifactId>
  35. <scope>provided</scope>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.springframework.boot</groupId>
  39. <artifactId>spring-boot-autoconfigure</artifactId>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.springframework.boot</groupId>
  43. <artifactId>spring-boot-configuration-processor</artifactId>
  44. <optional>true</optional>
  45. </dependency>
  46. <!-- tdEngine -->
  47. <dependency>
  48. <groupId>com.taosdata.jdbc</groupId>
  49. <artifactId>taos-jdbcdriver</artifactId>
  50. <version>2.0.36</version>
  51. </dependency>
  52. <!-- kafka -->
  53. <dependency>
  54. <groupId>org.apache.kafka</groupId>
  55. <artifactId>kafka-clients</artifactId>
  56. <version>3.0.0</version>
  57. </dependency>
  58. <!--redis-->
  59. <dependency>
  60. <groupId>io.lettuce</groupId>
  61. <artifactId>lettuce-core</artifactId>
  62. <scope>provided</scope>
  63. </dependency>
  64. <!-- swagger -->
  65. <dependency>
  66. <groupId>io.springfox</groupId>
  67. <artifactId>springfox-boot-starter</artifactId>
  68. <scope>provided</scope>
  69. </dependency>
  70. <!-- feign -->
  71. <dependency>
  72. <groupId>org.springframework.cloud</groupId>
  73. <artifactId>spring-cloud-starter-openfeign</artifactId>
  74. <version>3.0.5</version>
  75. <scope>provided</scope>
  76. </dependency>
  77. </dependencies>
  78. </project>