mirror of
https://github.com/proxiodev/RedisBungee.git
synced 2026-04-08 16:10:26 +00:00
23 lines
445 B
Kotlin
23 lines
445 B
Kotlin
plugins {
|
|
java
|
|
alias(libs.plugins.shadow)
|
|
alias(libs.plugins.run.velocity)
|
|
}
|
|
|
|
|
|
dependencies {
|
|
implementation(project(":valiobungee-velocity-api"))
|
|
implementation(project(":valiobungee-core"))
|
|
compileOnly(libs.platform.velocity)
|
|
annotationProcessor(libs.platform.velocity)
|
|
}
|
|
|
|
description = "ValioBungee Velocity implementation"
|
|
|
|
tasks {
|
|
runVelocity {
|
|
velocityVersion(libs.versions.velocity.get())
|
|
}
|
|
}
|
|
|