summaryrefslogtreecommitdiff
path: root/build.gradle
diff options
context:
space:
mode:
Diffstat (limited to 'build.gradle')
-rw-r--r--build.gradle13
1 files changed, 12 insertions, 1 deletions
diff --git a/build.gradle b/build.gradle
index 0f8d340..c47df60 100644
--- a/build.gradle
+++ b/build.gradle
@@ -1,5 +1,7 @@
plugins {
+ id 'com.github.johnrengelman.shadow' version '5.0.0'
id 'java'
+ id 'idea'
}
group 'com.redstoner'
@@ -7,10 +9,19 @@ version '1.0-SNAPSHOT'
sourceCompatibility = 1.8
+
repositories {
mavenCentral()
+
+ maven { url 'https://oss.sonatype.org/content/repositories/snapshots' }
+ maven { url 'https://jitpack.io' }
}
dependencies {
- testCompile group: 'junit', name: 'junit', version: '4.12'
+ implementation 'net.md-5:bungeecord-api:1.13-SNAPSHOT'
+ compile 'com.github.Mojang:AccountsClient:master-SNAPSHOT'
}
+
+shadowJar {
+ configurations = [project.configurations.compile]
+} \ No newline at end of file