fix(ci): use Maven wrapper instead of system mvn
Some checks failed
CI / build-and-test (pull_request) Failing after 16s

The Gitea runner image does not include Maven, causing 'mvn: command not found'.
Add Maven wrapper (mvnw) so CI downloads Maven automatically.

Closes #25
This commit is contained in:
2026-03-27 16:58:04 +01:00
parent 2db2ed19a0
commit 73156b69d7
3 changed files with 299 additions and 1 deletions

View File

@@ -20,7 +20,7 @@ jobs:
distribution: 'temurin'
- name: Build and test with coverage
run: mvn verify --batch-mode
run: ./mvnw verify --batch-mode
- name: Upload coverage report
if: always()