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 e765319 commit 0d6ed1bCopy full SHA for 0d6ed1b
.github/workflows/maven.yml
@@ -28,3 +28,16 @@ jobs:
28
cache: maven
29
- name: Build (Vaadin 24)
30
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