mirror of
https://github.com/GeyserMC/Floodgate.git
synced 2025-12-19 14:59:20 +00:00
* Spigot 1.20.2 Signed-off-by: Joshua Castle <26531652+Kas-tle@users.noreply.github.com> * Oops Signed-off-by: Joshua Castle <26531652+Kas-tle@users.noreply.github.com> * 1.20.2 velocity (#1) * 1.20.2 Velocity Signed-off-by: Joshua Castle <26531652+Kas-tle@users.noreply.github.com> * Archive build artifacts Signed-off-by: Joshua Castle <26531652+Kas-tle@users.noreply.github.com> * Fix typo in velocity-plugin.json Signed-off-by: Joshua Castle <26531652+Kas-tle@users.noreply.github.com> --------- Signed-off-by: Joshua Castle <26531652+Kas-tle@users.noreply.github.com> * Fix formatting and apply codestyle to eclipse Signed-off-by: Joshua Castle <26531652+Kas-tle@users.noreply.github.com> * Ignore changes to core base prefs Signed-off-by: Joshua Castle <26531652+Kas-tle@users.noreply.github.com> * Proper ignore Signed-off-by: Joshua Castle <26531652+Kas-tle@users.noreply.github.com> * Remove buildship prefs Signed-off-by: Joshua Castle <26531652+Kas-tle@users.noreply.github.com> * Formatting Signed-off-by: GitHub <noreply@github.com> * Formatting Signed-off-by: GitHub <noreply@github.com> * Properly build PRs * Formatting + remove artifacts Signed-off-by: GitHub <noreply@github.com> * Throw IllegalStateException Signed-off-by: GitHub <noreply@github.com> --------- Signed-off-by: Joshua Castle <26531652+Kas-tle@users.noreply.github.com> Signed-off-by: GitHub <noreply@github.com>
30 lines
865 B
Plaintext
30 lines
865 B
Plaintext
var velocityVersion = "3.2.0-SNAPSHOT"
|
|
var log4jVersion = "2.11.2"
|
|
var gsonVersion = "2.8.8"
|
|
var guavaVersion = "25.1-jre"
|
|
|
|
indra {
|
|
javaVersions {
|
|
// For Velocity API
|
|
target(11)
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
api(projects.core)
|
|
implementation("cloud.commandframework", "cloud-velocity", Versions.cloudVersion)
|
|
}
|
|
|
|
relocate("cloud.commandframework")
|
|
// used in cloud
|
|
relocate("io.leangen.geantyref")
|
|
|
|
|
|
// these dependencies are already present on the platform
|
|
provided("com.google.code.gson", "gson", gsonVersion)
|
|
provided("com.google.guava", "guava", guavaVersion)
|
|
provided("com.google.inject", "guice", Versions.guiceVersion)
|
|
provided("org.yaml", "snakeyaml", Versions.snakeyamlVersion) // included in Configurate
|
|
provided("com.velocitypowered", "velocity-api", velocityVersion)
|
|
provided("org.apache.logging.log4j", "log4j-core", log4jVersion)
|