fix: Update Maven build command in Spring Boot instructions (#311)

This commit is contained in:
Kartik Dhiman 2025-10-13 04:55:03 +05:30 committed by GitHub
parent 46823d6ec6
commit 5338b43d84
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -53,6 +53,6 @@ applyTo: '**/*.java, **/*.kt'
## Build and Verification
- After adding or modifying code, verify the project continues to build successfully.
- If the project uses Maven, run `mvn clean install`.
- If the project uses Maven, run `mvn clean package`.
- If the project uses Gradle, run `./gradlew build` (or `gradlew.bat build` on Windows).
- Ensure all tests pass as part of the build.