mirror of
https://github.com/proxiodev/RedisBungee.git
synced 2026-04-02 21:20:47 +00:00
32 lines
464 B
Plaintext
32 lines
464 B
Plaintext
description = "Api functions for valiobungee"
|
|
|
|
plugins {
|
|
alias(libs.plugins.blossom)
|
|
alias(libs.plugins.indragit)
|
|
}
|
|
|
|
|
|
sourceSets {
|
|
main {
|
|
blossom {
|
|
javaSources {
|
|
property("apiversion", project.property("api-version").toString())
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
java {
|
|
withJavadocJar()
|
|
withSourcesJar()
|
|
}
|
|
|
|
dependencies {
|
|
testImplementation(libs.testing.juipter)
|
|
}
|
|
|
|
tasks.test {
|
|
useJUnitPlatform()
|
|
}
|
|
|