Skip to content

Commit

Permalink
fix: resolve gradle task dependencies for plugin properties (#15)
Browse files Browse the repository at this point in the history
- Add dependency on writePluginProperties task for all Jar tasks
- Resolve implicit dependency warning in Gradle build

Co-authored-by: Patrick Mirwald <[email protected]>
  • Loading branch information
nvima and Patrick Mirwald authored Aug 15, 2024
1 parent 8f2bfa2 commit 78a4981
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,9 @@ tasks {
withType(ProcessResources::class.java) {
dependsOn(propertiesTask)
}
withType(Jar::class.java) {
dependsOn(propertiesTask)
}
}

tasks.named("publishPlugins") {
Expand Down

0 comments on commit 78a4981

Please sign in to comment.