2
0
mirror of https://github.com/proxiodev/RedisBungee.git synced 2026-04-08 16:10:26 +00:00
Files
RedisBungee/api/build.gradle.kts
2026-04-03 19:19:44 +04:00

24 lines
315 B
Kotlin

plugins {
`maven-publish`
}
description = "Api functions for valiobungee"
dependencies {
testImplementation(libs.testing.juipter)
}
tasks.test {
useJUnitPlatform()
}
publishing {
publications {
create<MavenPublication>("maven") {
from(components["java"])
}
}
}