mirror of
https://github.com/proxiodev/RedisBungee.git
synced 2026-04-08 16:10:26 +00:00
24 lines
315 B
Kotlin
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"])
|
|
}
|
|
}
|
|
}
|
|
|