Add checkstyle linter for java #27
@ -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"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user