Remove Java 11 build.

One of the Maven plugins we use is compiled for Java 17, and though I still
think we should target release 11, I don't think it's a huge risk not to
compile _with_ a Java 11 JDK.
This commit is contained in:
Michael Bayne
2025-07-29 10:44:10 -07:00
parent 8d20bc4122
commit f067203baf
+2 -2
View File
@@ -12,7 +12,7 @@ jobs:
strategy:
matrix:
java: ['11', '17', '21']
java: ['17', '21']
runs-on: ubuntu-latest
env:
@@ -33,7 +33,7 @@ jobs:
run: mvn $MAVEN_CLI_OPTS clean verify
- name: Upload Test Results
uses: actions/upload-artifact@v4
if: ${{ always() && matrix.java == '11' }}
if: ${{ always() && matrix.java == '17' }}
with:
name: test-results
path: 'target/surefire-reports/TEST-*.xml'