1
0
mirror of https://github.com/GeyserMC/Floodgate.git synced 2025-12-19 14:59:20 +00:00

First version of moving to gradle. No relocations etc. yet

This commit is contained in:
Tim203
2021-12-08 00:59:25 +01:00
parent eb28d6c882
commit 11f811b656
18 changed files with 599 additions and 2 deletions

16
bungee/build.gradle.kts Normal file
View File

@@ -0,0 +1,16 @@
var bungeeCommit = "bda1605";
var gsonVersion = "2.8.0";
var guavaVersion = "21.0";
dependencies {
api(project(":core", "shadow"))
implementation("cloud.commandframework", "cloud-bungee", "1.5.0")
implementation("net.kyori", "adventure-text-serializer-gson", Versions.adventureApiVersion)
implementation("net.kyori", "adventure-text-serializer-bungeecord", Versions.adventurePlatformVersion)
compileOnly("com.github.SpigotMC.BungeeCord", "bungeecord-proxy", bungeeCommit)
compileOnly("com.google.code.gson", "gson", gsonVersion)
compileOnly("com.google.guava", "guava", guavaVersion)
compileOnly("org.yaml", "snakeyaml", Versions.snakeyamlVersion)
}
description = "bungee"