2021-11-10 20:07:27 +08:00
|
|
|
<?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>
|
|
|
|
|
<artifactId>monitor</artifactId>
|
|
|
|
|
<groupId>com.usthe.tancloud</groupId>
|
2022-01-29 17:11:22 +08:00
|
|
|
<version>1.0</version>
|
2021-11-10 20:07:27 +08:00
|
|
|
</parent>
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
|
|
<artifactId>collector</artifactId>
|
2022-01-29 17:11:22 +08:00
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
<!-- spring -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
|
<scope>provided</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-configuration-processor</artifactId>
|
|
|
|
|
<optional>true</optional>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-autoconfigure</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- common -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.usthe.tancloud</groupId>
|
|
|
|
|
<artifactId>common</artifactId>
|
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- etcd -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>io.etcd</groupId>
|
|
|
|
|
<artifactId>jetcd-core</artifactId>
|
|
|
|
|
<version>0.5.11</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- kafka -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.kafka</groupId>
|
|
|
|
|
<artifactId>kafka-clients</artifactId>
|
|
|
|
|
<version>3.0.0</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- http -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
|
|
|
<artifactId>httpclient</artifactId>
|
|
|
|
|
<version>4.5.13</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!--network-->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>commons-net</groupId>
|
|
|
|
|
<artifactId>commons-net</artifactId>
|
|
|
|
|
<version>3.8.0</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!--json path parser-->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.jayway.jsonpath</groupId>
|
|
|
|
|
<artifactId>json-path</artifactId>
|
|
|
|
|
<version>2.6.0</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- lru hashmap -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.googlecode.concurrentlinkedhashmap</groupId>
|
|
|
|
|
<artifactId>concurrentlinkedhashmap-lru</artifactId>
|
|
|
|
|
<version>1.4.2</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.google.guava</groupId>
|
|
|
|
|
<artifactId>guava</artifactId>
|
|
|
|
|
<version>31.0.1-jre</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.google.code.gson</groupId>
|
|
|
|
|
<artifactId>gson</artifactId>
|
|
|
|
|
<version>2.8.8</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.googlecode.aviator</groupId>
|
|
|
|
|
<artifactId>aviator</artifactId>
|
|
|
|
|
<version>5.2.7</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
</dependencies>
|
|
|
|
|
|
2021-11-10 20:07:27 +08:00
|
|
|
</project>
|