From 1c33371e4da918fcb7b1d0f5e96b29df7ca8a7d2 Mon Sep 17 00:00:00 2001 From: Achim Rohn Date: Sat, 16 May 2026 12:17:13 +0200 Subject: [PATCH] docs(readme): use Maven wrapper instead of bare mvn No system Maven is installed; backend/mvnw is the correct entry point. Updated run and verify-everything commands accordingly. Co-Authored-By: Claude Sonnet 4.6 --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 26a2f35..7c615d9 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,7 @@ Open two terminals: ```bash # Backend → http://localhost:8080 -mvn -f backend/pom.xml spring-boot:run +backend/mvnw -f backend/pom.xml spring-boot:run # Frontend → http://localhost:5173 (proxies /api → :8080) cd frontend && npm run dev @@ -50,9 +50,9 @@ mise run check # format-check + lint + test (both stacks) Without mise: ```bash -mvn -f backend/pom.xml spotless:check -q +backend/mvnw -f backend/pom.xml spotless:check -q cd frontend && npx biome check src -mvn -f backend/pom.xml test -q +backend/mvnw -f backend/pom.xml test -q cd frontend && npx vitest run ```