arthas/pom.xml

358 lines
14 KiB
XML
Raw Normal View History

2018-08-31 11:49:48 +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">
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>
2019-12-20 15:12:29 +08:00
<name>Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0</url>
<distribution>repo</distribution>
2018-09-06 17:14:07 +08:00
</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>
<tag>HEAD</tag>
</scm>
2018-09-06 17:14:07 +08:00
<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>
<version>3.4.4-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>
2018-11-09 15:57:03 +08:00
<module>common</module>
2019-08-29 16:05:50 +08:00
<module>tunnel-client</module>
2020-04-11 22:44:51 +08:00
<module>bytekit</module>
2018-08-31 11:49:48 +08:00
<module>core</module>
<module>agent</module>
<module>client</module>
2019-02-05 15:39:42 +08:00
<module>memorycompiler</module>
2018-11-08 14:45:55 +08:00
<module>boot</module>
<module>arthas-agent-attach</module>
<module>arthas-spring-boot-starter</module>
2018-11-28 17:22:03 +08:00
<module>demo</module>
2018-08-31 11:49:48 +08:00
<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>
2019-08-30 17:52:58 +08:00
<profiles>
<profile>
2020-06-30 16:10:23 +08:00
<id>jdk8</id>
2019-08-30 17:52:58 +08:00
<activation>
<jdk>[1.8,)</jdk>
</activation>
<modules>
<module>tunnel-server</module>
</modules>
2020-06-30 16:10:23 +08:00
<build>
<plugins>
<!-- git commit info -->
<plugin>
<groupId>pl.project13.maven</groupId>
<artifactId>git-commit-id-plugin</artifactId>
<version>4.0.1</version>
2020-06-30 16:10:23 +08:00
<executions>
<execution>
<goals>
<goal>revision</goal>
</goals>
</execution>
</executions>
<configuration>
<verbose>false</verbose>
<dateFormat>yyyy-MM-dd'T'HH:mm:ssZ</dateFormat>
<generateGitPropertiesFile>true</generateGitPropertiesFile>
<generateGitPropertiesFilename>${project.build.outputDirectory}/arthas-git.properties</generateGitPropertiesFilename>
2020-07-26 01:41:57 +08:00
<excludeProperties>
<excludeProperty>git.build.host</excludeProperty>
<excludeProperty>git.build.time</excludeProperty>
<excludeProperty>git.build.user.email</excludeProperty>
<excludeProperty>git.build.user.name</excludeProperty>
<excludeProperty>git.remote.origin.url</excludeProperty>
<excludeProperty>git.total.commit.count</excludeProperty>
<excludeProperty>git.commit.time</excludeProperty>
2020-07-26 01:46:57 +08:00
<excludeProperty>git.local.branch.ahead</excludeProperty>
<excludeProperty>git.local.branch.behind</excludeProperty>
2020-07-26 01:41:57 +08:00
</excludeProperties>
<injectAllReactorProjects>true</injectAllReactorProjects>
2020-06-30 16:10:23 +08:00
</configuration>
</plugin>
</plugins>
</build>
2019-08-30 17:52:58 +08:00
</profile>
</profiles>
2018-08-31 11:49:48 +08:00
<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>
<spring-boot.version>2.3.1.RELEASE</spring-boot.version>
<maven-invoker-plugin.version>3.0.0</maven-invoker-plugin.version>
<jacoco.skip>${skipTests}</jacoco.skip>
<project.build.outputTimestamp>2020-09-27T15:10:43Z</project.build.outputTimestamp>
2018-08-31 11:49:48 +08:00
</properties>
<dependencyManagement>
<dependencies>
2019-06-26 17:56:36 +08:00
<dependency>
<groupId>org.benf</groupId>
<artifactId>cfr</artifactId>
2020-05-25 16:06:00 +08:00
<version>0.150</version>
2019-06-26 17:56:36 +08:00
</dependency>
2018-08-31 11:49:48 +08:00
<dependency>
<groupId>com.alibaba.middleware</groupId>
<artifactId>termd-core</artifactId>
<version>1.1.7.10</version>
2018-08-31 11:49:48 +08:00
</dependency>
<dependency>
<groupId>com.alibaba.middleware</groupId>
<artifactId>cli</artifactId>
2020-05-20 19:30:59 +08:00
<version>1.0.4</version>
2018-08-31 11:49:48 +08:00
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.25</version>
2018-08-31 11:49:48 +08:00
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.2.3</version>
2018-08-31 11:49:48 +08:00
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-core</artifactId>
<version>1.2.3</version>
2018-08-31 11:49:48 +08:00
</dependency>
2020-02-14 02:40:08 +08:00
<dependency>
<groupId>com.alibaba.arthas</groupId>
<artifactId>arthas-repackage-logger</artifactId>
2020-09-24 23:25:47 +08:00
<version>0.0.6</version>
2020-02-14 02:40:08 +08:00
</dependency>
2020-04-11 22:44:51 +08:00
<dependency>
<groupId>com.alibaba.arthas</groupId>
<artifactId>arthas-repackage-asm</artifactId>
2020-09-24 23:25:47 +08:00
<version>0.0.6</version>
2020-04-11 22:44:51 +08:00
</dependency>
2018-08-31 11:49:48 +08:00
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId>
2020-06-15 16:22:29 +08:00
<version>1.2.71</version>
2018-08-31 11:49:48 +08:00
</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>
2018-11-12 16:42:08 +08:00
<version>3.1.19</version>
2018-08-31 11:49:48 +08:00
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
2020-10-13 15:18:31 +08:00
<version>4.13.1</version>
2018-08-31 11:49:48 +08:00
<scope>test</scope>
</dependency>
2019-12-27 15:11:18 +08:00
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
2019-12-30 11:45:41 +08:00
<version>2.9.1</version>
2019-12-27 15:11:18 +08:00
<scope>test</scope>
</dependency>
2020-04-23 21:00:37 +08:00
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
2020-05-20 03:17:22 +08:00
<version>2.28.2</version>
2020-04-23 21:00:37 +08:00
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-common</artifactId>
2020-06-16 15:08:20 +08:00
<version>4.1.46.Final</version>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-buffer</artifactId>
2020-06-16 15:08:20 +08:00
<version>4.1.46.Final</version>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-handler</artifactId>
2020-06-16 15:08:20 +08:00
<version>4.1.46.Final</version>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-transport</artifactId>
2020-06-16 15:08:20 +08:00
<version>4.1.46.Final</version>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-codec-http</artifactId>
2020-06-16 15:08:20 +08:00
<version>4.1.46.Final</version>
</dependency>
2018-11-08 14:45:55 +08:00
<dependency>
<groupId>jline</groupId>
<artifactId>jline</artifactId>
<version>2.14.6</version>
</dependency>
<dependency>
<groupId>net.bytebuddy</groupId>
<artifactId>byte-buddy</artifactId>
<version>1.10.13</version>
</dependency>
<dependency>
<groupId>net.bytebuddy</groupId>
<artifactId>byte-buddy-agent</artifactId>
<version>1.10.13</version>
</dependency>
<dependency>
<groupId>org.zeroturnaround</groupId>
<artifactId>zt-zip</artifactId>
<version>1.14</version>
</dependency>
2018-08-31 11:49:48 +08:00
</dependencies>
</dependencyManagement>
2018-09-06 16:30:11 +08:00
<build>
<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.2.0</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>3.0.0-M1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.8</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>3.2.0</version>
2018-09-06 17:14:07 +08:00
<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>
<version>3.2.1</version>
2018-09-06 17:14:07 +08:00
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
2019-04-19 19:35:02 +08:00
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.2</version>
<executions>
<execution>
<id>jacoco-initialize</id>
<goals>
<goal>prepare-agent</goal>
</goals>
<configuration>
2020-05-20 03:07:18 +08:00
<excludes>
<exclude>com/taobao/arthas/core/view/ObjectViewTest*</exclude>
<exclude>com/taobao/arthas/bytekit/asm/interceptor*</exclude>
</excludes>
2019-04-19 19:35:02 +08:00
</configuration>
</execution>
<execution>
<id>report-aggregate</id>
<phase>verify</phase>
<goals>
<goal>report-aggregate</goal>
</goals>
</execution>
</executions>
</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>