summaryrefslogtreecommitdiff
path: root/build.gradle
diff options
context:
space:
mode:
Diffstat (limited to 'build.gradle')
-rw-r--r--build.gradle12
1 files changed, 8 insertions, 4 deletions
diff --git a/build.gradle b/build.gradle
index 7d53907..e35eee1 100644
--- a/build.gradle
+++ b/build.gradle
@@ -1,5 +1,10 @@
apply plugin: "java"
+configurations.all {
+ // Check for updates every build
+ resolutionStrategy.cacheChangingModulesFor 0, 'seconds'
+}
+
repositories {
jcenter()
maven { url "https://jitpack.io" }
@@ -9,10 +14,9 @@ repositories {
}
dependencies {
- implementation "com.github.RedstonerServer:ModuleLoader:gradle-SNAPSHOT"
- implementation "com.github.RedstonerServer:CommandManager:master-SNAPSHOT"
- implementation "com.github.RedstonerServer:ChatAPI:master-SNAPSHOT"
- implementation "com.github.RedstonerServer:ChestAPI:master-SNAPSHOT"
+ implementation "com.github.RedstonerServer:ModuleLoader:v5.2.1"
+ implementation "com.github.RedstonerServer:CommandManager:v1"
+ implementation "com.github.RedstonerServer:ChatAPI:v1"
compileOnly 'org.spigotmc:spigot-api:1.13.2-R0.1-SNAPSHOT'
}