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