Minor refactors

This commit is contained in:
2025-12-05 21:47:17 +01:00
parent 97ace45f65
commit 7b03494e8b
12 changed files with 27 additions and 29 deletions

View File

@@ -51,12 +51,12 @@ tasks.register<Jar>("jarExternalApp") {
dependsOn("classes")
}
tasks.register<Jar>("jarHttpsServer") {
tasks.register<Jar>("jarHttpServer") {
manifest {
attributes["Main-Class"] = "Main"
}
archiveBaseName.set("httpsServer")
from(sourceSets["httpsServer"].output)
archiveBaseName.set("httpServer")
from(sourceSets["httpServer"].output)
dependsOn("classes")
}
@@ -64,7 +64,7 @@ tasks.named("build") {
dependsOn("jarAcq")
dependsOn("jarAcs")
dependsOn("jarExternalApp")
dependsOn("jarHttpsServer")
dependsOn("jarHttpServer")
}
group = "be.naaturel"