build: add checkstyle plugin and update reports settings

This commit is contained in:
Jan K9f 2025-02-13 11:49:42 +01:00
parent c49f7ca55d
commit 193f444f4f
Signed by: jank
GPG key ID: 22BEAC760B3333D6

View file

@ -2,6 +2,17 @@ plugins {
java
id("org.springframework.boot") version "3.3.3"
id("io.spring.dependency-management") version "1.1.6"
id("checkstyle")
}
tasks.withType<Checkstyle> {
reports {
// Disable HTML report
html.required.set(false)
// Disable XML report
xml.required.set(false)
}
}
group = "de.szut"