Skip to content

Commit f9fbf39

Browse files
committed
Be less strict with the required com.squareup.moshi:moshi* dependency versions
1 parent 1c58f93 commit f9fbf39

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

build.gradle.kts

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,17 @@ dependencies {
4949
}
5050
}
5151
}
52+
listOf(
53+
"com.squareup.moshi:moshi",
54+
"com.squareup.moshi:moshi-kotlin"
55+
).onEach {
56+
testRuntimeOnly(it) {
57+
version {
58+
strictly("[1.12.0,2)")
59+
prefer("1.13.0")
60+
}
61+
}
62+
}
5263
}
5364
implementation("org.jetbrains.kotlin:kotlin-stdlib:1.6.10")
5465
implementation("org.jetbrains.kotlin:kotlin-reflect:1.6.10")

0 commit comments

Comments
 (0)