Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Qlexpress #2978

Open
wants to merge 28 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
b126872
[support qlexpress]
taokan Oct 7, 2024
2b88739
Merge branch 'master' of https://github.com/taokan/arthas
taokan Oct 7, 2024
30fe689
【支持qlexpress表达式】
taokan Oct 8, 2024
efebecd
【支持qlexpress表达式】
taokan Oct 8, 2024
b1a0379
【支持qlexpress表达式】
taokan Oct 8, 2024
a878dc6
【支持qlexpress表达式】
taokan Oct 27, 2024
c780218
【支持qlexpress表达式】
taokan Nov 3, 2024
a54ac65
【支持qlexpress表达式】
taokan Nov 3, 2024
cbdf590
【支持qlexpress表达式】
taokan Nov 3, 2024
ec0f951
【支持qlexpress表达式】
taokan Nov 10, 2024
2dab795
【支持qlexpress表达式】
taokan Nov 10, 2024
44fde5c
【支持qlexpress表达式】
taokan Nov 10, 2024
aebe302
【支持qlexpress表达式】
taokan Nov 10, 2024
7d73a17
【支持qlexpress表达式】
taokan Nov 10, 2024
49d9397
【支持qlexpress表达式】
taokan Dec 1, 2024
87b71d0
【支持qlexpress表达式】
taokan Dec 22, 2024
35899a8
【支持qlexpress表达式】
taokan Dec 22, 2024
5a77e93
【支持qlexpress表达式】yarn revert
taokan Dec 22, 2024
adb0257
【支持qlexpress表达式】pom版本升级
taokan Jan 4, 2025
4f3a518
【支持qlexpress表达式】冲突
taokan Jan 4, 2025
564c11a
【支持qlexpress表达式】冲突
taokan Jan 4, 2025
23c3df1
【支持qlexpress表达式】冲突
taokan Jan 4, 2025
74a84f8
【支持qlexpress表达式】冲突
taokan Jan 4, 2025
92cff37
【支持qlexpress表达式】冲突
taokan Jan 12, 2025
63c648c
【支持qlexpress表达式】冲突
taokan Jan 12, 2025
dac03f5
【支持qlexpress表达式】冲突
taokan Jan 12, 2025
99f4850
【支持qlexpress表达式】冲突
taokan Jan 12, 2025
0de1a3f
Merge branch 'qlexpress' into qlexpress20240112
taokan Jan 12, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
【支持qlexpress表达式】
  • Loading branch information
taokan committed Oct 8, 2024
commit 30fe6897cc84688462a89ef4b3a8d714fdb82b03
4 changes: 4 additions & 0 deletions core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -211,6 +211,10 @@
<groupId>ognl</groupId>
<artifactId>ognl</artifactId>
</dependency>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>QLExpress4</artifactId>
</dependency>
<dependency>
<groupId>org.junit.vintage</groupId>
<artifactId>junit-vintage-engine</artifactId>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package com.taobao.arthas.core.command.express;

import com.alibaba.fastjson.JSON;
import com.alibaba.fastjson2.JSON;
import com.taobao.arthas.core.GlobalOptions;
import com.taobao.arthas.core.command.model.ExpressTypeEnum;
import com.taobao.arthas.core.command.model.QLExpressConfigModel;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

import com.alibaba.arthas.deps.org.slf4j.Logger;
import com.alibaba.arthas.deps.org.slf4j.LoggerFactory;
import com.alibaba.fastjson.JSON;
import com.alibaba.fastjson2.JSON;
import com.alibaba.qlexpress4.Express4Runner;
import com.alibaba.qlexpress4.InitOptions;
import com.alibaba.qlexpress4.QLOptions;
Expand Down
5 changes: 5 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,11 @@
<artifactId>ognl</artifactId>
<version>3.4.2</version>
</dependency>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>QLExpress4</artifactId>
<version>4.0.0-beta</version>
</dependency>
<dependency>
<groupId>org.junit</groupId>
<artifactId>junit-bom</artifactId>
Expand Down