Skip to content

Commit

Permalink
Merge pull request #75 from InkApplications/gradle-deps
Browse files Browse the repository at this point in the history
Adjust publishing task deps.
  • Loading branch information
ReneeVandervelde authored Oct 26, 2024
2 parents 11f39d2 + 3c37efb commit 30eaa59
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion buildSrc/src/main/kotlin/ink.publishing.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,10 @@ signing {
}
}

tasks.withType<Sign>().configureEach {
dependsOn(tasks.withType<Jar>())
}

tasks.withType<PublishToMavenRepository>().configureEach {
dependsOn(tasks.withType<Sign>())
dependsOn(javadocJar)
}

0 comments on commit 30eaa59

Please sign in to comment.