chore: update dependencies

This commit is contained in:
Skylot 2023-12-21 19:00:33 +00:00
parent f5accc8464
commit 3e57dacfd3
No known key found for this signature in database
GPG Key ID: 47866607B16F25C8
8 changed files with 9 additions and 9 deletions

View File

@ -3,7 +3,7 @@ plugins {
}
dependencies {
implementation("org.jetbrains.kotlin:kotlin-gradle-plugin:1.9.21")
implementation("org.jetbrains.kotlin:kotlin-gradle-plugin:1.9.22")
}
repositories {

View File

@ -21,8 +21,8 @@ dependencies {
implementation("com.fifesoft:autocomplete:3.3.1")
// use KtLint for format and check jadx scripts
implementation("com.pinterest.ktlint:ktlint-rule-engine:1.0.1")
implementation("com.pinterest.ktlint:ktlint-ruleset-standard:1.0.1")
implementation("com.pinterest.ktlint:ktlint-rule-engine:1.1.0")
implementation("com.pinterest.ktlint:ktlint-ruleset-standard:1.1.0")
implementation("org.jcommander:jcommander:1.83")
implementation("ch.qos.logback:logback-classic:1.4.14")

View File

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

View File

@ -8,7 +8,7 @@ dependencies {
implementation(kotlin("stdlib-common"))
implementation(kotlin("script-runtime"))
implementation("io.github.oshai:kotlin-logging-jvm:5.1.1")
implementation("io.github.oshai:kotlin-logging-jvm:6.0.1")
// script context support in IDE is poor, use stubs and manual imports for now
// kotlinScriptDef(project(":jadx-plugins:jadx-script:jadx-script-runtime"))

View File

@ -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:5.1.1")
implementation("io.github.oshai:kotlin-logging-jvm:6.0.1")
}

View File

@ -10,7 +10,7 @@ dependencies {
implementation(kotlin("scripting-jvm"))
implementation(kotlin("scripting-jvm-host"))
implementation("io.github.oshai:kotlin-logging-jvm:5.1.1")
implementation("io.github.oshai:kotlin-logging-jvm:6.0.1")
// path for scripts cache
implementation("dev.dirs:directories:26")

View File

@ -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:5.1.1")
implementation("io.github.oshai:kotlin-logging-jvm:6.0.1")
runtimeOnly(project(":jadx-plugins:jadx-dex-input"))
runtimeOnly(project(":jadx-plugins:jadx-smali-input"))

View File

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