From 66d4831c2c3c8c149b579e803af3adeb202c4e96 Mon Sep 17 00:00:00 2001 From: Darren McGhee Date: Fri, 17 Apr 2020 09:41:31 +0100 Subject: [PATCH] BuildSpec file added --- 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..e61902384 --- /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 \ No newline at end of file