Добавил АПИ функцию которая возвращает информацию о версии сервера и о том что он работает
This commit is contained in:
AidarKC
2026-03-30 00:34:16 +03:00
parent 1aabcf4d80
commit 99cf000f24
10 changed files with 259 additions and 6 deletions
+8 -2
View File
@@ -5,12 +5,19 @@ plugins {
}
group = 'shine'
version = '1.0'
version = '1.1_codex'
tasks.jar {
enabled = false // это что бы не создавала обычный джар, а будет только толстый джар
}
tasks.processResources {
filteringCharset = 'UTF-8'
filesMatching('application.properties') {
expand(projectVersion: project.version.toString())
}
}
repositories {
mavenCentral()
}
@@ -142,4 +149,3 @@ tasks.register('itDeployServer', JavaExec) {
dependsOn testClasses
}