opentcs/gradle/java-codequality.gradle
CaiXiang aa56926258
Some checks failed
Gradle Build / build (push) Has been cancelled
Initial commit
2024-11-30 18:36:13 +08:00

19 lines
468 B
Groovy

// SPDX-FileCopyrightText: The openTCS Authors
// SPDX-License-Identifier: MIT
apply plugin: 'checkstyle'
checkstyle {
toolVersion = '10.18.2'
configFile = rootProject.file("config/checkstyle/checkstyle.xml")
showViolations = false
}
project.afterEvaluate { project ->
project.tasks.withType(Checkstyle) {
reports {
html.stylesheet resources.text.fromFile(rootProject.file("config/checkstyle/checkstyle-noframes-severity-sorted.xsl"))
}
}
}