From a56083d516f68f0ab97da3ea0a7fbaf9f4402a5d Mon Sep 17 00:00:00 2001 From: unknown Date: Mon, 14 Aug 2023 16:11:24 -0400 Subject: [PATCH] add buildspec.yml file --- 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..cab543289 --- /dev/null +++ b/buildspec.yml @@ -0,0 +1,19 @@ +version: 0.2 + +phases: + install: + runtimeversion: + java:openjdk8 + prebuild: + 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-petckinic-2.2.0.BUILD-SNAPSHOT.jar