added buildspec.yml

This commit is contained in:
shaikkhajaibrahim 2017-06-13 21:10:57 +05:30
parent 45f0628352
commit 5e2adad875

19
buildspec.yml Normal file
View 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