diff --git a/Jenkinsfile b/Jenkinsfile index 4ec1ecbf921..e3fef2eb371 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -14,7 +14,7 @@ pipeline { steps { container( 'jetty-build' ) { timeout( time: 120, unit: 'MINUTES' ) { - mavenBuild( "jdk8", "clean install -T3", "maven3", + mavenBuild( "jdk11", "clean install -T3", "maven3", [[parserName: 'Maven'], [parserName: 'Java']]) // Collect up the jacoco execution results (only on main build) jacoco inclusionPattern: '**/org/eclipse/jetty/**/*.class', @@ -38,17 +38,6 @@ pipeline { } } } - stage("Build / Test - JDK11") { - agent { node { label 'linux' } } - steps { - container( 'jetty-build' ) { - timeout( time: 120, unit: 'MINUTES' ) { - mavenBuild( "jdk11", "clean install -T3 -Djacoco.skip=true ", "maven3", - [[parserName: 'Maven'], [parserName: 'Java']]) - } - } - } - } stage("Build / Test - JDK14") { agent { node { label 'linux' } }