2019-08-29 16:05:50 +08:00
|
|
|
<?xml version="1.0"?>
|
2020-12-08 11:43:36 +08:00
|
|
|
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
2019-08-29 16:05:50 +08:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
|
|
<groupId>com.taobao.arthas</groupId>
|
|
|
|
<artifactId>arthas-all</artifactId>
|
2020-10-18 23:29:12 +08:00
|
|
|
<version>${revision}</version>
|
2019-08-29 16:05:50 +08:00
|
|
|
<relativePath>../pom.xml</relativePath>
|
|
|
|
</parent>
|
|
|
|
<artifactId>arthas-tunnel-client</artifactId>
|
|
|
|
<name>arthas-tunnel-client</name>
|
2022-11-18 11:21:53 +08:00
|
|
|
<url>https://github.com/alibaba/arthas</url>
|
2019-08-29 16:05:50 +08:00
|
|
|
|
|
|
|
<dependencies>
|
2020-09-02 20:15:48 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.taobao.arthas</groupId>
|
|
|
|
<artifactId>arthas-common</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
2020-10-22 17:11:31 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.taobao.arthas</groupId>
|
|
|
|
<artifactId>arthas-tunnel-common</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
2020-09-02 20:15:48 +08:00
|
|
|
|
2019-08-29 16:05:50 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>ch.qos.logback</groupId>
|
|
|
|
<artifactId>logback-classic</artifactId>
|
|
|
|
<scope>provided</scope>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>ch.qos.logback</groupId>
|
|
|
|
<artifactId>logback-core</artifactId>
|
|
|
|
<scope>provided</scope>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.netty</groupId>
|
|
|
|
<artifactId>netty-buffer</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.netty</groupId>
|
|
|
|
<artifactId>netty-handler</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.netty</groupId>
|
|
|
|
<artifactId>netty-transport</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.netty</groupId>
|
|
|
|
<artifactId>netty-codec-http</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
</project>
|