From 59b21557a77bc2c40a77a2c94ad5afc975106984 Mon Sep 17 00:00:00 2001 From: Joakim Erdfelt Date: Sat, 28 Aug 2021 07:10:26 -0500 Subject: [PATCH] Build on jdk17 now. (#6675) * Build on jdk17 now. * Bump spotbugs to 4.3.0 Signed-off-by: Joakim Erdfelt --- Jenkinsfile | 6 +++--- pom.xml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 4b3409f275c3..a653f48166f2 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -49,13 +49,13 @@ pipeline { } } - stage("Build / Test - JDK16") { + stage("Build / Test - JDK17") { agent { node { label 'linux' } } steps { container( 'jetty-build' ) { timeout( time: 240, unit: 'MINUTES' ) { - mavenBuild( "jdk16", "clean install -Djacoco.skip=true", "maven3") - recordIssues id: "jdk16", name: "Static Analysis jdk16", aggregatingResults: true, enabledForFailure: true, tools: [mavenConsole(), java(), checkStyle(), spotBugs(), pmdParser()] + mavenBuild( "jdk17", "clean install -Djacoco.skip=true", "maven3") + recordIssues id: "jdk17", name: "Static Analysis jdk17", aggregatingResults: true, enabledForFailure: true, tools: [mavenConsole(), java(), checkStyle(), spotBugs(), pmdParser()] } } } diff --git a/pom.xml b/pom.xml index d0bf802a30d8..11acbe7647df 100644 --- a/pom.xml +++ b/pom.xml @@ -1331,7 +1331,7 @@ com.github.spotbugs spotbugs-maven-plugin - 4.1.4 + 4.3.0 org.apache.maven.plugins