chore: update gradle and dependencies

This commit is contained in:
Skylot 2024-08-17 20:51:26 +01:00
parent 1cc00a54f3
commit eee354a3ab
No known key found for this signature in database
GPG Key ID: 47A4975761262B6A
10 changed files with 17 additions and 17 deletions

View File

@ -16,11 +16,11 @@ dependencies {
implementation("org.slf4j:slf4j-api:2.0.16")
compileOnly("org.jetbrains:annotations:24.1.0")
testImplementation("ch.qos.logback:logback-classic:1.5.6")
testImplementation("ch.qos.logback:logback-classic:1.5.7")
testImplementation("org.assertj:assertj-core:3.26.3")
testImplementation("org.mockito:mockito-core:5.12.0")
testImplementation("org.junit.jupiter:junit-jupiter:5.10.3")
testImplementation("org.junit.jupiter:junit-jupiter:5.11.0")
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
testCompileOnly("org.jetbrains:annotations:24.1.0")

View File

@ -9,10 +9,10 @@ repositories {
}
dependencies {
rewrite("org.openrewrite.recipe:rewrite-testing-frameworks:2.15.0")
rewrite("org.openrewrite.recipe:rewrite-logging-frameworks:2.12.0")
rewrite("org.openrewrite.recipe:rewrite-migrate-java:2.21.0")
rewrite("org.openrewrite.recipe:rewrite-static-analysis:1.13.0")
rewrite("org.openrewrite.recipe:rewrite-testing-frameworks:2.16.0")
rewrite("org.openrewrite.recipe:rewrite-logging-frameworks:2.12.1")
rewrite("org.openrewrite.recipe:rewrite-migrate-java:2.22.1")
rewrite("org.openrewrite.recipe:rewrite-static-analysis:1.14.0")
}
tasks {

Binary file not shown.

View File

@ -1,7 +1,7 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionSha256Sum=d725d707bfabd4dfdc958c624003b3c80accc03f7037b5122c4b1d0ef15cecab
distributionUrl=https\://services.gradle.org/distributions/gradle-8.9-bin.zip
distributionSha256Sum=5b9c5eb3f9fc2c94abaea57d90bd78747ca117ddbbf96c859d3741181a12bf2a
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME

View File

@ -20,8 +20,8 @@ dependencies {
runtimeOnly(project(":jadx-plugins:jadx-xapk-input"))
runtimeOnly(project(":jadx-plugins:jadx-aab-input"))
implementation("org.jcommander:jcommander:1.83")
implementation("ch.qos.logback:logback-classic:1.5.6")
implementation("org.jcommander:jcommander:1.84")
implementation("ch.qos.logback:logback-classic:1.5.7")
}
application {

View File

@ -25,8 +25,8 @@ dependencies {
implementation("com.pinterest.ktlint:ktlint-rule-engine:1.3.1")
implementation("com.pinterest.ktlint:ktlint-ruleset-standard:1.3.1")
implementation("org.jcommander:jcommander:1.83")
implementation("ch.qos.logback:logback-classic:1.5.6")
implementation("org.jcommander:jcommander:1.84")
implementation("ch.qos.logback:logback-classic:1.5.7")
implementation("com.fifesoft:rsyntaxtextarea:3.4.1")
implementation(files("libs/jfontchooser-1.0.5.jar"))
@ -43,7 +43,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.5.1")
implementation("com.android.tools.build:apksig:8.5.2")
implementation("io.github.skylot:jdwp:2.0.0")
testImplementation(project(":jadx-core").dependencyProject.sourceSets.getByName("test").output)

View File

@ -5,7 +5,7 @@ plugins {
dependencies {
compileOnly(project(":jadx-core"))
implementation("com.android.tools.build:aapt2-proto:8.5.1-11315950")
implementation("com.android.tools.build:aapt2-proto:8.5.2-11315950")
implementation("com.google.protobuf:protobuf-java") {
version {
require("3.25.3") // version 4 conflict with `aapt2-proto`

View File

@ -9,7 +9,7 @@ dependencies {
implementation("com.android.tools.smali:smali-baksmali:3.0.7") {
exclude(group = "com.beust", module = "jcommander") // exclude old jcommander namespace
}
implementation("com.google.guava:guava:33.2.1-jre") // force the latest version for smali
implementation("com.google.guava:guava:33.3.0-jre") // force the latest version for smali
// compile smali files in tests
testImplementation("com.android.tools.smali:smali:3.0.7") {

View File

@ -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.3.37")
implementation("com.android.tools:r8:8.5.35")
implementation("org.ow2.asm:asm:9.7")
}

View File

@ -10,5 +10,5 @@ dependencies {
implementation("com.android.tools.smali:smali:3.0.7") {
exclude(group = "com.beust", module = "jcommander") // exclude old jcommander namespace
}
implementation("com.google.guava:guava:33.2.1-jre") // force the latest version for smali
implementation("com.google.guava:guava:33.3.0-jre") // force the latest version for smali
}