Skip to content

Commit

Permalink
Remove java 11 from builds (#696)
Browse files Browse the repository at this point in the history
  • Loading branch information
ErikRehmTT committed May 14, 2024
1 parent a4529e0 commit e1d10b9
Showing 3 changed files with 3 additions and 4 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/maven.yml
Original file line number Diff line number Diff line change
@@ -12,9 +12,10 @@ jobs:
build:
name: Build on JDK ${{ matrix.java }} and ${{ matrix.os }}
runs-on: ${{ matrix.os }}
continue-on-error: true
strategy:
matrix:
java: [11, 17, 21]
java: [17, 21]
os: [ubuntu-latest, windows-latest]
steps:
- name: Checkout
2 changes: 0 additions & 2 deletions Jenkinsfile
Original file line number Diff line number Diff line change
@@ -7,8 +7,6 @@
buildPlugin(
useContainerAgent: true, // Set to `false` if you need to use Docker for containerized tests
configurations: [
[platform: 'linux', jdk: 11],
[platform: 'windows', jdk: 11],
[platform: 'linux', jdk: 17],
[platform: 'windows', jdk: 17],
[platform: 'linux', jdk: 21],
2 changes: 1 addition & 1 deletion Jenkinsfile.internal
Original file line number Diff line number Diff line change
@@ -9,7 +9,7 @@
Prerequisites
=============
* Maven tool installation configured as M3
* JDK tool installation configured as JDK11
* JDK tool installation configured as JDK17
* Global environment variable EMAIL_RECIPIENTS set
* Jenkins plugins installed:
- https://plugins.jenkins.io/jacoco

0 comments on commit e1d10b9

Please sign in to comment.