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 ee37021 commit c734564Copy full SHA for c734564
.github/workflows/maven.yml
@@ -27,4 +27,17 @@ jobs:
27
distribution: 'temurin'
28
cache: maven
29
- name: Build (Vaadin 24)
30
- run: mvn -B package --file pom.xml
+ run: mvn -B package --file pom.xml
31
+
32
+ build-vaadin25:
33
+ runs-on: ubuntu-latest
34
+ steps:
35
+ - uses: actions/checkout@v3
36
+ - name: Set up JDK
37
+ uses: actions/setup-java@v3
38
+ with:
39
+ java-version: '21'
40
+ distribution: 'temurin'
41
+ cache: maven
42
+ - name: Build (Vaadin 25)
43
+ run: mvn -B package --file pom.xml -Pv25
0 commit comments