Skip to content

Commit

Permalink
Thanks gradle for not listing all plugins that use the sources
Browse files Browse the repository at this point in the history
  • Loading branch information
duncte123 committed Nov 8, 2023
1 parent 3c21f34 commit 2acc828
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,11 @@ tasks.wrapper {
distributionType = Wrapper.DistributionType.BIN
}

tasks.withType<Sign> {
dependsOn(sourcesJar)
dependsOn(tasks.kotlinSourcesJar)
}

tasks.withType<PublishToMavenRepository> {
dependsOn(sourcesJar)
dependsOn(tasks.kotlinSourcesJar)
Expand Down

0 comments on commit 2acc828

Please sign in to comment.