Skip to content

Commit

Permalink
chore: update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
skylot committed Apr 19, 2024
1 parent b356ff7 commit f9c0cad
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions buildSrc/src/main/kotlin/jadx-java.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ group = "io.github.skylot"
version = jadxVersion

dependencies {
implementation("org.slf4j:slf4j-api:2.0.12")
implementation("org.slf4j:slf4j-api:2.0.13")
compileOnly("org.jetbrains:annotations:24.1.0")

testImplementation("ch.qos.logback:logback-classic:1.5.4")
testImplementation("ch.qos.logback:logback-classic:1.5.6")
testImplementation("org.hamcrest:hamcrest-library:2.2")
testImplementation("org.mockito:mockito-core:5.11.0")
testImplementation("org.assertj:assertj-core:3.25.3")
Expand Down
2 changes: 1 addition & 1 deletion jadx-cli/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ dependencies {
runtimeOnly(project(":jadx-plugins:jadx-xapk-input"))

implementation("org.jcommander:jcommander:1.83")
implementation("ch.qos.logback:logback-classic:1.5.4")
implementation("ch.qos.logback:logback-classic:1.5.6")
}

application {
Expand Down
4 changes: 2 additions & 2 deletions jadx-gui/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ dependencies {
implementation("com.pinterest.ktlint:ktlint-ruleset-standard:1.2.1")

implementation("org.jcommander:jcommander:1.83")
implementation("ch.qos.logback:logback-classic:1.5.4")
implementation("ch.qos.logback:logback-classic:1.5.6")
implementation("dev.dirs:directories:26")

implementation("com.fifesoft:rsyntaxtextarea:3.4.0")
Expand All @@ -38,7 +38,7 @@ dependencies {

implementation("com.google.code.gson:gson:2.10.1")
implementation("org.apache.commons:commons-lang3:3.14.0")
implementation("org.apache.commons:commons-text:1.11.0")
implementation("org.apache.commons:commons-text:1.12.0")
implementation("commons-io:commons-io:2.16.1")

implementation("io.reactivex.rxjava2:rxjava:2.2.21")
Expand Down
2 changes: 1 addition & 1 deletion jadx-plugins/jadx-rename-mappings/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {
dependencies {
api(project(":jadx-core"))

api("net.fabricmc:mapping-io:0.5.1") {
api("net.fabricmc:mapping-io:0.6.1") {
exclude("org.ow2.asm:asm")
exclude("net.fabricmc:tiny-remapper")
}
Expand Down
4 changes: 2 additions & 2 deletions jadx-plugins/jadx-script/examples/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@ dependencies {
implementation(kotlin("stdlib-common"))
implementation(kotlin("script-runtime"))

implementation("io.github.oshai:kotlin-logging-jvm:6.0.4")
implementation("io.github.oshai:kotlin-logging-jvm:6.0.9")

// script context support in IDE is poor, use stubs and manual imports for now
// kotlinScriptDef(project(":jadx-plugins:jadx-script:jadx-script-runtime"))

// manual imports (IDE can't import dependencies by scripts annotations)
implementation("com.github.javafaker:javafaker:1.0.2")
implementation("org.apache.commons:commons-text:1.11.0")
implementation("org.apache.commons:commons-text:1.12.0")
}

sourceSets {
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.8.0")
implementation("io.github.oshai:kotlin-logging-jvm:6.0.4")
implementation("io.github.oshai:kotlin-logging-jvm:6.0.9")
}
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.4")
implementation("io.github.oshai:kotlin-logging-jvm:6.0.9")

// 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.8.0")
implementation("io.github.oshai:kotlin-logging-jvm:6.0.4")
implementation("io.github.oshai:kotlin-logging-jvm:6.0.9")

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

0 comments on commit f9c0cad

Please sign in to comment.