Skip to content

Commit

Permalink
exclude test app from publish (#51)
Browse files Browse the repository at this point in the history
  • Loading branch information
wakingrufus authored Jul 3, 2024
1 parent f19cb22 commit 3dcd615
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,11 @@ jreleaser {
}
}
project.tasks.named("jreleaserFullRelease") {
dependsOn(subprojects.map { it.tasks.named("publish") })
dependsOn(
subprojects
.filter { it.name != "test-application" }
.map { it.tasks.named("publish") }
)
}
tasks.create<Delete>("clean") {
setDelete(layout.buildDirectory)
Expand Down

0 comments on commit 3dcd615

Please sign in to comment.