chore: update gradle and dependencies

This commit is contained in:
Skylot
2024-09-24 16:57:24 +01:00
parent b5e3dcf70f
commit a7649dda7a
5 changed files with 12 additions and 12 deletions
@@ -14,16 +14,16 @@ version = jadxVersion
dependencies {
implementation("org.slf4j:slf4j-api:2.0.16")
compileOnly("org.jetbrains:annotations:24.1.0")
compileOnly("org.jetbrains:annotations:25.0.0")
testImplementation("ch.qos.logback:logback-classic:1.5.8")
testImplementation("org.assertj:assertj-core:3.26.3")
testImplementation("org.mockito:mockito-core:5.13.0")
testImplementation("org.mockito:mockito-core:5.14.0")
testImplementation("org.junit.jupiter:junit-jupiter:5.11.0")
testImplementation("org.junit.jupiter:junit-jupiter:5.11.1")
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
testCompileOnly("org.jetbrains:annotations:24.1.0")
testCompileOnly("org.jetbrains:annotations:25.0.0")
}
repositories {
@@ -9,10 +9,10 @@ repositories {
}
dependencies {
rewrite("org.openrewrite.recipe:rewrite-testing-frameworks:2.18.0")
rewrite("org.openrewrite.recipe:rewrite-logging-frameworks:2.13.0")
rewrite("org.openrewrite.recipe:rewrite-migrate-java:2.25.1")
rewrite("org.openrewrite.recipe:rewrite-static-analysis:1.16.0")
rewrite("org.openrewrite.recipe:rewrite-testing-frameworks:2.19.0")
rewrite("org.openrewrite.recipe:rewrite-logging-frameworks:2.14.0")
rewrite("org.openrewrite.recipe:rewrite-migrate-java:2.26.1")
rewrite("org.openrewrite.recipe:rewrite-static-analysis:1.17.0")
}
tasks {
+2 -2
View File
@@ -1,7 +1,7 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionSha256Sum=1541fa36599e12857140465f3c91a97409b4512501c26f9631fb113e392c5bd1
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.1-bin.zip
distributionSha256Sum=31c55713e40233a8303827ceb42ca48a47267a0ad4bab9177123121e71524c26
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
+1 -1
View File
@@ -9,7 +9,7 @@ dependencies {
implementation("com.android.tools.smali:smali-baksmali:3.0.8") {
exclude(group = "com.beust", module = "jcommander") // exclude old jcommander namespace
}
implementation("com.google.guava:guava:33.3.0-jre") // force the latest version for smali
implementation("com.google.guava:guava:33.3.1-jre") // force the latest version for smali
// compile smali files in tests
testImplementation("com.android.tools.smali:smali:3.0.8") {
@@ -10,5 +10,5 @@ dependencies {
implementation("com.android.tools.smali:smali:3.0.8") {
exclude(group = "com.beust", module = "jcommander") // exclude old jcommander namespace
}
implementation("com.google.guava:guava:33.3.0-jre") // force the latest version for smali
implementation("com.google.guava:guava:33.3.1-jre") // force the latest version for smali
}