Slackbot
01/26/2024, 6:16 PMJendrik Johannes
01/27/2024, 2:15 PMoutgoingVariants for the producer project and check what it shows. (But you most likely have this correct)
2. A sneaky problem often is that if the dependency resolution is triggered too early during the configuration phase. Then the task would have needed to run before tasks run (which can't work). But instead of giving you a helpful error, Gradle just skips the task. I could imagine that this is what is happening.
Debugging this is also not simple unfortunately. If this is the issue, you maybe unintentionally resolve the configuration when you configure the consuming task.
One thing to debug this could be to put a breakpoint into your "artifactView" configuration closure to see when that is triggered.
If you could share your configuration code of the consuming task here, I can take a look.TrevJonez
01/27/2024, 10:03 PMTrevJonez
01/27/2024, 10:04 PM