| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 | <?xml version="1.0" encoding="UTF-8"?><project xmlns="http://maven.apache.org/POM/4.0.0"         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">    <parent>        <groupId>com.jay.monitor.data</groupId>        <artifactId>jay-monitor-data-web</artifactId>        <version>1.1-SNAPSHOT</version>    </parent>    <modelVersion>4.0.0</modelVersion>    <artifactId>jay-monitor-data-client</artifactId>    <dependencies>        <dependency>            <groupId>com.alibaba</groupId>            <artifactId>druid</artifactId>            <scope>provided</scope>        </dependency>        <dependency>            <groupId>com.jay.monitor.data</groupId>            <artifactId>jay-monitor-data-core</artifactId>            <version>${project.version}</version>        </dependency>        <dependency>            <groupId>org.springframework</groupId>            <artifactId>spring-test</artifactId>            <version>5.0.9.RELEASE</version>            <scope>test</scope>        </dependency>        <dependency>            <groupId>com.netflix.zuul</groupId>            <artifactId>zuul-core</artifactId>            <scope>provided</scope>        </dependency>        <dependency>            <groupId>junit</groupId>            <artifactId>junit</artifactId>            <version>4.12</version>            <scope>test</scope>        </dependency>        <dependency>            <groupId>org.springframework.boot</groupId>            <artifactId>spring-boot-configuration-processor</artifactId>            <optional>true</optional>        </dependency>        <dependency>            <groupId>org.springframework.kafka</groupId>            <artifactId>spring-kafka</artifactId>            <version>2.2.0.RELEASE</version>            <scope>provided</scope>        </dependency>        <dependency>            <groupId>org.apache.kafka</groupId>            <artifactId>kafka-clients</artifactId>            <version>2.0.1</version>            <scope>provided</scope>        </dependency>    </dependencies></project>
 |