fix: Update Maven build command in Spring Boot instructions

This commit is contained in:
kartikdhiman 2025-10-12 22:11:15 +05:30
parent ff9ce27edf
commit f71b22f74d

View File

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