From 78ac177dbecd63a3de8230a48b0f63ac5635744b Mon Sep 17 00:00:00 2001 From: jcardozo Date: Mon, 16 Sep 2024 13:16:11 +0200 Subject: [PATCH] Add start and stop aliases to trigger mvn spring-boot commands This commit introduces two new aliases to the devbox.json file: "start" and "stop". These scripts utilize Maven commands to manage the spring-boot application lifecycle, allowing developers to easily start and stop the application. --- devbox.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/devbox.json b/devbox.json index 908ec09..de8f632 100644 --- a/devbox.json +++ b/devbox.json @@ -11,6 +11,12 @@ "scripts": { "test": [ "mvn test" + ], + "start": [ + "mvn spring-boot:start" + ], + "stop": [ + "mvn spring-boot:stop" ] } }