build: add checkstyle plugin and update reports settings
Some checks failed
CI / eslint (pull_request) Successful in 19s
CI / prettier (pull_request) Successful in 21s
CI / test-build (pull_request) Successful in 25s
CI / Checkstyle Main (pull_request) Failing after 1m59s

This commit is contained in:
We ball 2025-02-13 11:49:42 +01:00
parent c49f7ca55d
commit 193f444f4f
Signed by: jank1619
GPG Key ID: 22BEAC760B3333D6

View File

@ -2,6 +2,17 @@ plugins {
java java
id("org.springframework.boot") version "3.3.3" id("org.springframework.boot") version "3.3.3"
id("io.spring.dependency-management") version "1.1.6" 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" group = "de.szut"