aboutsummaryrefslogtreecommitdiff
path: root/build.gradle
diff options
context:
space:
mode:
Diffstat (limited to 'build.gradle')
-rw-r--r--build.gradle5
1 files changed, 4 insertions, 1 deletions
diff --git a/build.gradle b/build.gradle
index c5c2913..8791ad3 100644
--- a/build.gradle
+++ b/build.gradle
@@ -14,12 +14,14 @@ repositories {
maven { url 'https://oss.sonatype.org/content/repositories/snapshots' }
maven { url 'https://hub.spigotmc.org/nexus/content/repositories/snapshots/' }
maven { url "https://repo.onarandombox.com/content/groups/public/" }
+ maven { url "https://repo.jeff-media.com/public/"}
}
dependencies {
compileOnly('org.spigotmc:spigot-api:1.19.2-R0.1-SNAPSHOT')
compileOnly('com.onarandombox.multiversecore:Multiverse-Core:4.3.1')
implementation('org.bstats:bstats-bukkit:3.0.2')
+ implementation('com.jeff_media:SpigotUpdateChecker:3.0.3')
}
// Disable generation of the normal JAR to reduce confusion and only generate the correctly shadowed JAR including bStats
@@ -28,6 +30,7 @@ jar.finalizedBy(shadowJar)
shadowJar {
archiveBaseName.set('Tumble')
archiveClassifier.set('')
- archiveVersion.set('1.0.3')
+ archiveVersion.set('1.0.4')
relocate 'org.bstats', 'com.MylesAndMore.bstats'
+ relocate 'com.jeff_media.updatechecker', 'com.MylesAndMore.updatechecker'
}