Fix parameter name which have been removed in recent version (#11446)
Signed-off-by: Olivier Lamy <olamy@apache.org>
This commit is contained in:
parent
535e772c7e
commit
1ca1c968da
|
@ -20,7 +20,7 @@ pipeline {
|
|||
mavenBuild( "jdk21", "clean install -Dspotbugs.skip=true -Djacoco.skip=true", "maven3")
|
||||
recordIssues id: "jdk21", name: "Static Analysis jdk21", aggregatingResults: true, enabledForFailure: true,
|
||||
tools: [mavenConsole(), java(), checkStyle(), javaDoc()],
|
||||
skipPublishingChecks: true, blameDisabled: true
|
||||
skipPublishingChecks: true, skipBlames: true
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -33,7 +33,7 @@ pipeline {
|
|||
mavenBuild( "jdk17", "clean install -Perrorprone", "maven3") // javadoc:javadoc
|
||||
recordIssues id: "analysis-jdk17", name: "Static Analysis jdk17", aggregatingResults: true, enabledForFailure: true,
|
||||
tools: [mavenConsole(), java(), checkStyle(), errorProne(), spotBugs(), javaDoc()],
|
||||
skipPublishingChecks: true, blameDisabled: true
|
||||
skipPublishingChecks: true, skipBlames: true
|
||||
recordCoverage id: "coverage-jdk17", name: "Coverage jdk17", tools: [[parser: 'JACOCO']], sourceCodeRetention: 'MODIFIED',
|
||||
sourceDirectories: [[path: 'src/main/java'], [path: 'target/generated-sources/ee8']]
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue