checkstyle report enabled

Signed-off-by: olivier lamy <oliver.lamy@gmail.com>
This commit is contained in:
olivier lamy 2019-06-27 07:05:50 +10:00
parent 69b6160445
commit 644aeca364
1 changed files with 4 additions and 4 deletions

8
Jenkinsfile vendored
View File

@ -60,19 +60,19 @@ pipeline {
}
}
*/
/*
stage("Checkstyle ") {
stage("Checkstyle") {
agent { node { label 'linux' } }
options { timeout(time: 30, unit: 'MINUTES') }
steps {
mavenBuild("jdk11", "install checkstyle:check -DskipTests", "maven3", true)
recordIssues(
enabledForFailure: true, aggregatingResults: true,
tools: [java(), checkStyle(pattern: '** /target/checkstyle-result.xml', reportEncoding: 'UTF-8')]
tools: [java(), checkStyle(pattern: '**/target/checkstyle-result.xml', reportEncoding: 'UTF-8')]
)
}
}
*/
}
}
}