Expand the bungee module
This commit is contained in:
parent
d86973f227
commit
f73b713658
11 changed files with 785 additions and 3 deletions
22
examples/example-bungee/build.gradle
Normal file
22
examples/example-bungee/build.gradle
Normal 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'
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue