summaryrefslogtreecommitdiff
path: root/build.gradle
diff options
context:
space:
mode:
authorDavid <david@panic.tk>2018-11-07 23:50:06 +0100
committerDavid <david@panic.tk>2018-11-07 23:50:06 +0100
commit604cf01967ede98bf5024e4926bb0777fc4e8eee (patch)
treee2fa63d7e683769ee3bf3eddc75280648e92eb04 /build.gradle
parente86c52ef7c0e1e33c6af0e8674b038976bec11cc (diff)
Converted Modules to gradle
Diffstat (limited to 'build.gradle')
-rw-r--r--build.gradle17
1 files changed, 17 insertions, 0 deletions
diff --git a/build.gradle b/build.gradle
new file mode 100644
index 0000000..ad837e5
--- /dev/null
+++ b/build.gradle
@@ -0,0 +1,17 @@
+apply plugin: "java"
+
+repositories {
+ jcenter()
+ maven { url "https://jitpack.io" }
+
+ maven { url "https://hub.spigotmc.org/nexus/content/repositories/snapshots/" }
+ maven { url "https://oss.sonatype.org/content/repositories/snapshots" }
+}
+
+dependencies {
+ implementation "com.github.RedstonerServer:CommandManager:master-SNAPSHOT"
+ implementation "com.github.RedstonerServer:ChatAPI:master-SNAPSHOT"
+ implementation "com.github.RedstonerServer:ChestAPI:master-SNAPSHOT"
+
+ compileOnly 'org.spigotmc:spigot-api:1.13.1-R0.1-SNAPSHOT'
+} \ No newline at end of file