2018-08-31 11:49:48 +08:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2018-09-06 17:24:08 +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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
2018-08-31 11:49:48 +08:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
2018-09-06 17:14:07 +08:00
|
|
|
<parent>
|
|
|
|
<groupId>org.sonatype.oss</groupId>
|
|
|
|
<artifactId>oss-parent</artifactId>
|
|
|
|
<version>9</version>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<licenses>
|
|
|
|
<license>
|
|
|
|
<name>GNU GENERAL PUBLIC LICENSE Version 3</name>
|
|
|
|
<url>https://www.gnu.org/licenses/gpl.txt</url>
|
|
|
|
<distribution>repo</distribution>
|
|
|
|
</license>
|
|
|
|
</licenses>
|
|
|
|
|
|
|
|
<scm>
|
|
|
|
<connection>scm:git:git@github.com:alibaba/arthas.git</connection>
|
|
|
|
<developerConnection>scm:git:git@github.com:alibaba/arthas.git</developerConnection>
|
|
|
|
<url>https://github.com/alibaba/arthas</url>
|
|
|
|
</scm>
|
|
|
|
|
|
|
|
<developers>
|
|
|
|
<developer>
|
|
|
|
<id>beiwei30</id>
|
|
|
|
<name>beiwei30</name>
|
|
|
|
<email>ian.luo@gmail.com</email>
|
|
|
|
</developer>
|
|
|
|
<developer>
|
|
|
|
<id>Jerrik Zhu</id>
|
|
|
|
<name>Jerrik Zhu</name>
|
|
|
|
<email>diecui1202@gmail.com</email>
|
|
|
|
</developer>
|
|
|
|
<developer>
|
|
|
|
<id>ralf0131</id>
|
|
|
|
<name>ralf0131</name>
|
|
|
|
<email>huxing.zhang@gmail.com</email>
|
|
|
|
</developer>
|
|
|
|
<developer>
|
|
|
|
<id>hengyunabc</id>
|
|
|
|
<name>hengyunabc</name>
|
|
|
|
<email>hengyunabc@gmail.com</email>
|
|
|
|
</developer>
|
|
|
|
</developers>
|
|
|
|
|
2018-08-31 11:49:48 +08:00
|
|
|
<groupId>com.taobao.arthas</groupId>
|
|
|
|
<artifactId>arthas-all</artifactId>
|
2018-09-14 18:48:18 +08:00
|
|
|
<version>3.0.5-SNAPSHOT</version>
|
2018-08-31 11:49:48 +08:00
|
|
|
<packaging>pom</packaging>
|
|
|
|
|
|
|
|
<name>arthas-all</name>
|
2018-09-06 17:14:07 +08:00
|
|
|
<description>arthas</description>
|
|
|
|
<url>https://github.com/alibaba/arthas</url>
|
2018-08-31 11:49:48 +08:00
|
|
|
|
|
|
|
<modules>
|
|
|
|
<module>spy</module>
|
|
|
|
<module>core</module>
|
|
|
|
<module>agent</module>
|
|
|
|
<module>client</module>
|
|
|
|
<module>testcase</module>
|
2018-09-05 17:12:55 +08:00
|
|
|
<module>site</module>
|
2018-09-06 14:49:11 +08:00
|
|
|
<module>packaging</module>
|
2018-08-31 11:49:48 +08:00
|
|
|
</modules>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
2018-09-06 17:14:07 +08:00
|
|
|
<maven.compiler.target>1.6</maven.compiler.target>
|
|
|
|
<maven.compiler.source>1.6</maven.compiler.source>
|
2018-08-31 11:49:48 +08:00
|
|
|
</properties>
|
|
|
|
|
|
|
|
<dependencyManagement>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.ow2.asm</groupId>
|
|
|
|
<artifactId>asm</artifactId>
|
|
|
|
<version>6.0</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.ow2.asm</groupId>
|
|
|
|
<artifactId>asm-commons</artifactId>
|
|
|
|
<version>6.0</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.alibaba.middleware</groupId>
|
|
|
|
<artifactId>termd-core</artifactId>
|
2018-09-03 02:06:00 +08:00
|
|
|
<version>1.1.5</version>
|
2018-08-31 11:49:48 +08:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.alibaba.middleware</groupId>
|
|
|
|
<artifactId>cli</artifactId>
|
2018-09-03 02:06:00 +08:00
|
|
|
<version>1.0.1</version>
|
2018-08-31 11:49:48 +08:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
<version>1.7.5</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>ch.qos.logback</groupId>
|
|
|
|
<artifactId>logback-classic</artifactId>
|
|
|
|
<version>1.1.3</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>ch.qos.logback</groupId>
|
|
|
|
<artifactId>logback-core</artifactId>
|
|
|
|
<version>1.1.3</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.taobao.middleware</groupId>
|
|
|
|
<artifactId>logger.api</artifactId>
|
2018-09-03 02:06:00 +08:00
|
|
|
<version>0.2.6</version>
|
2018-08-31 11:49:48 +08:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.alibaba</groupId>
|
|
|
|
<artifactId>fastjson</artifactId>
|
|
|
|
<version>1.2.33</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.taobao.text</groupId>
|
2018-09-03 02:06:00 +08:00
|
|
|
<artifactId>text-ui</artifactId>
|
|
|
|
<version>0.0.2</version>
|
2018-08-31 11:49:48 +08:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.fifesoft</groupId>
|
|
|
|
<artifactId>rsyntaxtextarea</artifactId>
|
|
|
|
<version>2.5.8</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>ognl</groupId>
|
|
|
|
<artifactId>ognl</artifactId>
|
|
|
|
<version>3.1.12</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<version>4.11</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2018-09-14 15:16:23 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.powermock</groupId>
|
|
|
|
<artifactId>powermock-module-javaagent</artifactId>
|
|
|
|
<version>1.7.4</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2018-09-14 15:57:13 +08:00
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.netty</groupId>
|
|
|
|
<artifactId>netty-common</artifactId>
|
|
|
|
<version>4.1.29.Final</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.netty</groupId>
|
|
|
|
<artifactId>netty-buffer</artifactId>
|
|
|
|
<version>4.1.29.Final</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.netty</groupId>
|
|
|
|
<artifactId>netty-handler</artifactId>
|
|
|
|
<version>4.1.29.Final</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.netty</groupId>
|
|
|
|
<artifactId>netty-transport</artifactId>
|
|
|
|
<version>4.1.29.Final</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.netty</groupId>
|
|
|
|
<artifactId>netty-codec-http</artifactId>
|
|
|
|
<version>4.1.29.Final</version>
|
|
|
|
</dependency>
|
2018-08-31 11:49:48 +08:00
|
|
|
</dependencies>
|
|
|
|
</dependencyManagement>
|
2018-09-06 16:30:11 +08:00
|
|
|
|
|
|
|
<build>
|
2018-09-14 18:30:31 +08:00
|
|
|
<pluginManagement>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<version>3.8.0</version>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
|
|
<version>3.1.0</version>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</pluginManagement>
|
|
|
|
|
2018-09-06 17:14:07 +08:00
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
|
|
<version>2.5</version>
|
|
|
|
<configuration>
|
|
|
|
<archive>
|
|
|
|
<manifest>
|
|
|
|
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
|
|
|
|
<addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
|
|
|
|
</manifest>
|
|
|
|
</archive>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
2018-09-14 16:54:18 +08:00
|
|
|
<version>2.10.4</version>
|
2018-09-06 17:14:07 +08:00
|
|
|
<configuration>
|
|
|
|
<additionalparam>-Xdoclint:none</additionalparam>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-source-plugin</artifactId>
|
2018-09-13 00:50:11 +08:00
|
|
|
<version>3.0.1</version>
|
2018-09-06 17:14:07 +08:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>attach-sources</id>
|
|
|
|
<goals>
|
|
|
|
<goal>jar</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2018-09-30 15:29:20 +08:00
|
|
|
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>cobertura-maven-plugin</artifactId>
|
|
|
|
<version>2.7</version>
|
|
|
|
<configuration>
|
|
|
|
<formats>
|
|
|
|
<format>html</format>
|
|
|
|
<format>xml</format>
|
|
|
|
</formats>
|
|
|
|
<check />
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2018-09-06 17:14:07 +08:00
|
|
|
</plugins>
|
2018-09-06 16:30:11 +08:00
|
|
|
</build>
|
2018-08-31 11:49:48 +08:00
|
|
|
</project>
|