Spring Cloud Contract issues retrieving stubs from Artifactory
I have tests for two consumers and a producer working fine offline but the consumer tests fail when I change them for retrieving the stubs from Artifactory. This is the code for working offline: @RunWith(SpringRunner.class) @SpringBootTest(classes = ContractTestConfiguration.class, webEnvironment = SpringBootTest.WebEnvironment.NONE) @AutoConfigureStubRunner(ids = {"com.mycompany:service-name:+:stubs"}, workOffline = true) @ImportAutoConfiguration(org.springframework.cloud.stream.test.binder.TestSupportBinderAutoConfiguration.class) @DirtiesContext public class MyContractTest And this is for