mirror of
https://github.com/fankes/moshi.git
synced 2025-10-18 23:49:21 +08:00
Update formatters to latest
Ensure renovate can bump them by specifying full coordinates in toml.
This commit is contained in:
@@ -10,12 +10,15 @@ plugins {
|
||||
}
|
||||
|
||||
enum class TestMode {
|
||||
REFLECT, KAPT, KSP
|
||||
REFLECT,
|
||||
KAPT,
|
||||
KSP,
|
||||
}
|
||||
|
||||
val testMode = findProperty("kotlinTestMode")?.toString()
|
||||
?.let(TestMode::valueOf)
|
||||
?: KSP
|
||||
val testMode =
|
||||
findProperty("kotlinTestMode")?.toString()
|
||||
?.let(TestMode::valueOf)
|
||||
?: KSP
|
||||
|
||||
when (testMode) {
|
||||
REFLECT -> {
|
||||
|
Reference in New Issue
Block a user