feat: Вместо всех событий теперь можно получить события за определённый промежуток времени (/events)

This commit is contained in:
2025-07-19 18:00:33 +03:00
parent a49177b3d0
commit 0bf724bc96
3 changed files with 81 additions and 20 deletions

View File

@@ -5,7 +5,13 @@ plugins {
}
group = "com.nano"
version = "0.0.2"
version = "0.0.3"
java {
toolchain {
languageVersion.set(JavaLanguageVersion.of(17))
}
}
application {
mainClass = "com.nano.ApplicationKt"
@@ -35,3 +41,20 @@ dependencies {
testImplementation("io.ktor:ktor-server-test-host")
testImplementation("org.jetbrains.kotlin:kotlin-test-junit:2.1.10")
}
ktor {
fatJar {
archiveFileName.set("webdav-service-fat.jar")
}
}
tasks.withType<Jar> {
manifest {
attributes(
mapOf(
"Main-Class" to application.mainClass.get(),
"Implementation-Version" to version
)
)
}
}