use version catalog

This commit is contained in:
kento2 2026-07-08 15:20:34 +02:00
parent a8807c9d7e
commit f1b67ed17f
5 changed files with 37 additions and 38 deletions

View file

@ -5,17 +5,9 @@ plugins {
id("scrow.java-library")
}
repositories {
maven {
name = "papermc"
url = uri("https://repo.papermc.io/repository/maven-public/")
}
}
dependencies {
// https://docs.papermc.io/velocity/dev/creating-your-first-plugin/
annotationProcessor("com.velocitypowered:velocity-api:3.5.0-SNAPSHOT")
compileOnly("com.velocitypowered:velocity-api:3.5.0-SNAPSHOT")
annotationProcessor(libs.velocity.api)
compileOnly(libs.velocity.api)
api(project(":kencommandapi-core"))
}