We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9e4cd94 commit 529c918Copy full SHA for 529c918
Makefile
@@ -27,9 +27,13 @@ GIT_BRANCH := $(shell git symbolic-ref --short -q HEAD)
27
all: build
28
29
.PHONY: ci-build
30
-ci-build: print-info clean set-maven
+ci-build: print-info clean
31
./mvnw --batch-mode clean package -Dmaven.test.skip=$(SKIP_TEST)
32
33
+.PHONY: ci-build-local
34
+ci-build-local: print-info clean set-maven
35
+ mvn --batch-mode clean package -Dmaven.test.skip=$(SKIP_TEST)
36
+
37
.PHONY: build
38
build: print-info clean
39
./scripts/build.sh
0 commit comments