diff --git a/.github/workflows/maven-verify.yml b/.github/workflows/maven-verify.yml index 82594f32f3..9683e3bb27 100644 --- a/.github/workflows/maven-verify.yml +++ b/.github/workflows/maven-verify.yml @@ -26,8 +26,8 @@ jobs: name: Verify uses: apache/maven-gh-actions-shared/.github/workflows/maven-verify.yml@v3 with: - jdk-matrix: '[ "8", "11", "17", "18" ]' - ff-jdk: '18' + jdk-matrix: '[ "8", "11", "17", "19" ]' + ff-jdk: '19' ff-goal: 'clean install site site:stage -P reporting -nsu' ff-site-goal: '-v' verify-goal: 'clean install -nsu -P run-its' diff --git a/Jenkinsfile b/Jenkinsfile index c3f1381912..7fd400529a 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -32,7 +32,7 @@ properties( final def oses = ['linux':'ubuntu && maven', 'windows':'windows-he'] final def mavens = env.BRANCH_NAME == 'master' ? ['3.8.x', '3.2.x'] : ['3.8.x'] // all non-EOL versions and the first EA -final def jdks = [18, 17, 11, 8] +final def jdks = [19, 17, 11, 8] final def options = ['-e', '-V', '-B', '-nsu', '-P', 'run-its'] final def goals = ['clean', 'install']