From 037ddbae5c52c4a40cc06fd3e30568dc58f4335e Mon Sep 17 00:00:00 2001 From: Jeremy Mailen Date: Wed, 17 Apr 2019 22:29:37 -0700 Subject: [PATCH] Make build compatible with jitpack **Why** See https://jitpack.io/docs/BUILDING/ Since both gradle and maven build files are present, jitpack defaults to using the gradle build and the install target does not work there. **What** - add jitpack.yml to specify that the maven build should be used instead **Testing** - validate by jitpack'ing repo with this change --- jitpack.yml | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 jitpack.yml diff --git a/jitpack.yml b/jitpack.yml new file mode 100644 index 0000000000..001cb4dd4f --- /dev/null +++ b/jitpack.yml @@ -0,0 +1,3 @@ +install: + - ./mvnw install -DskipTests +