Skip to content

Commit 7b47341

Browse files
committed
Enable quality gate for javadoc issues
An effort to make Jenkins complain about javadoc issues like the fixed with #1826 at the time of introducing them.
1 parent 578a453 commit 7b47341

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Jenkinsfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,11 @@ pipeline {
3737
recordIssues enabledForFailure: true, publishAllIssues:false, ignoreQualityGate:true,
3838
tools: [
3939
eclipse(name: 'Compiler', pattern: '**/target/compilelogs/*.xml'),
40+
javaDoc(),
4041
issues(name: 'API Tools', id: 'apitools', pattern: '**/target/apianalysis/*.xml')
4142
],
4243
qualityGates: [[threshold: 1, type: 'DELTA', unstable: true]]
43-
recordIssues enabledForFailure: true, publishAllIssues:false, tools: [mavenConsole(), javaDoc()]
44+
recordIssues enabledForFailure: true, publishAllIssues:false, tools: [mavenConsole()]
4445
}
4546
}
4647
}

0 commit comments

Comments
 (0)