Fix: Removed enabling and disabeling xml/html reports in build.gradle - they threw an error

This commit is contained in:
JustFiesta 2024-07-01 14:15:51 +02:00
parent 0c5147e3bc
commit 1193fbd9b0

View file

@ -94,14 +94,6 @@ checkstyleNohttp {
enabled = true
}
tasks.withType(Checkstyle) {
reports {
xml.enabled false
html.enabled true
html.stylesheet resources.text.fromFile('config/xsl/checkstyle-custom.xsl')
}
}
tasks.named("formatMain").configure { dependsOn("checkstyleMain") }
tasks.named("formatMain").configure { dependsOn("checkstyleNohttp") }
tasks.named("formatTest").configure { dependsOn("checkstyleTest") }