diff --git a/Dockerfile b/Dockerfile index 6d183e496..7900fcc89 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ FROM openjdk:8-jdk-alpine -ARG ARTHAS_VERSION="3.2.0" +ARG ARTHAS_VERSION="3.3.0" ARG MIRROR=false ENV MAVEN_HOST=https://repo1.maven.org/maven2 \ diff --git a/Dockerfile-No-Jdk b/Dockerfile-No-Jdk index 5761cd45a..4dd0c552b 100644 --- a/Dockerfile-No-Jdk +++ b/Dockerfile-No-Jdk @@ -1,6 +1,6 @@ FROM alpine -ARG ARTHAS_VERSION="3.2.0" +ARG ARTHAS_VERSION="3.3.0" ARG MIRROR=false ENV MAVEN_HOST=https://repo1.maven.org/maven2 \ diff --git a/agent/pom.xml b/agent/pom.xml index 97a0310be..38cb50553 100644 --- a/agent/pom.xml +++ b/agent/pom.xml @@ -4,7 +4,7 @@ com.taobao.arthas arthas-all - 3.2.1-SNAPSHOT + 3.3.0-SNAPSHOT ../pom.xml arthas-agent diff --git a/bin/as.sh b/bin/as.sh index 1dd5cbfad..33bf3cb37 100755 --- a/bin/as.sh +++ b/bin/as.sh @@ -8,10 +8,10 @@ # program : Arthas # author : Core Engine @ Taobao.com -# date : 2020-04-11 +# date : 2020-05-28 # current arthas script version -ARTHAS_SCRIPT_VERSION=3.2.0 +ARTHAS_SCRIPT_VERSION=3.3.0 # SYNOPSIS # rreadlink @@ -444,7 +444,7 @@ EXAMPLES: ./as.sh --stat-url 'http://192.168.10.11:8080/api/stat' ./as.sh -c 'sysprop; thread' ./as.sh -f batch.as - ./as.sh --use-version 3.2.0 + ./as.sh --use-version 3.3.0 ./as.sh --session-timeout 3600 ./as.sh --attach-only ./as.sh --select arthas-demo diff --git a/boot/pom.xml b/boot/pom.xml index d673ae330..d0b39ea98 100644 --- a/boot/pom.xml +++ b/boot/pom.xml @@ -4,7 +4,7 @@ com.taobao.arthas arthas-all - 3.2.1-SNAPSHOT + 3.3.0-SNAPSHOT ../pom.xml arthas-boot diff --git a/boot/src/main/java/com/taobao/arthas/boot/Bootstrap.java b/boot/src/main/java/com/taobao/arthas/boot/Bootstrap.java index 1f6809507..891486212 100644 --- a/boot/src/main/java/com/taobao/arthas/boot/Bootstrap.java +++ b/boot/src/main/java/com/taobao/arthas/boot/Bootstrap.java @@ -52,7 +52,7 @@ import static com.taobao.arthas.boot.ProcessUtils.STATUS_EXEC_TIMEOUT; + " java -jar arthas-boot.jar --stat-url 'http://192.168.10.11:8080/api/stat'\n" + " java -jar arthas-boot.jar -c 'sysprop; thread' \n" + " java -jar arthas-boot.jar -f batch.as \n" - + " java -jar arthas-boot.jar --use-version 3.2.0\n" + + " java -jar arthas-boot.jar --use-version 3.3.0\n" + " java -jar arthas-boot.jar --versions\n" + " java -jar arthas-boot.jar --select arthas-demo\n" + " java -jar arthas-boot.jar --session-timeout 3600\n" + " java -jar arthas-boot.jar --attach-only\n" diff --git a/bytekit/pom.xml b/bytekit/pom.xml index 0b7bd94d1..bd4c4cbea 100644 --- a/bytekit/pom.xml +++ b/bytekit/pom.xml @@ -6,7 +6,7 @@ com.taobao.arthas arthas-all - 3.2.1-SNAPSHOT + 3.3.0-SNAPSHOT ../pom.xml arthas-bytekit diff --git a/client/pom.xml b/client/pom.xml index acc171622..5e69f1b3e 100644 --- a/client/pom.xml +++ b/client/pom.xml @@ -3,7 +3,7 @@ arthas-all com.taobao.arthas - 3.2.1-SNAPSHOT + 3.3.0-SNAPSHOT ../pom.xml 4.0.0 diff --git a/common/pom.xml b/common/pom.xml index 24732602a..8e8da668d 100644 --- a/common/pom.xml +++ b/common/pom.xml @@ -4,7 +4,7 @@ com.taobao.arthas arthas-all - 3.2.1-SNAPSHOT + 3.3.0-SNAPSHOT ../pom.xml arthas-common diff --git a/core/pom.xml b/core/pom.xml index f71ef36be..ec62229da 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -4,7 +4,7 @@ com.taobao.arthas arthas-all - 3.2.1-SNAPSHOT + 3.3.0-SNAPSHOT ../pom.xml arthas-core diff --git a/demo/pom.xml b/demo/pom.xml index 5bc8be593..4f4e6eca3 100644 --- a/demo/pom.xml +++ b/demo/pom.xml @@ -4,7 +4,7 @@ com.taobao.arthas arthas-all - 3.2.1-SNAPSHOT + 3.3.0-SNAPSHOT ../pom.xml arthas-demo diff --git a/memorycompiler/pom.xml b/memorycompiler/pom.xml index d3bcf4d83..9551511d3 100644 --- a/memorycompiler/pom.xml +++ b/memorycompiler/pom.xml @@ -4,7 +4,7 @@ com.taobao.arthas arthas-all - 3.2.1-SNAPSHOT + 3.3.0-SNAPSHOT ../pom.xml arthas-memorycompiler diff --git a/packaging/pom.xml b/packaging/pom.xml index ea61b2b34..183cddf4a 100644 --- a/packaging/pom.xml +++ b/packaging/pom.xml @@ -4,7 +4,7 @@ com.taobao.arthas arthas-all - 3.2.1-SNAPSHOT + 3.3.0-SNAPSHOT ../pom.xml arthas-packaging diff --git a/pom.xml b/pom.xml index 621da086d..4ccda2878 100644 --- a/pom.xml +++ b/pom.xml @@ -47,7 +47,7 @@ com.taobao.arthas arthas-all - 3.2.1-SNAPSHOT + 3.3.0-SNAPSHOT pom arthas-all diff --git a/site/pom.xml b/site/pom.xml index 48b93bf36..7fa800f12 100644 --- a/site/pom.xml +++ b/site/pom.xml @@ -4,7 +4,7 @@ com.taobao.arthas arthas-all - 3.2.1-SNAPSHOT + 3.3.0-SNAPSHOT ../pom.xml arthas-site diff --git a/spy/pom.xml b/spy/pom.xml index 0d20b6ad4..3f76b969a 100644 --- a/spy/pom.xml +++ b/spy/pom.xml @@ -4,7 +4,7 @@ com.taobao.arthas arthas-all - 3.2.1-SNAPSHOT + 3.3.0-SNAPSHOT ../pom.xml arthas-spy diff --git a/testcase/pom.xml b/testcase/pom.xml index 5d47be0b7..dee468181 100644 --- a/testcase/pom.xml +++ b/testcase/pom.xml @@ -4,7 +4,7 @@ com.taobao.arthas arthas-all - 3.2.1-SNAPSHOT + 3.3.0-SNAPSHOT ../pom.xml arthas-testcase diff --git a/tunnel-client/pom.xml b/tunnel-client/pom.xml index f58b86f52..aad2c8791 100644 --- a/tunnel-client/pom.xml +++ b/tunnel-client/pom.xml @@ -4,7 +4,7 @@ com.taobao.arthas arthas-all - 3.2.1-SNAPSHOT + 3.3.0-SNAPSHOT ../pom.xml arthas-tunnel-client diff --git a/tunnel-server/pom.xml b/tunnel-server/pom.xml index 44dc94836..3569cf193 100644 --- a/tunnel-server/pom.xml +++ b/tunnel-server/pom.xml @@ -4,7 +4,7 @@ com.taobao.arthas arthas-all - 3.2.1-SNAPSHOT + 3.3.0-SNAPSHOT ../pom.xml arthas-tunnel-server