From fa777ca6e0353ce39c3f158081d6c08156d4727d Mon Sep 17 00:00:00 2001 From: Giovanni Harting <539@idlegandalf.com> Date: Thu, 21 Jul 2016 18:08:55 +0200 Subject: [PATCH] fixed some derps --- build.gradle | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build.gradle b/build.gradle index accfe71..c3c0e4a 100644 --- a/build.gradle +++ b/build.gradle @@ -95,7 +95,7 @@ task buildInfo { } -version = project.tag ? "${mc_version}-${project.tag}" : "${mc_version}-snapshot" +version = project.ext.tag ? "${mc_version}-${project.ext.tag}" : "${mc_version}-snapshot" //noinspection GroovyAssignabilityCheck processResources { @@ -130,11 +130,11 @@ curseforge { apiKey = System.getenv().CURSE_API_KEY ? System.getenv().CURSE_API_KEY : "devBuild" project { id = '247661' - changelog = project.changes // A file can also be set using: changelog = file('changelog.txt') + changelog = project.ext.changes // A file can also be set using: changelog = file('changelog.txt') releaseType = 'release' mainArtifact(jar) { - displayName = "taiga-${project.tag}" + displayName = "taiga-${project.ext.tag}" } } }