Expand the bungee module

This commit is contained in:
allenclan23 2020-10-16 23:58:41 -04:00 committed by Alexander Söderberg
parent d86973f227
commit f73b713658
11 changed files with 785 additions and 3 deletions

View file

@ -0,0 +1,22 @@
apply plugin: "com.github.johnrengelman.shadow"
def adventureVersion = "4.0.0-SNAPSHOT"
shadowJar {
dependencies {
exclude(dependency("net.md-5:bungeecord-api:1.8-SNAPSHOT"))
}
}
build.dependsOn(shadowJar)
dependencies {
/* Cloud */
implementation project(":cloud-bungee")
implementation project(":cloud-annotations")
implementation project(":cloud-minecraft-extras")
/* Extras */
implementation "net.kyori:adventure-platform-bungeecord:$adventureVersion"
/* Bungee*/
compileOnly 'net.md-5:bungeecord-api:1.8-SNAPSHOT'
}