| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 | <?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-core</artifactId>    <dependencies>        <dependency>            <groupId>com.alipay.sofa</groupId>            <artifactId>bolt</artifactId>        </dependency>        <dependency>            <groupId>com.alipay.sofa.common</groupId>            <artifactId>sofa-common-tools</artifactId>        </dependency>        <!-- 默认的序列化框架 -->        <dependency>            <groupId>com.alipay.sofa</groupId>            <artifactId>hessian</artifactId>        </dependency>        <dependency>            <groupId>org.springframework.boot</groupId>            <artifactId>spring-boot-starter-web</artifactId>        </dependency>        <dependency>            <groupId>io.netty</groupId>            <artifactId>netty-all</artifactId>        </dependency>        <dependency>            <groupId>io.protostuff</groupId>            <artifactId>protostuff-core</artifactId>        </dependency>        <dependency>            <groupId>io.protostuff</groupId>            <artifactId>protostuff-runtime</artifactId>        </dependency>        <dependency>            <groupId>commons-io</groupId>            <artifactId>commons-io</artifactId>        </dependency>        <dependency>            <groupId>com.alibaba</groupId>            <artifactId>druid</artifactId>        </dependency>        <dependency>            <groupId>org.springframework.boot</groupId>            <artifactId>spring-boot-test</artifactId>        </dependency>        <dependency>            <groupId>junit</groupId>            <artifactId>junit</artifactId>            <version>4.12</version>        </dependency>        <dependency>            <groupId>com.alibaba</groupId>            <artifactId>fastjson</artifactId>        </dependency>        <dependency>            <groupId>com.xiaoleilu</groupId>            <artifactId>hutool-all</artifactId>        </dependency>        <dependency>            <groupId>commons-beanutils</groupId>            <artifactId>commons-beanutils</artifactId>        </dependency>    </dependencies></project>
 |