File tree Expand file tree Collapse file tree 5 files changed +17
-17
lines changed Expand file tree Collapse file tree 5 files changed +17
-17
lines changed Original file line number Diff line number Diff line change @@ -20,8 +20,8 @@ subprojects {
20
20
21
21
dependencies {
22
22
implementation fileTree(dir : ' libs' , include : ' *.jar' )
23
- testImplementation group : ' org.junit.vintage' , name : ' junit-vintage-engine' , version : ' 5.9.0 '
24
- testImplementation group : ' org.junit.platform' , name : ' junit-platform-launcher' , version : ' 1.9.0 '
23
+ testImplementation group : ' org.junit.vintage' , name : ' junit-vintage-engine' , version : ' 5.9.1 '
24
+ testImplementation group : ' org.junit.platform' , name : ' junit-platform-launcher' , version : ' 1.9.1 '
25
25
}
26
26
27
27
[compileJava, compileTestJava]* . options. collect { options -> options. encoding = ' UTF-8' }
Original file line number Diff line number Diff line change @@ -5,17 +5,17 @@ dependencies {
5
5
exclude(module : ' stringtemplate' )
6
6
}
7
7
implementation fileTree(dir : ' ../libs' , include : ' *.jar' )
8
- // implementation group: 'org.ow2.asm', name: 'asm', version: '9.3 ' // Fixed MethodCodeTooLargeException
9
- implementation(group : ' org.ow2.asm' , name : ' asm-analysis' , version : ' 9.3 ' ) {
8
+ // implementation group: 'org.ow2.asm', name: 'asm', version: '9.4 ' // Fixed MethodCodeTooLargeException
9
+ implementation(group : ' org.ow2.asm' , name : ' asm-analysis' , version : ' 9.4 ' ) {
10
10
exclude(module : ' asm' )
11
11
}
12
- implementation(group : ' org.ow2.asm' , name : ' asm-commons' , version : ' 9.3 ' ) {
12
+ implementation(group : ' org.ow2.asm' , name : ' asm-commons' , version : ' 9.4 ' ) {
13
13
exclude(module : ' asm' )
14
14
}
15
- implementation(group : ' org.ow2.asm' , name : ' asm-tree' , version : ' 9.3 ' ) {
15
+ implementation(group : ' org.ow2.asm' , name : ' asm-tree' , version : ' 9.4 ' ) {
16
16
exclude(module : ' asm' )
17
17
}
18
- implementation(group : ' org.ow2.asm' , name : ' asm-util' , version : ' 9.3 ' ) {
18
+ implementation(group : ' org.ow2.asm' , name : ' asm-util' , version : ' 9.4 ' ) {
19
19
exclude(module : ' asm' )
20
20
}
21
21
implementation project(' :d2j-base-cmd' )
Original file line number Diff line number Diff line change @@ -14,17 +14,17 @@ dependencies {
14
14
implementation project(' :dex-reader' )
15
15
implementation project(' :d2j-base-cmd' )
16
16
implementation fileTree(dir : ' ../libs' , include : ' *.jar' )
17
- // implementation group: 'org.ow2.asm', name: 'asm', version: '9.3 ' // Fixed MethodCodeTooLargeException
18
- implementation(group : ' org.ow2.asm' , name : ' asm-analysis' , version : ' 9.3 ' ) {
17
+ // implementation group: 'org.ow2.asm', name: 'asm', version: '9.4 ' // Fixed MethodCodeTooLargeException
18
+ implementation(group : ' org.ow2.asm' , name : ' asm-analysis' , version : ' 9.4 ' ) {
19
19
exclude(module : ' asm' )
20
20
}
21
- implementation(group : ' org.ow2.asm' , name : ' asm-commons' , version : ' 9.3 ' ) {
21
+ implementation(group : ' org.ow2.asm' , name : ' asm-commons' , version : ' 9.4 ' ) {
22
22
exclude(module : ' asm' )
23
23
}
24
- implementation(group : ' org.ow2.asm' , name : ' asm-tree' , version : ' 9.3 ' ) {
24
+ implementation(group : ' org.ow2.asm' , name : ' asm-tree' , version : ' 9.4 ' ) {
25
25
exclude(module : ' asm' )
26
26
}
27
- implementation(group : ' org.ow2.asm' , name : ' asm-util' , version : ' 9.3 ' ) {
27
+ implementation(group : ' org.ow2.asm' , name : ' asm-util' , version : ' 9.4 ' ) {
28
28
exclude(module : ' asm' )
29
29
}
30
30
}
Original file line number Diff line number Diff line change @@ -10,17 +10,17 @@ dependencies {
10
10
api project(' :dex-ir' )
11
11
api project(' :d2j-base-cmd' )
12
12
api fileTree(dir : ' ../libs' , include : ' *.jar' )
13
- // api group: 'org.ow2.asm', name: 'asm', version: '9.3 ' // Fixed MethodCodeTooLargeException
14
- api(group : ' org.ow2.asm' , name : ' asm-analysis' , version : ' 9.3 ' ) {
13
+ // api group: 'org.ow2.asm', name: 'asm', version: '9.4 ' // Fixed MethodCodeTooLargeException
14
+ api(group : ' org.ow2.asm' , name : ' asm-analysis' , version : ' 9.4 ' ) {
15
15
exclude(module : ' asm' )
16
16
}
17
- api(group : ' org.ow2.asm' , name : ' asm-commons' , version : ' 9.3 ' ) {
17
+ api(group : ' org.ow2.asm' , name : ' asm-commons' , version : ' 9.4 ' ) {
18
18
exclude(module : ' asm' )
19
19
}
20
- api(group : ' org.ow2.asm' , name : ' asm-tree' , version : ' 9.3 ' ) {
20
+ api(group : ' org.ow2.asm' , name : ' asm-tree' , version : ' 9.4 ' ) {
21
21
exclude(module : ' asm' )
22
22
}
23
- api(group : ' org.ow2.asm' , name : ' asm-util' , version : ' 9.3 ' ) {
23
+ api(group : ' org.ow2.asm' , name : ' asm-util' , version : ' 9.4 ' ) {
24
24
exclude(module : ' asm' )
25
25
}
26
26
testImplementation project(' :d2j-smali' )
You can’t perform that action at this time.
0 commit comments