The CI pipeline fails with mvn: command not found (exit code 127) because the Gitea runner image docker.gitea.com/runner-images:ubuntu-latest does not ship Maven pre-installed (unlike GitHub-hosted runners).
Fix: add the Maven wrapper (mvnw + .mvn/wrapper/) to the repo and use ./mvnw in the CI workflow instead of mvn.
The CI pipeline fails with `mvn: command not found` (exit code 127) because the Gitea runner image `docker.gitea.com/runner-images:ubuntu-latest` does not ship Maven pre-installed (unlike GitHub-hosted runners).
Fix: add the Maven wrapper (`mvnw` + `.mvn/wrapper/`) to the repo and use `./mvnw` in the CI workflow instead of `mvn`.
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
The CI pipeline fails with
mvn: command not found(exit code 127) because the Gitea runner imagedocker.gitea.com/runner-images:ubuntu-latestdoes not ship Maven pre-installed (unlike GitHub-hosted runners).Fix: add the Maven wrapper (
mvnw+.mvn/wrapper/) to the repo and use./mvnwin the CI workflow instead ofmvn.