From 5338b43d849cae1edc132813742e96f324782ece Mon Sep 17 00:00:00 2001 From: Kartik Dhiman <59189590+kartikdhiman@users.noreply.github.com> Date: Mon, 13 Oct 2025 04:55:03 +0530 Subject: [PATCH] fix: Update Maven build command in Spring Boot instructions (#311) --- instructions/springboot.instructions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/instructions/springboot.instructions.md b/instructions/springboot.instructions.md index 8a85a07..2d26b71 100644 --- a/instructions/springboot.instructions.md +++ b/instructions/springboot.instructions.md @@ -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.