arthas/pom.xml

507 lines
20 KiB
XML
Raw Normal View History

2018-08-31 11:49:48 +08:00
<?xml version="1.0" encoding="UTF-8"?>
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">
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>${revision}</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>
2021-03-17 17:49:21 +08:00
<module>math-game</module>
2018-11-09 15:57:03 +08:00
<module>common</module>
2021-04-29 19:28:44 +08:00
<module>spy</module>
<module>arthas-vmtool</module>
2020-10-22 17:11:31 +08:00
<module>tunnel-common</module>
2019-08-29 16:05:50 +08:00
<module>tunnel-client</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-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>
<properties>
2021-07-22 19:51:44 +08:00
<revision>3.5.3</revision>
2018-08-31 11:49:48 +08:00
<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>
2020-10-20 11:31:23 +08:00
<lifecycle-mapping.version>1.0.0</lifecycle-mapping.version>
<netty.version>4.1.59.Final</netty.version>
2018-08-31 11:49:48 +08:00
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>bytekit-core</artifactId>
2021-07-15 16:20:58 +08:00
<version>0.0.7</version>
</dependency>
2019-06-26 17:56:36 +08:00
<dependency>
<groupId>org.benf</groupId>
<artifactId>cfr</artifactId>
2021-02-08 20:30:54 +08:00
<version>0.151</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.11</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>
2021-07-05 15:24:41 +08:00
<version>1.7.31</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>
<version>0.0.9</version>
2020-02-14 02:40:08 +08:00
</dependency>
2018-08-31 11:49:48 +08:00
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId>
<version>1.2.75</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>
2021-02-01 17:53:50 +08:00
<version>${netty.version}</version>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-buffer</artifactId>
2021-02-01 17:53:50 +08:00
<version>${netty.version}</version>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-handler</artifactId>
2021-02-01 17:53:50 +08:00
<version>${netty.version}</version>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-transport</artifactId>
2021-02-01 17:53:50 +08:00
<version>${netty.version}</version>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-codec-http</artifactId>
2021-02-01 17:53:50 +08:00
<version>${netty.version}</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.11.6</version>
</dependency>
<dependency>
<groupId>net.bytebuddy</groupId>
<artifactId>byte-buddy-agent</artifactId>
<version>1.11.6</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
<profiles>
<profile>
<id>jdk8</id>
<activation>
<jdk>[1.8,)</jdk>
</activation>
<modules>
<module>tunnel-server</module>
</modules>
<build>
<plugins>
<!-- git commit info -->
<plugin>
<groupId>pl.project13.maven</groupId>
<artifactId>git-commit-id-plugin</artifactId>
<version>4.0.1</version>
<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>
<excludeProperties>
<excludeProperty>git.branch</excludeProperty>
<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>
<excludeProperty>git.local.branch.ahead</excludeProperty>
<excludeProperty>git.local.branch.behind</excludeProperty>
<excludeProperty>git.tags</excludeProperty>
</excludeProperties>
<injectAllReactorProjects>true</injectAllReactorProjects>
</configuration>
</plugin>
</plugins>
</build>
</profile>
<profile>
<!-- ci test -->
<id>jdk12</id>
<activation>
<jdk>[12,)</jdk>
<property>
<name>JAVA8_HOME</name>
</property>
</activation>
<dependencies>
<dependency>
<groupId>com.sun</groupId>
<artifactId>tools</artifactId>
<version>1.6.0</version>
<scope>system</scope>
<systemPath>${JAVA8_HOME}/lib/tools.jar</systemPath>
</dependency>
</dependencies>
</profile>
<profile>
<id>full</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.2.0</version>
<configuration>
<doclint>none</doclint>
<source>1.8</source>
<failOnError>false</failOnError>
</configuration>
<executions>
<execution>
<id>release</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>release</id>
<activation>
<property>
<name>performRelease</name>
<value>true</value>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
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>
2020-10-20 11:31:23 +08:00
<!--This plugin's configuration is used to store Eclipse m2e settings
only. It has no influence on the Maven build itself. -->
<plugin>
<groupId>org.eclipse.m2e</groupId>
<artifactId>lifecycle-mapping</artifactId>
<version>${lifecycle-mapping.version}</version>
<configuration>
<lifecycleMappingMetadata>
<pluginExecutions>
<pluginExecution>
<pluginExecutionFilter>
<groupId>
org.apache.maven.plugins
</groupId>
<artifactId>
maven-invoker-plugin
</artifactId>
<versionRange>
[1.0.0,)
</versionRange>
<goals>
<goal>
install
</goal>
</goals>
</pluginExecutionFilter>
<action>
<ignore />
</action>
</pluginExecution>
<pluginExecution>
<pluginExecutionFilter>
<groupId>
org.codehaus.mojo
</groupId>
<artifactId>
flatten-maven-plugin
</artifactId>
<versionRange>
[1.0.0,)
</versionRange>
<goals>
<goal>flatten</goal>
</goals>
</pluginExecutionFilter>
<action>
<ignore></ignore>
</action>
</pluginExecution>
</pluginExecutions>
</lifecycleMappingMetadata>
</configuration>
</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-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>
<groupId>org.codehaus.mojo</groupId>
<artifactId>flatten-maven-plugin</artifactId>
<version>1.2.2</version>
2020-10-21 23:12:08 +08:00
<configuration>
<flattenMode>minimum</flattenMode>
</configuration>
<executions>
<execution>
<id>flatten</id>
<phase>process-resources</phase>
<goals>
<goal>flatten</goal>
</goals>
</execution>
<execution>
2020-10-20 11:31:23 +08:00
<id>flatten-clean</id>
<phase>clean</phase>
<goals>
<goal>clean</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
2019-04-19 19:35:02 +08:00
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
2020-12-14 20:25:18 +08:00
<version>0.8.5</version>
2019-04-19 19:35:02 +08:00
<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>
</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>