mirror of
https://github.com/proxiodev/RedisBungee.git
synced 2026-03-25 01:10:46 +00:00
23 lines
396 B
Plaintext
23 lines
396 B
Plaintext
plugins {
|
|
alias(libs.plugins.blossom)
|
|
alias(libs.plugins.indragit)
|
|
}
|
|
|
|
description = "Core functions for valiobungee"
|
|
|
|
sourceSets {
|
|
main {
|
|
blossom {
|
|
javaSources {
|
|
property("version", version.toString())
|
|
property("git", indraGit.commit().get().name)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
java {
|
|
withJavadocJar()
|
|
withSourcesJar()
|
|
}
|