mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-23 08:15: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."; \
|
||||
exit 1; \
|
||||
fi
|
||||
if ! command which mvn &> /dev/null; then \
|
||||
echo "maven is not installed. Please install it first."; \
|
||||
exit 1; \
|
||||
fi
|
||||
|
||||
docker: validate
|
||||
if ! command docker info &> /dev/null; then \
|
||||
|
@ -34,6 +38,7 @@ cluster: docker
|
|||
fi \
|
||||
|
||||
build: cluster
|
||||
mvn install
|
||||
minikube image build -t petclinic:latest .
|
||||
|
||||
deploy: build
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
api:
|
||||
url: https://intuit.contrastsecurity.com/Contrast
|
||||
api_key:
|
||||
service_key:
|
||||
user_name:
|
||||
agent:
|
||||
java:
|
||||
scan_all_classes: false
|
||||
scan_all_code_sources: false
|
||||
logger:
|
||||
stdout: true
|
||||
|
|
Loading…
Reference in a new issue