From 39ebd91cd5214a85506975c157240a70048bdae0 Mon Sep 17 00:00:00 2001 From: beedua Date: Sat, 7 Nov 2020 23:50:05 +0000 Subject: [PATCH] add buildspec --- 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..8914d962f --- /dev/null +++ b/buildspec.yml @@ -0,0 +1,19 @@ +version: 0.2 + +phases: + install: + runtime-versions: + java: openjdk8 + pre_build: + commands: + - echo Nothing to do in prebuild + build: + commands: + - echo Build started on `date` + - mvn package + post_build: + commands: + - echo Build completed on `date` +artifacts: + files: + - target/spring-petclinic-2.2.0.BUILD-SNAPSHOT.jar