One project in my company added the ``@Consumer(…)...
# pact-jvm
é
One project in my company added the ``@Consumer(…)`` annotation on the provider verification class, am I correct assuming this will only verify the provider contract between given provider and consumer, excluding others?
Copy code
@Provider("ms.seller-opt-out")
@Consumer("ms.channel-management-rule-applier")
…
public class SellerOptOutRuleRuleApplierPublisherPactTest {
I see you can use system property pact.filter.consumers Consumer Version Selectors to do this. Is there still some use-cases for the annotation approach?