From 4e461e717d9748e8037f2929369c60a13abc6aad Mon Sep 17 00:00:00 2001 From: Michael Moen Allport Date: Wed, 15 Nov 2023 17:39:31 +0100 Subject: [PATCH] Change Makefile command 'build' -> 'build-mvn' --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 2286ce9..f7a07d2 100644 --- a/Makefile +++ b/Makefile @@ -1,8 +1,8 @@ .PHONY: default default: | help -.PHONY: build -build: ## Build project and install to you local maven repo +.PHONY: build-mvn +build-mvn: ## Build project and install to you local maven repo mvn clean install .PHONY: release-dryrun