2
0
mirror of https://github.com/proxiodev/RedisBungee.git synced 2026-04-08 16:10:26 +00:00

rewrite init

This commit is contained in:
2026-03-26 15:53:40 +04:00
parent 4221ebb892
commit 5e4b151d44
104 changed files with 959 additions and 7185 deletions

22
core/build.gradle.kts Normal file
View File

@@ -0,0 +1,22 @@
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()
}