Skip to content

Commit

Permalink
Update Gradle and ASM
Browse files Browse the repository at this point in the history
  • Loading branch information
ThexXTURBOXx committed Apr 9, 2022
1 parent b04929c commit 63334e7
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion d2j-base-cmd/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
description = 'a simple cmd parser'

dependencies {
implementation group: 'org.ow2.asm', name: 'asm', version: '9.2'
implementation group: 'org.ow2.asm', name: 'asm', version: '9.3'
}
6 changes: 3 additions & 3 deletions d2j-jasmin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ dependencies {
implementation(group: 'org.antlr', name: 'antlr-runtime', version: '3.5.2') {
exclude(module: 'stringtemplate')
}
implementation group: 'org.ow2.asm', name: 'asm', version: '9.2'
implementation group: 'org.ow2.asm', name: 'asm-tree', version: '9.2'
implementation group: 'org.ow2.asm', name: 'asm-util', version: '9.2'
implementation group: 'org.ow2.asm', name: 'asm', version: '9.3'
implementation group: 'org.ow2.asm', name: 'asm-tree', version: '9.3'
implementation group: 'org.ow2.asm', name: 'asm-util', version: '9.3'
implementation project(':d2j-base-cmd')
antlr "org.antlr:antlr:3.5.2"
}
Expand Down
8 changes: 4 additions & 4 deletions dex-tools/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ dependencies {
implementation project(':dex-reader')
implementation project(':d2j-base-cmd')
implementation fileTree(dir: '../libs', include: '*.jar')
implementation group: 'org.ow2.asm', name: 'asm', version: '9.2'
implementation group: 'org.ow2.asm', name: 'asm-tree', version: '9.2'
implementation group: 'org.ow2.asm', name: 'asm-util', version: '9.2'
implementation group: 'org.ow2.asm', name: 'asm-commons', version: '9.2'
implementation group: 'org.ow2.asm', name: 'asm', version: '9.3'
implementation group: 'org.ow2.asm', name: 'asm-tree', version: '9.3'
implementation group: 'org.ow2.asm', name: 'asm-util', version: '9.3'
implementation group: 'org.ow2.asm', name: 'asm-commons', version: '9.3'
}

task bin_gen(type: JavaExec) {
Expand Down
8 changes: 4 additions & 4 deletions dex-translator/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ dependencies {
api project(':dex-reader')
api project(':dex-ir')
api project(':d2j-base-cmd')
api group: 'org.ow2.asm', name: 'asm', version: '9.2'
api group: 'org.ow2.asm', name: 'asm-tree', version: '9.2'
api group: 'org.ow2.asm', name: 'asm-util', version: '9.2'
api group: 'org.ow2.asm', name: 'asm-commons', version: '9.2'
api group: 'org.ow2.asm', name: 'asm', version: '9.3'
api group: 'org.ow2.asm', name: 'asm-tree', version: '9.3'
api group: 'org.ow2.asm', name: 'asm-util', version: '9.3'
api group: 'org.ow2.asm', name: 'asm-commons', version: '9.3'
api fileTree(dir: '../libs', include: '*.jar')
testImplementation project(':d2j-smali')
testImplementation project(':d2j-jasmin')
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4.2-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

0 comments on commit 63334e7

Please sign in to comment.