spring-cloud-config/Makefile

14 lines
180 B
Makefile
Raw Normal View History

2023-04-15 21:19:09 +00:00
.PHONY: build test
GRADLE_BIN=./gradlew
build:
# build without executing test
$(GRADLE_BIN) build -x test
test:
$(GRADLE_BIN) test
run-client:
$(GRADLE_BIN) client:bootRun