Slackbot
04/20/2023, 9:29 AMVampire
04/20/2023, 9:39 AMtaskA is a lifecycle task, better wire inputs and outputs together and get implicit task dependencies running properly. See https://docs.gradle.org/current/userguide/cross_project_publications.html for proper cross-project publication ways.Jeanderson Barros Cândido
04/20/2023, 12:14 PM:something is not necessarily available under certain conditions (e.g., project changing configuration from taskA is part of an included build that :something is not)? Is it possible to conditionally configure taskA only if :something is present?Vampire
04/20/2023, 12:52 PMif that checks whether the project exists.
But tbh, that also sounds like a code smell. 🙂Jeanderson Barros Cândido
04/20/2023, 1:27 PMdependsOn relation for mustRunAfter to see how it works and I might go with it for now.Vampire
04/20/2023, 3:31 PM