build: force Moshi to latest version

Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
This commit is contained in:
Harsh Shandilya 2021-02-28 19:48:55 +05:30
parent fb2005fd83
commit 7e7609ca1f
No known key found for this signature in database
GPG key ID: 366D7BBAD1031E80

View file

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