Skip to content

Commit

Permalink
build with Java 21
Browse files Browse the repository at this point in the history
  • Loading branch information
thjaeckle committed Feb 25, 2025
1 parent 17cf3ec commit ced3cfe
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,16 +32,17 @@ jobs:
build:

runs-on: ubuntu-latest
strategy:
matrix:
java: [ '1.8' ]

steps:
- uses: actions/checkout@v4
- name: set up JDK ${{ matrix.java }}
uses: actions/setup-java@v1

- name: Set up JDK 21
uses: actions/setup-java@v4
with:
java-version: ${{ matrix.java }}
distribution: 'temurin'
java-version: 21
cache: 'maven'

- name: build with Maven
working-directory: java
run: mvn verify javadoc:jar source:jar --batch-mode --errors --quiet -DcreateJavadoc=true --file pom.xml --settings .maven.settings.xml

0 comments on commit ced3cfe

Please sign in to comment.