From 5e2adad87517719b0683fa93431d18b3bf0601a8 Mon Sep 17 00:00:00 2001 From: shaikkhajaibrahim Date: Tue, 13 Jun 2017 21:10:57 +0530 Subject: [PATCH] added buildspec.yml --- buildspec.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 buildspec.yml diff --git a/buildspec.yml b/buildspec.yml new file mode 100644 index 000000000..185928259 --- /dev/null +++ b/buildspec.yml @@ -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