From 7e7609ca1fa1487f75d4c44c9f7ead1ee16ce4ed Mon Sep 17 00:00:00 2001 From: Harsh Shandilya Date: Sun, 28 Feb 2021 19:48:55 +0530 Subject: [PATCH] build: force Moshi to latest version Signed-off-by: Harsh Shandilya --- build.gradle.kts | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/build.gradle.kts b/build.gradle.kts index d3d9db38..ee3d8c2b 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -1,3 +1,12 @@ plugins { `lobsters-plugin` } + +subprojects { + configurations.configureEach { + resolutionStrategy { + // Retrofit depends on a very old version of Moshi that causes moshi-ksp to fail + force(Dependencies.ThirdParty.Moshi.lib) + } + } +}