✨ Add example-bukkit build file
This commit is contained in:
parent
0caaccb7de
commit
8e52bf705c
1 changed files with 23 additions and 0 deletions
23
examples/example-bukkit/build.gradle
Normal file
23
examples/example-bukkit/build.gradle
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
apply plugin: "com.github.johnrengelman.shadow"
|
||||
|
||||
def adventureVersion = "4.0.0-SNAPSHOT"
|
||||
|
||||
shadowJar {
|
||||
dependencies {
|
||||
exclude(dependency("org.bukkit:bukkit:1.8.8-R0.1-SNAPSHOT"))
|
||||
}
|
||||
}
|
||||
|
||||
build.dependsOn(shadowJar)
|
||||
|
||||
dependencies {
|
||||
/* Cloud */
|
||||
implementation project(":cloud-paper")
|
||||
implementation project(":cloud-annotations")
|
||||
implementation project(":cloud-minecraft-extras")
|
||||
/* Extras */
|
||||
implementation "me.lucko:commodore:1.9"
|
||||
implementation "net.kyori:adventure-platform-bukkit:$adventureVersion"
|
||||
/* Bukkit */
|
||||
compileOnly "org.bukkit:bukkit:1.8.8-R0.1-SNAPSHOT"
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue