Skip to content

Commit

Permalink
do not build with jdk11
Browse files Browse the repository at this point in the history
Signed-off-by: Olivier Lamy <oliver.lamy@gmail.com>
  • Loading branch information
olamy committed Sep 1, 2021
1 parent 5d40225 commit dfc816c
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -37,17 +37,17 @@ pipeline {
}
}

stage("Build / Test - JDK11") {
agent { node { label 'linux' } }
steps {
container( 'jetty-build' ) {
timeout( time: 240, unit: 'MINUTES' ) {
mavenBuild( "jdk11", "clean install -Djacoco.skip=true -Perrorprone", "maven3")
recordIssues id: "jdk11", name: "Static Analysis jdk11", aggregatingResults: true, enabledForFailure: true, tools: [mavenConsole(), java(), checkStyle(), spotBugs(), pmdParser(), errorProne()]
}
}
}
}
// stage("Build / Test - JDK11") {
// agent { node { label 'linux' } }
// steps {
// container( 'jetty-build' ) {
// timeout( time: 240, unit: 'MINUTES' ) {
// mavenBuild( "jdk11", "clean install -Djacoco.skip=true -Perrorprone", "maven3")
// recordIssues id: "jdk11", name: "Static Analysis jdk11", aggregatingResults: true, enabledForFailure: true, tools: [mavenConsole(), java(), checkStyle(), spotBugs(), pmdParser(), errorProne()]
// }
// }
// }
// }

stage("Build Javadoc") {
agent { node { label 'linux' } }
Expand Down

0 comments on commit dfc816c

Please sign in to comment.