Skip to content

Commit

Permalink
chore: update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
skylot committed Jan 15, 2024
1 parent 306bc7a commit 6f1dfb6
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 7 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import java.util.Locale
plugins {
id("com.github.ben-manes.versions") version "0.50.0"
id("se.patrikerdes.use-latest-versions") version "0.2.18"
id("com.diffplug.spotless") version "6.23.3"
id("com.diffplug.spotless") version "6.24.0"
}

val jadxVersion by extra { System.getenv("JADX_VERSION") ?: "dev" }
Expand Down
2 changes: 1 addition & 1 deletion buildSrc/src/main/kotlin/jadx-java.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ dependencies {

testImplementation("ch.qos.logback:logback-classic:1.4.14")
testImplementation("org.hamcrest:hamcrest-library:2.2")
testImplementation("org.mockito:mockito-core:5.8.0")
testImplementation("org.mockito:mockito-core:5.9.0")
testImplementation("org.assertj:assertj-core:3.25.1")

testImplementation("org.junit.jupiter:junit-jupiter:5.10.1")
Expand Down
3 changes: 2 additions & 1 deletion jadx-gui/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,8 @@ application {
// disable zip checks (#1962)
"-Djdk.util.zip.disableZip64ExtraFieldValidation=true",
// needed for ktlint formatter
"-XX:+IgnoreUnrecognizedVMOptions", "--add-opens=java.base/java.lang=ALL-UNNAMED",
"-XX:+IgnoreUnrecognizedVMOptions",
"--add-opens=java.base/java.lang=ALL-UNNAMED",
)
applicationDistribution.from("$rootDir") {
include("README.md")
Expand Down
2 changes: 1 addition & 1 deletion jadx-plugins/jadx-script/examples/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ dependencies {
implementation(kotlin("stdlib-common"))
implementation(kotlin("script-runtime"))

implementation("io.github.oshai:kotlin-logging-jvm:6.0.2")
implementation("io.github.oshai:kotlin-logging-jvm:6.0.3")

// script context support in IDE is poor, use stubs and manual imports for now
// kotlinScriptDef(project(":jadx-plugins:jadx-script:jadx-script-runtime"))
Expand Down
2 changes: 1 addition & 1 deletion jadx-plugins/jadx-script/jadx-script-ide/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ dependencies {
implementation(kotlin("scripting-ide-services"))

implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3")
implementation("io.github.oshai:kotlin-logging-jvm:6.0.2")
implementation("io.github.oshai:kotlin-logging-jvm:6.0.3")
}
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ dependencies {
implementation(kotlin("scripting-jvm"))
implementation(kotlin("scripting-jvm-host"))

implementation("io.github.oshai:kotlin-logging-jvm:6.0.2")
implementation("io.github.oshai:kotlin-logging-jvm:6.0.3")

// path for scripts cache
implementation("dev.dirs:directories:26")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ dependencies {
implementation(kotlin("scripting-dependencies-maven"))

implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3")
implementation("io.github.oshai:kotlin-logging-jvm:6.0.2")
implementation("io.github.oshai:kotlin-logging-jvm:6.0.3")

runtimeOnly(project(":jadx-plugins:jadx-dex-input"))
runtimeOnly(project(":jadx-plugins:jadx-smali-input"))
Expand Down

0 comments on commit 6f1dfb6

Please sign in to comment.