From 88151f4bdd29a0d29b182b11b37e79bf347b6955 Mon Sep 17 00:00:00 2001 From: Harsh Shandilya Date: Fri, 27 May 2022 13:00:10 +0530 Subject: Simplify BouncyCastle workaround and upgrade Fragment (#1926) * Simplify bouncycastle workaround * Upgrade fragment-ktx to 1.5.x --- ...ndroid-password-store.bouncycastle-dependency.gradle.kts | 13 ------------- 1 file changed, 13 deletions(-) delete mode 100644 build-logic/kotlin-plugins/src/main/kotlin/com.github.android-password-store.bouncycastle-dependency.gradle.kts (limited to 'build-logic/kotlin-plugins') diff --git a/build-logic/kotlin-plugins/src/main/kotlin/com.github.android-password-store.bouncycastle-dependency.gradle.kts b/build-logic/kotlin-plugins/src/main/kotlin/com.github.android-password-store.bouncycastle-dependency.gradle.kts deleted file mode 100644 index d0f54e59..00000000 --- a/build-logic/kotlin-plugins/src/main/kotlin/com.github.android-password-store.bouncycastle-dependency.gradle.kts +++ /dev/null @@ -1,13 +0,0 @@ -/** - * Bouncy Castle 1.71 changed their packaging to stop shipping jdk15on artifacts, and instead use - * multi-release JARs with the jdk15to18 suffix. This plugin replaces older dependencies to use the - * new version and artifact. - */ -configurations.all { - resolutionStrategy.eachDependency { - if (requested.group == "org.bouncycastle" && requested.name.contains("jdk15on")) { - val replacement = "${requested.group}:${requested.name.replace("jdk15on", "jdk15to18")}:1.71" - useTarget(replacement) - } - } -} -- cgit v1.2.3