chore: update gradle and dependencies
This commit is contained in:
@@ -17,8 +17,8 @@ dependencies {
|
||||
implementation("org.slf4j:slf4j-api:2.0.16")
|
||||
compileOnly("org.jetbrains:annotations:26.0.1")
|
||||
|
||||
testImplementation("ch.qos.logback:logback-classic:1.5.13")
|
||||
testImplementation("org.assertj:assertj-core:3.26.3")
|
||||
testImplementation("ch.qos.logback:logback-classic:1.5.16")
|
||||
testImplementation("org.assertj:assertj-core:3.27.2")
|
||||
|
||||
testImplementation("org.junit.jupiter:junit-jupiter:5.11.4")
|
||||
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
|
||||
|
||||
@@ -7,10 +7,10 @@ repositories {
|
||||
}
|
||||
|
||||
dependencies {
|
||||
rewrite("org.openrewrite.recipe:rewrite-testing-frameworks:2.24.0")
|
||||
rewrite("org.openrewrite.recipe:rewrite-logging-frameworks:2.18.0")
|
||||
rewrite("org.openrewrite.recipe:rewrite-migrate-java:2.31.0")
|
||||
rewrite("org.openrewrite.recipe:rewrite-static-analysis:1.22.0")
|
||||
rewrite("org.openrewrite.recipe:rewrite-testing-frameworks:3.0.0")
|
||||
rewrite("org.openrewrite.recipe:rewrite-logging-frameworks:3.0.0")
|
||||
rewrite("org.openrewrite.recipe:rewrite-migrate-java:3.0.0")
|
||||
rewrite("org.openrewrite.recipe:rewrite-static-analysis:2.0.1")
|
||||
}
|
||||
|
||||
tasks {
|
||||
|
||||
+2
-2
@@ -1,7 +1,7 @@
|
||||
distributionBase=GRADLE_USER_HOME
|
||||
distributionPath=wrapper/dists
|
||||
distributionSha256Sum=f397b287023acdba1e9f6fc5ea72d22dd63669d59ed4a289a29b1a76eee151c6
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.11.1-bin.zip
|
||||
distributionSha256Sum=7a00d51fb93147819aab76024feece20b6b84e420694101f276be952e08bef03
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.12-bin.zip
|
||||
networkTimeout=10000
|
||||
validateDistributionUrl=true
|
||||
zipStoreBase=GRADLE_USER_HOME
|
||||
|
||||
@@ -86,8 +86,7 @@ done
|
||||
# shellcheck disable=SC2034
|
||||
APP_BASE_NAME=${0##*/}
|
||||
# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036)
|
||||
APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s
|
||||
' "$PWD" ) || exit
|
||||
APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s\n' "$PWD" ) || exit
|
||||
|
||||
# Use the maximum available, or set MAX_FD != -1 to use that value.
|
||||
MAX_FD=maximum
|
||||
|
||||
@@ -25,7 +25,7 @@ dependencies {
|
||||
runtimeOnly(project(":jadx-plugins:jadx-apkm-input"))
|
||||
|
||||
implementation("org.jcommander:jcommander:2.0")
|
||||
implementation("ch.qos.logback:logback-classic:1.5.13")
|
||||
implementation("ch.qos.logback:logback-classic:1.5.16")
|
||||
}
|
||||
|
||||
application {
|
||||
|
||||
@@ -27,7 +27,7 @@ dependencies {
|
||||
implementation("com.pinterest.ktlint:ktlint-ruleset-standard:1.5.0")
|
||||
|
||||
implementation("org.jcommander:jcommander:2.0")
|
||||
implementation("ch.qos.logback:logback-classic:1.5.13")
|
||||
implementation("ch.qos.logback:logback-classic:1.5.16")
|
||||
implementation("io.github.oshai:kotlin-logging-jvm:7.0.3")
|
||||
|
||||
implementation("com.fifesoft:rsyntaxtextarea:3.5.3")
|
||||
@@ -46,7 +46,7 @@ dependencies {
|
||||
|
||||
implementation("io.reactivex.rxjava2:rxjava:2.2.21")
|
||||
implementation("com.github.akarnokd:rxjava2-swing:0.3.7")
|
||||
implementation("com.android.tools.build:apksig:8.7.3")
|
||||
implementation("com.android.tools.build:apksig:8.8.0")
|
||||
implementation("io.github.skylot:jdwp:2.0.0")
|
||||
|
||||
testImplementation(project.project(":jadx-core").sourceSets.getByName("test").output)
|
||||
|
||||
@@ -5,14 +5,14 @@ plugins {
|
||||
dependencies {
|
||||
compileOnly(project(":jadx-core"))
|
||||
|
||||
implementation("com.android.tools.build:aapt2-proto:8.7.3-12006047")
|
||||
implementation("com.android.tools.build:aapt2-proto:8.8.0-12006047")
|
||||
implementation("com.google.protobuf:protobuf-java") {
|
||||
version {
|
||||
require("3.25.3") // version 4 conflict with `aapt2-proto`
|
||||
}
|
||||
}
|
||||
|
||||
implementation("com.android.tools.build:bundletool:1.17.2") {
|
||||
implementation("com.android.tools.build:bundletool:1.18.0") {
|
||||
// All of this is unnecessary for parsing BundleConfig.pb except for protobuf
|
||||
exclude(group = "com.android.tools.build")
|
||||
exclude(group = "com.google.protobuf")
|
||||
|
||||
@@ -6,13 +6,13 @@ dependencies {
|
||||
api(project(":jadx-core"))
|
||||
|
||||
// TODO: finish own smali printer
|
||||
implementation("com.android.tools.smali:smali-baksmali:3.0.8") {
|
||||
implementation("com.android.tools.smali:smali-baksmali:3.0.9") {
|
||||
exclude(group = "com.beust", module = "jcommander") // exclude old jcommander namespace
|
||||
}
|
||||
implementation("com.google.guava:guava:33.4.0-jre") // force the latest version for smali
|
||||
|
||||
// compile smali files in tests
|
||||
testImplementation("com.android.tools.smali:smali:3.0.8") {
|
||||
testImplementation("com.android.tools.smali:smali:3.0.9") {
|
||||
exclude(group = "com.beust", module = "jcommander") // exclude old jcommander namespace
|
||||
}
|
||||
}
|
||||
|
||||
@@ -7,7 +7,7 @@ dependencies {
|
||||
|
||||
implementation(project(":jadx-plugins:jadx-dex-input"))
|
||||
implementation("com.jakewharton.android.repackaged:dalvik-dx:14.0.0_r21")
|
||||
implementation("com.android.tools:r8:8.5.35")
|
||||
implementation("com.android.tools:r8:8.7.18")
|
||||
|
||||
implementation("org.ow2.asm:asm:9.7.1")
|
||||
}
|
||||
|
||||
@@ -5,7 +5,7 @@ plugins {
|
||||
dependencies {
|
||||
api(project(":jadx-core"))
|
||||
|
||||
api("net.fabricmc:mapping-io:0.6.1") {
|
||||
api("net.fabricmc:mapping-io:0.7.0") {
|
||||
exclude("org.ow2.asm:asm")
|
||||
exclude("net.fabricmc:tiny-remapper")
|
||||
}
|
||||
|
||||
@@ -12,6 +12,6 @@ dependencies {
|
||||
implementation(kotlin("scripting-compiler-embeddable"))
|
||||
implementation(kotlin("scripting-ide-services"))
|
||||
|
||||
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0")
|
||||
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1")
|
||||
implementation("io.github.oshai:kotlin-logging-jvm:7.0.3")
|
||||
}
|
||||
|
||||
@@ -14,7 +14,7 @@ dependencies {
|
||||
implementation(kotlin("scripting-dependencies"))
|
||||
implementation(kotlin("scripting-dependencies-maven"))
|
||||
|
||||
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0")
|
||||
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1")
|
||||
implementation("io.github.oshai:kotlin-logging-jvm:7.0.3")
|
||||
|
||||
runtimeOnly(project(":jadx-plugins:jadx-dex-input"))
|
||||
|
||||
@@ -7,7 +7,7 @@ dependencies {
|
||||
|
||||
implementation(project(":jadx-plugins:jadx-dex-input"))
|
||||
|
||||
implementation("com.android.tools.smali:smali:3.0.8") {
|
||||
implementation("com.android.tools.smali:smali:3.0.9") {
|
||||
exclude(group = "com.beust", module = "jcommander") // exclude old jcommander namespace
|
||||
}
|
||||
implementation("com.google.guava:guava:33.4.0-jre") // force the latest version for smali
|
||||
|
||||
Reference in New Issue
Block a user