Add limitation for changed files list for JPS build report

#KT-63549
This commit is contained in:
Nataliya.Valtman
2023-12-04 12:22:05 +01:00
committed by Space Team
parent 6eeb459076
commit 4294c7bab7
4 changed files with 19 additions and 7 deletions
@@ -42,7 +42,10 @@ internal fun reportingSettings(project: Project): ReportingSettings {
project.rootProject.buildDir
}).resolve("reports/kotlin-build")
val includeMetricsInReport = properties.buildReportMetrics || buildReportMode == BuildReportMode.VERBOSE
FileReportSettings(buildReportDir = buildReportDir, includeMetricsInReport = includeMetricsInReport)
FileReportSettings(
buildReportDir = buildReportDir,
includeMetricsInReport = includeMetricsInReport
)
} else {
null
}