Mirror von
https://github.com/PaperMC/Velocity.git
synchronisiert 2024-11-17 13:30:17 +01:00
12 Zeilen
376 B
Groovy
12 Zeilen
376 B
Groovy
checkstyle {
|
|
def configDirectory = new File(project.rootDir, ["config", "checkstyle"].join(File.separator))
|
|
|
|
toolVersion '8.39'
|
|
configFile new File(configDirectory, "checkstyle.xml")
|
|
configProperties = [configDirectory: configDirectory.getAbsolutePath()]
|
|
|
|
// The build should immediately fail if we have errors.
|
|
maxErrors = 0
|
|
maxWarnings = 0
|
|
}
|