From d91c4319883fbbf4bcc97799f055a8c78a234e90 Mon Sep 17 00:00:00 2001 From: Jannis Mattheis Date: Mon, 18 Feb 2019 17:52:56 +0100 Subject: [PATCH] Use master for generating spec --- build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.gradle b/build.gradle index 6861a80..430b03a 100644 --- a/build.gradle +++ b/build.gradle @@ -20,7 +20,7 @@ plugins { } ext { - gotifyVersion = '1.1.7' + gotifyVersion = 'master' specLocation = "$buildDir/gotify.spec.json" } @@ -49,7 +49,7 @@ task downloadSpec { inputs.property 'version', gotifyVersion doFirst { buildDir.mkdirs() - download("https://raw.githubusercontent.com/gotify/server/v${gotifyVersion}/docs/spec.json", specLocation) + download("https://raw.githubusercontent.com/gotify/server/${gotifyVersion}/docs/spec.json", specLocation) } }