You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
206 B

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