mirror of
https://github.com/GeyserMC/Geyser.git
synced 2025-12-19 14:59:27 +00:00
Use Gradle's dependency catalogue feature (#3305)
Move all of our dependencies to a single catalogue file to make maintenance of them easier.
This commit is contained in:
@@ -1,7 +1,5 @@
|
||||
val velocityVersion = "3.0.0"
|
||||
|
||||
dependencies {
|
||||
annotationProcessor("com.velocitypowered", "velocity-api", velocityVersion)
|
||||
annotationProcessor(libs.velocity.api)
|
||||
api(projects.core)
|
||||
}
|
||||
|
||||
@@ -34,7 +32,7 @@ exclude("net.kyori:adventure-text-serializer-legacy:*")
|
||||
exclude("net.kyori:adventure-nbt:*")
|
||||
|
||||
// These dependencies are already present on the platform
|
||||
provided("com.velocitypowered", "velocity-api", velocityVersion)
|
||||
provided(libs.velocity.api)
|
||||
|
||||
application {
|
||||
mainClass.set("org.geysermc.geyser.platform.velocity.GeyserVelocityMain")
|
||||
|
||||
Reference in New Issue
Block a user