From 461f0d5575e16f22436f39cfd92c438b7526e1fd Mon Sep 17 00:00:00 2001 From: Sofiene BEN KHEMIS Date: Sun, 9 May 2021 20:35:35 +0200 Subject: [PATCH] Update buildspec.yml --- buildspec.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 buildspec.yml diff --git a/buildspec.yml b/buildspec.yml new file mode 100644 index 0000000..4e32bca --- /dev/null +++ b/buildspec.yml @@ -0,0 +1,14 @@ +version: 0.2 + +phases: + build: + commands: + - echo Entered the build phase... + - mvn clean package + post_build: + commands: + - echo Build completed successfully +artifacts: + files: + - ms-launcher/target/ms-launcher-1.0-SNAPSHOT.jar + discard-paths: yes