From 552a5247a3747985c0ffbb1992db4e57f1fae9d2 Mon Sep 17 00:00:00 2001 From: Christopher Jones Date: Wed, 16 Aug 2017 07:48:04 -0500 Subject: [PATCH] Added buildspec.yml for AWS CodeBuild. --- buildspec.yml | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 buildspec.yml diff --git a/buildspec.yml b/buildspec.yml new file mode 100644 index 000000000..cb1d5be2b --- /dev/null +++ b/buildspec.yml @@ -0,0 +1,29 @@ +version: 0.2 + +#env: +# variables: +# key: "value" +# key: "value" + +phases: +# install: +# commands: +# - command +# - command +# pre_build: +# commands: +# - command +# - command + build: + commands: + - mvn clean package +# post_build: +# commands: +# - command +# - command +artifacts: + files: + - location + - location + discard-paths: yes + base-directory: location \ No newline at end of file