mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-17 21:15:50 +00:00
added buildspec.yml
This commit is contained in:
parent
45f0628352
commit
5e2adad875
1 changed files with 19 additions and 0 deletions
19
buildspec.yml
Normal file
19
buildspec.yml
Normal file
|
@ -0,0 +1,19 @@
|
|||
version: 0.2
|
||||
|
||||
phases:
|
||||
install:
|
||||
commands:
|
||||
- echo Nothing to do in the install phase...
|
||||
pre_build:
|
||||
commands:
|
||||
- echo Nothing to do in the pre_build phase...
|
||||
build:
|
||||
commands:
|
||||
- echo Build started on `date`
|
||||
- mvn install
|
||||
post_build:
|
||||
commands:
|
||||
- echo Build completed on `date`
|
||||
artifacts:
|
||||
files:
|
||||
- target/petclinic.war
|
Loading…
Reference in a new issue