pom.xml 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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. <groupId>com.jay.monitor.data</groupId>
  7. <artifactId>jay-monitor-data-web</artifactId>
  8. <version>1.2-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>jay-monitor-data-client</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>com.alibaba</groupId>
  15. <artifactId>druid</artifactId>
  16. <scope>provided</scope>
  17. </dependency>
  18. <dependency>
  19. <groupId>org.springframework.boot</groupId>
  20. <artifactId>spring-boot-starter-aop</artifactId>
  21. <version>2.3.2.RELEASE</version>
  22. </dependency>
  23. <dependency>
  24. <groupId>com.jay.monitor.data</groupId>
  25. <artifactId>jay-monitor-data-core</artifactId>
  26. <version>${project.version}</version>
  27. </dependency>
  28. <dependency>
  29. <groupId>com.baomidou</groupId>
  30. <artifactId>mybatis-plus-boot-starter</artifactId>
  31. <version>3.4.0</version>
  32. <scope>provided</scope>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.springframework.boot</groupId>
  36. <artifactId>spring-boot-starter-amqp</artifactId>
  37. <version>2.3.2.RELEASE</version>
  38. <scope>provided</scope>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.springframework</groupId>
  42. <artifactId>spring-test</artifactId>
  43. <version>5.0.9.RELEASE</version>
  44. <scope>test</scope>
  45. </dependency>
  46. <!-- <dependency>-->
  47. <!-- <groupId>com.netflix.zuul</groupId>-->
  48. <!-- <artifactId>zuul-core</artifactId>-->
  49. <!-- <scope>provided</scope>-->
  50. <!-- </dependency>-->
  51. <dependency>
  52. <groupId>junit</groupId>
  53. <artifactId>junit</artifactId>
  54. <version>4.12</version>
  55. <scope>test</scope>
  56. </dependency>
  57. <dependency>
  58. <groupId>org.springframework.boot</groupId>
  59. <artifactId>spring-boot-configuration-processor</artifactId>
  60. <optional>true</optional>
  61. </dependency>
  62. <dependency>
  63. <groupId>org.springframework.kafka</groupId>
  64. <artifactId>spring-kafka</artifactId>
  65. <version>2.2.0.RELEASE</version>
  66. <scope>provided</scope>
  67. </dependency>
  68. <dependency>
  69. <groupId>org.apache.kafka</groupId>
  70. <artifactId>kafka-clients</artifactId>
  71. <version>2.0.1</version>
  72. <scope>provided</scope>
  73. </dependency>
  74. </dependencies>
  75. </project>