From 05a26ff8b2b808e508e3286673ed90230c4a073c Mon Sep 17 00:00:00 2001 From: Brian Fopiano Date: Sat, 13 Aug 2022 03:20:42 -0700 Subject: [PATCH] Revert "helping with version Nomners" This reverts commit 0765c21cefc71fa9c975ef626274e04af6e7d1f4. --- build.gradle | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build.gradle b/build.gradle index 59ad41d08..bab32d790 100644 --- a/build.gradle +++ b/build.gradle @@ -77,7 +77,7 @@ repositories { maven { url "https://maven.enginehub.org/repo/" } mavenCentral() mavenLocal() - maven { url "https://jitpack.io" } + maven { url "https://jitpack.io"} } /** @@ -300,7 +300,7 @@ def registerCustomOutputTask(name, path) { from(new File(buildDir, "Iris-" + version + ".jar")) into(file(path)) rename { String fileName -> - fileName.replace("Iris-" + version + ".jar", "Iris-" + version + ".jar") + fileName.replace("Iris-" + version + ".jar", "Iris.jar") } } } @@ -317,7 +317,7 @@ def registerCustomOutputTaskUnix(name, path) { from(new File(buildDir, "Iris-" + version + ".jar")) into(file(path)) rename { String fileName -> - fileName.replace("Iris-" + version + ".jar", "Iris-" + version + ".jar") + fileName.replace("Iris-" + version + ".jar", "Iris.jar") } } }