summaryrefslogtreecommitdiff
path: root/build.gradle
diff options
context:
space:
mode:
Diffstat (limited to 'build.gradle')
-rw-r--r--build.gradle11
1 files changed, 5 insertions, 6 deletions
diff --git a/build.gradle b/build.gradle
index bc4ba04..5d62467 100644
--- a/build.gradle
+++ b/build.gradle
@@ -19,10 +19,9 @@ repositories {
}
dependencies {
- 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:CommandManager:v1"
+ implementation "com.github.RedstonerServer:ChatAPI:v1"
+
compile group: 'org.apache.logging.log4j', name: 'log4j-1.2-api', version: '2.11.1'
compileOnly 'org.spigotmc:spigot-api:1.13.2-R0.1-SNAPSHOT'
@@ -30,11 +29,11 @@ dependencies {
jar {
manifest {
- attributes "Class-Path": "../lib/CommandManager.jar ../lib/ChatAPI.jar ../lib/ChestAPI.jar"
+ attributes "Class-Path": "../lib/CommandManager.jar ../lib/ChatAPI.jar"
}
}
task sourceJar(type: Jar, dependsOn: classes) {
classifier 'sources'
from sourceSets.main.allSource
-}
+} \ No newline at end of file