From 36a10031d2bc446ecec5c20931c46865daaead0a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Pani=C4=87?= Date: Sun, 7 Apr 2019 19:54:38 +0200 Subject: Updated gradle wrapper + added dependencies --- build.gradle | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) (limited to 'build.gradle') 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 -- cgit v1.2.3