mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-24 00:35:49 +00:00
updates to Makefile
This commit is contained in:
parent
8d1167776f
commit
6c1097c022
2 changed files with 11 additions and 5 deletions
5
Makefile
5
Makefile
|
@ -20,6 +20,10 @@ validate:
|
||||||
echo "md5sum is not installed. Please install it first."; \
|
echo "md5sum is not installed. Please install it first."; \
|
||||||
exit 1; \
|
exit 1; \
|
||||||
fi
|
fi
|
||||||
|
if ! command which mvn &> /dev/null; then \
|
||||||
|
echo "maven is not installed. Please install it first."; \
|
||||||
|
exit 1; \
|
||||||
|
fi
|
||||||
|
|
||||||
docker: validate
|
docker: validate
|
||||||
if ! command docker info &> /dev/null; then \
|
if ! command docker info &> /dev/null; then \
|
||||||
|
@ -34,6 +38,7 @@ cluster: docker
|
||||||
fi \
|
fi \
|
||||||
|
|
||||||
build: cluster
|
build: cluster
|
||||||
|
mvn install
|
||||||
minikube image build -t petclinic:latest .
|
minikube image build -t petclinic:latest .
|
||||||
|
|
||||||
deploy: build
|
deploy: build
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
api:
|
agent:
|
||||||
url: https://intuit.contrastsecurity.com/Contrast
|
java:
|
||||||
api_key:
|
scan_all_classes: false
|
||||||
service_key:
|
scan_all_code_sources: false
|
||||||
user_name:
|
logger:
|
||||||
|
stdout: true
|
||||||
|
|
Loading…
Reference in a new issue