Skip to content

Commit

Permalink
fix: resolve gradle task dependencies for plugin properties
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
  • Loading branch information
Patrick Mirwald committed Aug 14, 2024
1 parent 8f2bfa2 commit 51d6ae3
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 51d6ae3

Please sign in to comment.