jdk21 build to replace 19 (#10161)
Signed-off-by: Olivier Lamy <olamy@apache.org>
This commit is contained in:
parent
3d24929287
commit
a03c5251df
|
@ -12,13 +12,13 @@ pipeline {
|
|||
stages {
|
||||
stage("Parallel Stage") {
|
||||
parallel {
|
||||
stage("Build / Test - JDK19") {
|
||||
stage("Build / Test - JDK21") {
|
||||
agent { node { label 'linux' } }
|
||||
steps {
|
||||
timeout( time: 180, unit: 'MINUTES' ) {
|
||||
checkout scm
|
||||
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()]
|
||||
mavenBuild( "jdk21", "clean install -Dspotbugs.skip=true -Djacoco.skip=true", "maven3")
|
||||
recordIssues id: "jdk21", name: "Static Analysis jdk19", aggregatingResults: true, enabledForFailure: true, tools: [mavenConsole(), java(), checkStyle()]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
2
pom.xml
2
pom.xml
|
@ -184,7 +184,7 @@
|
|||
<maven.surefire.plugin.version>3.1.2</maven.surefire.plugin.version>
|
||||
<maven.source.plugin.version>3.3.0</maven.source.plugin.version>
|
||||
<maven.war.plugin.version>3.4.0</maven.war.plugin.version>
|
||||
<spotbugs.maven.plugin.version>4.7.2.0</spotbugs.maven.plugin.version>
|
||||
<spotbugs.maven.plugin.version>4.7.3.5</spotbugs.maven.plugin.version>
|
||||
<versions.maven.plugin.version>2.14.2</versions.maven.plugin.version>
|
||||
|
||||
<!-- testing -->
|
||||
|
|
Loading…
Reference in New Issue