KoverXmlTaskConfig

Configure Kover XML Report.

Example:

...
xml {
// Generate an XML report when running the `check` task
onCheck = true

// XML report title (the location depends on the library)
title = "Custom XML report title"

// Specify file to generate XML report
xmlFile = layout.buildDirectory.file("my-xml-report.xml")
}
...

Properties

Link copied to clipboard
abstract val onCheck: Property<Boolean>

Generate an XML report when running the check task.

Link copied to clipboard
abstract val title: Property<String>

Specify title in XML report.

Link copied to clipboard
abstract val xmlFile: RegularFileProperty

File for saving generated XML report.