diff options
| author | Giovanni Harting <539@idlegandalf.com> | 2016-07-21 18:08:55 +0200 |
|---|---|---|
| committer | Giovanni Harting <539@idlegandalf.com> | 2016-07-21 18:08:55 +0200 |
| commit | fa777ca6e0353ce39c3f158081d6c08156d4727d (patch) | |
| tree | 313bbbb5df5d34dc37db23608a65c5d954fe53f1 | |
| parent | a3f53b1593c24f064e9a31aa914bffaadc8658af (diff) | |
fixed some derps
| -rw-r--r-- | build.gradle | 6 |
1 files 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}" } } } |
