Skip to content

VaadinBoot: leave the server loading for classpath scanning otherwise… #337

VaadinBoot: leave the server loading for classpath scanning otherwise…

VaadinBoot: leave the server loading for classpath scanning otherwise… #337

Workflow file for this run

name: Gradle
on: [push, pull_request]
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
java: [11, 17] # Vaadin 23 classpath scanning doesn't seem to support temurin 21 but happily works with openjdk-21???
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v3
with:
java-version: ${{ matrix.java }}
distribution: 'temurin'
- name: Cache Gradle packages
uses: actions/cache@v2
with:
path: |
~/.gradle/caches
~/.gradle/wrapper
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle.kts', 'gradle/wrapper/gradle-wrapper.properties', 'gradle.properties') }}
- name: Build with Gradle
run: ./gradlew clean build '-Pvaadin.productionMode' --stacktrace --info --no-daemon