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) + } + } +}