aboutsummaryrefslogtreecommitdiff
path: root/app/build.gradle.kts
diff options
context:
space:
mode:
authorrenovate[bot] <29139614+renovate[bot]@users.noreply.github.com>2023-09-04 18:50:19 +0000
committerGitHub <noreply@github.com>2023-09-04 18:50:19 +0000
commit1da4c42220e88b54211ab891efbb2c5bf20477f7 (patch)
tree3af7161d79162a9f7f729fd3d3537110652cf9be /app/build.gradle.kts
parente94f3446855b7b2dac4aa4a9bee974734d05912a (diff)
fix(deps): update dependency com.hierynomus:sshj to v0.36.0 (#2670)
* fix(deps): update dependency com.hierynomus:sshj to v0.36.0 * refactor(build): drop unnecessary explicit dependency * chore(idea): cruft * fix(app): ensure SLF4J v1 is used * fix(build): disable illegal BindsCanBeExtensionFunction lint * chore: refresh Lint baselines --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Harsh Shandilya <me@msfjarvis.dev>
Diffstat (limited to 'app/build.gradle.kts')
-rw-r--r--app/build.gradle.kts7
1 files changed, 5 insertions, 2 deletions
diff --git a/app/build.gradle.kts b/app/build.gradle.kts
index 4f825aad..9a469213 100644
--- a/app/build.gradle.kts
+++ b/app/build.gradle.kts
@@ -86,9 +86,8 @@ dependencies {
implementation(libs.thirdparty.logcat)
implementation(libs.thirdparty.modernAndroidPrefs)
implementation(libs.thirdparty.plumber)
- implementation(libs.thirdparty.sshj) { exclude(group = "org.bouncycastle") }
+ implementation(libs.thirdparty.sshj)
implementation(libs.thirdparty.bouncycastle.bcprov)
- implementation(libs.thirdparty.bouncycastle.bcpkix)
if (snapshot.snapshot) {
implementation(libs.thirdparty.whatthestack)
@@ -96,6 +95,10 @@ dependencies {
debugImplementation(libs.thirdparty.whatthestack)
}
+ implementation(libs.thirdparty.slf4j.api) {
+ because("SSHJ now uses SLF4J 2.0 which we don't want")
+ }
+
implementation(libs.thirdparty.leakcanary.core)
nonFreeImplementation(libs.thirdparty.nonfree.googlePlayAuthApiPhone)
nonFreeImplementation(libs.thirdparty.nonfree.sentry)