We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c21d054 commit 51103cdCopy full SHA for 51103cd
.github/workflows/maven.yml
@@ -9,6 +9,7 @@ jobs:
9
strategy:
10
matrix:
11
platform: [ubuntu-latest, macos-latest, windows-latest]
12
+ jdk: [11, 17]
13
runs-on: ${{ matrix.platform }}
14
steps:
15
- uses: actions/checkout@v3
@@ -21,11 +22,11 @@ jobs:
21
22
path: ~/.m2/repository
23
key: maven-cache-${{ hashFiles('**/pom.xml') }}
24
- - name: Set up JDK 11
25
+ - name: Set up JDK ${{ matrix.jdk }}
26
uses: actions/setup-java@v3
27
with:
28
distribution: temurin
- java-version: 11
29
+ java-version: ${{ matrix.jdk }}
30
31
- name: Build with Maven
32
run: ./mvnw --errors --no-transfer-progress install
0 commit comments