Skip to content

Commit

Permalink
fix: fixed gradle tasks for root project
Browse files Browse the repository at this point in the history
  • Loading branch information
janniclas committed Sep 9, 2024
1 parent 2749698 commit 46e4cfe
Showing 1 changed file with 25 additions and 1 deletion.
26 changes: 25 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,31 @@ tasks.register("ktfmtFormat") {
}

tasks.register("test") {
group = "testing"
group = "verification"
description = "Runs tests."
dependsOn(gradle.includedBuild("spha-cli").task(":test"))
}

tasks.register("dependencyUpdates") {
group = "dependencies"
description = "Prints possible dependency updates."
dependsOn(gradle.includedBuild("spha-cli").task(":dependencyUpdates"))
}

tasks.register("clean") {
group = "build"
description = "Removes all builds."
dependsOn(gradle.includedBuild("spha-cli").task(":clean"))
}

tasks.register("build") {
group = "build"
description = "Build the service"
dependsOn(gradle.includedBuild("spha-cli").task(":build"))
}

tasks.register("assemble") {
group = "build"
description = "Assembles everything into a deployable format."
dependsOn(gradle.includedBuild("spha-cli").task(":assemble"))
}

0 comments on commit 46e4cfe

Please sign in to comment.