summaryrefslogtreecommitdiff
path: root/build-logic
diff options
context:
space:
mode:
authorHarsh Shandilya <me@msfjarvis.dev>2022-05-27 13:00:10 +0530
committerGitHub <noreply@github.com>2022-05-27 07:30:10 +0000
commit88151f4bdd29a0d29b182b11b37e79bf347b6955 (patch)
tree8e39e25df45507f0e42bb325153243ab75bcd321 /build-logic
parent53fb1eba9fe0ceba36a03fc04a33bb065af7e0c5 (diff)
Simplify BouncyCastle workaround and upgrade Fragment (#1926)
* Simplify bouncycastle workaround * Upgrade fragment-ktx to 1.5.x
Diffstat (limited to 'build-logic')
-rw-r--r--build-logic/kotlin-plugins/src/main/kotlin/com.github.android-password-store.bouncycastle-dependency.gradle.kts13
1 files changed, 0 insertions, 13 deletions
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)
- }
- }
-}