spring-cloud-config/Makefile

14 lines
180 B
Makefile

.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