Fix checkStyle to checkstyle (case sensitivity)

This commit is contained in:
Yuxin Deng 2025-11-23 19:44:49 -05:00
parent 4a083367d4
commit c35fcccb1b

2
Jenkinsfile vendored
View file

@ -133,7 +133,7 @@ pipeline {
always {
recordIssues(
enabledForFailure: true,
tool: checkStyle(pattern: '**/target/checkstyle-result.xml')
tool: checkstyle(pattern: '**/target/checkstyle-result.xml')
)
}
}