Skip to content

Commit

Permalink
Add publish task to root project
Browse files Browse the repository at this point in the history
  • Loading branch information
ApexModder committed Dec 14, 2024
1 parent 56726ee commit e6856e5
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,10 @@ idea.module.excludeDirs.addAll(files(
"gradle",
"libs"
))

tasks.register("publish") {
dependsOn(project(":core").tasks.named("publish"))
dependsOn(project(":levels").tasks.named("publish"))
dependsOn(project(":rendering").tasks.named("publish"))
dependsOn(project(":ui").tasks.named("publish"))
}

0 comments on commit e6856e5

Please sign in to comment.