summaryrefslogtreecommitdiff
path: root/build.gradle
diff options
context:
space:
mode:
authorDavid Panić <david@panic.tk>2019-04-07 19:54:38 +0200
committerDavid Panić <david@panic.tk>2019-04-07 19:54:38 +0200
commit36a10031d2bc446ecec5c20931c46865daaead0a (patch)
tree22de1b135b728da9396a0e598f9f2234b62dcd95 /build.gradle
parent5a2abd102c0bda7ed24a50b7a802109d14dea79e (diff)
Updated gradle wrapper + added dependencies
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