Files
spring-rest-example/Makefile
T

14 lines
206 B
Makefile

default: war build_image show
war:
./mvnw clean install -DskipTests=true
test:
./mvnw clean test
build_image:
podman build -t spring-rest-example .
show:
podman run -p 8080:8080 spring-rest-example