chore: update dependencies
This commit is contained in:
@@ -3,7 +3,7 @@ plugins {
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation("org.jetbrains.kotlin:kotlin-gradle-plugin:2.2.20")
|
||||
implementation("org.jetbrains.kotlin:kotlin-gradle-plugin:2.2.21")
|
||||
|
||||
implementation("org.openrewrite:plugin:6.19.1")
|
||||
}
|
||||
|
||||
@@ -17,7 +17,7 @@ dependencies {
|
||||
implementation("org.slf4j:slf4j-api:2.0.17")
|
||||
compileOnly("org.jetbrains:annotations:26.0.2")
|
||||
|
||||
testImplementation("ch.qos.logback:logback-classic:1.5.20")
|
||||
testImplementation("ch.qos.logback:logback-classic:1.5.21")
|
||||
testImplementation("org.assertj:assertj-core:3.27.6")
|
||||
|
||||
testImplementation("org.junit.jupiter:junit-jupiter:5.13.3")
|
||||
|
||||
@@ -7,10 +7,10 @@ repositories {
|
||||
}
|
||||
|
||||
dependencies {
|
||||
rewrite("org.openrewrite.recipe:rewrite-testing-frameworks:3.19.0")
|
||||
rewrite("org.openrewrite.recipe:rewrite-logging-frameworks:3.16.0")
|
||||
rewrite("org.openrewrite.recipe:rewrite-migrate-java:3.19.0")
|
||||
rewrite("org.openrewrite.recipe:rewrite-static-analysis:2.19.0")
|
||||
rewrite("org.openrewrite.recipe:rewrite-testing-frameworks:3.22.0")
|
||||
rewrite("org.openrewrite.recipe:rewrite-logging-frameworks:3.19.0")
|
||||
rewrite("org.openrewrite.recipe:rewrite-migrate-java:3.22.0")
|
||||
rewrite("org.openrewrite.recipe:rewrite-static-analysis:2.22.0")
|
||||
}
|
||||
|
||||
tasks {
|
||||
|
||||
@@ -26,7 +26,7 @@ dependencies {
|
||||
runtimeOnly(project(":jadx-plugins:jadx-apks-input"))
|
||||
|
||||
implementation("org.jcommander:jcommander:2.0")
|
||||
implementation("ch.qos.logback:logback-classic:1.5.20")
|
||||
implementation("ch.qos.logback:logback-classic:1.5.21")
|
||||
}
|
||||
|
||||
application {
|
||||
|
||||
@@ -8,7 +8,7 @@ dependencies {
|
||||
|
||||
implementation("com.google.code.gson:gson:2.13.2")
|
||||
|
||||
testImplementation("org.apache.commons:commons-lang3:3.19.0")
|
||||
testImplementation("org.apache.commons:commons-lang3:3.20.0")
|
||||
|
||||
testImplementation(project(":jadx-plugins:jadx-dex-input"))
|
||||
testRuntimeOnly(project(":jadx-plugins:jadx-smali-input"))
|
||||
|
||||
@@ -4,7 +4,7 @@ plugins {
|
||||
id("jadx-library")
|
||||
id("com.gradleup.shadow") version "8.3.8"
|
||||
id("edu.sc.seis.launch4j") version "4.0.0"
|
||||
id("org.beryx.runtime") version "2.0.0-rc"
|
||||
id("org.beryx.runtime") version "2.0.1"
|
||||
}
|
||||
|
||||
dependencies {
|
||||
@@ -23,11 +23,11 @@ dependencies {
|
||||
implementation("com.fifesoft:autocomplete:3.3.2")
|
||||
|
||||
// use KtLint for format and check jadx scripts
|
||||
implementation("com.pinterest.ktlint:ktlint-rule-engine:1.7.1")
|
||||
implementation("com.pinterest.ktlint:ktlint-ruleset-standard:1.7.1")
|
||||
implementation("com.pinterest.ktlint:ktlint-rule-engine:1.8.0")
|
||||
implementation("com.pinterest.ktlint:ktlint-ruleset-standard:1.8.0")
|
||||
|
||||
implementation("org.jcommander:jcommander:2.0")
|
||||
implementation("ch.qos.logback:logback-classic:1.5.20")
|
||||
implementation("ch.qos.logback:logback-classic:1.5.21")
|
||||
implementation("io.github.oshai:kotlin-logging-jvm:7.0.13")
|
||||
|
||||
implementation("com.fifesoft:rsyntaxtextarea:3.6.0")
|
||||
@@ -40,13 +40,13 @@ dependencies {
|
||||
implementation("com.formdev:flatlaf-extras:3.6.2")
|
||||
|
||||
implementation("com.google.code.gson:gson:2.13.2")
|
||||
implementation("org.apache.commons:commons-lang3:3.19.0")
|
||||
implementation("org.apache.commons:commons-lang3:3.20.0")
|
||||
implementation("org.apache.commons:commons-text:1.14.0")
|
||||
implementation("commons-io:commons-io:2.20.0")
|
||||
implementation("commons-io:commons-io:2.21.0")
|
||||
|
||||
implementation("io.reactivex.rxjava3:rxjava:3.1.12")
|
||||
implementation("com.github.akarnokd:rxjava3-swing:3.1.1")
|
||||
implementation("com.android.tools.build:apksig:8.13.0")
|
||||
implementation("com.android.tools.build:apksig:8.13.1")
|
||||
implementation("io.github.skylot:jdwp:2.0.0")
|
||||
|
||||
// Library for hex viewing data
|
||||
|
||||
@@ -5,14 +5,14 @@ plugins {
|
||||
dependencies {
|
||||
compileOnly(project(":jadx-core"))
|
||||
|
||||
implementation("com.android.tools.build:aapt2-proto:8.13.0-13719691")
|
||||
implementation("com.android.tools.build:aapt2-proto:8.13.1-13719691")
|
||||
implementation("com.google.protobuf:protobuf-java") {
|
||||
version {
|
||||
require("3.25.3") // version 4 conflict with `aapt2-proto`
|
||||
}
|
||||
}
|
||||
|
||||
implementation("com.android.tools.build:bundletool:1.18.2") {
|
||||
implementation("com.android.tools.build:bundletool:1.18.3") {
|
||||
// All of this is unnecessary for parsing BundleConfig.pb except for protobuf
|
||||
exclude(group = "com.android.tools.build")
|
||||
exclude(group = "com.google.protobuf")
|
||||
|
||||
@@ -6,8 +6,8 @@ dependencies {
|
||||
api(project(":jadx-core"))
|
||||
|
||||
implementation(project(":jadx-plugins:jadx-dex-input"))
|
||||
implementation("com.jakewharton.android.repackaged:dalvik-dx:14.0.0_r21")
|
||||
implementation("com.android.tools:r8:8.11.18")
|
||||
implementation("com.jakewharton.android.repackaged:dalvik-dx:16.0.1")
|
||||
implementation("com.android.tools:r8:8.13.17")
|
||||
|
||||
implementation("org.ow2.asm:asm:9.9")
|
||||
}
|
||||
|
||||
@@ -6,10 +6,10 @@ plugins {
|
||||
dependencies {
|
||||
api(project(":jadx-core"))
|
||||
|
||||
implementation("org.jetbrains.kotlin:kotlin-metadata-jvm:2.2.20")
|
||||
implementation("org.jetbrains.kotlin:kotlin-metadata-jvm:2.2.21")
|
||||
|
||||
testImplementation(project.project(":jadx-core").sourceSets.getByName("test").output)
|
||||
testImplementation("org.apache.commons:commons-lang3:3.19.0")
|
||||
testImplementation("org.apache.commons:commons-lang3:3.20.0")
|
||||
|
||||
testRuntimeOnly(project(":jadx-plugins:jadx-smali-input"))
|
||||
testRuntimeOnly(project(":jadx-plugins:jadx-java-input"))
|
||||
|
||||
@@ -7,7 +7,7 @@ dependencies {
|
||||
api(project(":jadx-core"))
|
||||
|
||||
testImplementation(project.project(":jadx-core").sourceSets.getByName("test").output)
|
||||
testImplementation("org.apache.commons:commons-lang3:3.19.0")
|
||||
testImplementation("org.apache.commons:commons-lang3:3.20.0")
|
||||
|
||||
testRuntimeOnly(project(":jadx-plugins:jadx-smali-input"))
|
||||
}
|
||||
|
||||
@@ -5,7 +5,7 @@ plugins {
|
||||
dependencies {
|
||||
api(project(":jadx-core"))
|
||||
|
||||
api("net.fabricmc:mapping-io:0.7.1") {
|
||||
api("net.fabricmc:mapping-io:0.8.0") {
|
||||
exclude("org.ow2.asm:asm")
|
||||
exclude("net.fabricmc:tiny-remapper")
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user