compose-lobsters/build.gradle.kts
Harsh Shandilya 7e7609ca1f
build: force Moshi to latest version
Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
2021-02-28 20:47:41 +05:30

12 lines
251 B
Kotlin

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