Fix Jenkins build to not use `-Peclipse-release` (#8996)

Jenkins doesn't have gpg (the executable) or the keyring anyway.
This commit is contained in:
Joakim Erdfelt 2022-12-01 14:45:16 -06:00 committed by GitHub
parent be5ed905ee
commit 894a2ee4d9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

2
Jenkinsfile vendored
View File

@ -16,7 +16,7 @@ pipeline {
steps {
timeout( time: 180, unit: 'MINUTES' ) {
checkout scm
mavenBuild( "jdk19", "clean install -Dspotbugs.skip=true -Djacoco.skip=true -Peclipse-release", "maven3")
mavenBuild( "jdk19", "clean install -Dspotbugs.skip=true -Djacoco.skip=true", "maven3")
recordIssues id: "jdk19", name: "Static Analysis jdk19", aggregatingResults: true, enabledForFailure: true, tools: [mavenConsole(), java(), checkStyle()]
}
}