From 34738a70f41272402dd1cffd25e6af284b8d6e90 Mon Sep 17 00:00:00 2001 From: Mike Primm Date: Sat, 18 May 2019 23:18:54 -0500 Subject: [PATCH] Add buildspec.yml --- buildspec.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 buildspec.yml diff --git a/buildspec.yml b/buildspec.yml new file mode 100644 index 00000000..fbb1132c --- /dev/null +++ b/buildspec.yml @@ -0,0 +1,13 @@ +version: 0.2 + +phases: + install: + runtime-versions: + java: openjdk8 + build: + commands: + - echo Build started on `date` + - ./gradlew clean build install +artifacts: + files: + - target/*.jar \ No newline at end of file