Add JSON output type for build reports

#KT-65792 Fixed
This commit is contained in:
Nataliya.Valtman
2024-01-24 11:47:36 +01:00
committed by Space Team
parent f493df42a9
commit 5885514c3d
21 changed files with 515 additions and 330 deletions
@@ -52,6 +52,7 @@ enum class BooleanMetrics(val type: BooleanOverridePolicy, val anonymization: Bo
BUILD_SCAN_BUILD_REPORT(OR, SAFE),
HTTP_BUILD_REPORT(OR, SAFE),
SINGLE_FILE_BUILD_REPORT(OR, SAFE),
JSON_BUILD_REPORT(OR, SAFE),
//Dokka features
ENABLED_DOKKA(OR, SAFE),
@@ -80,6 +81,6 @@ enum class BooleanMetrics(val type: BooleanOverridePolicy, val anonymization: Bo
COCOAPODS_PLUGIN_ENABLED(OR, SAFE);
companion object {
const val VERSION = 3
const val VERSION = 4
}
}