Minor refactors
This commit is contained in:
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user