diff --git a/docs/src/main/asciidoc/_configprops.adoc b/docs/src/main/asciidoc/_configprops.adoc index 7e4cb98eac..47168bd8eb 100644 --- a/docs/src/main/asciidoc/_configprops.adoc +++ b/docs/src/main/asciidoc/_configprops.adoc @@ -29,7 +29,7 @@ |stubrunner.properties | | Map of properties that can be passed to custom {@link org.springframework.cloud.contract.stubrunner.StubDownloaderBuilder}. |stubrunner.proxy-host | | Repository proxy host. |stubrunner.proxy-port | | Repository proxy port. -|stubrunner.server-id | | Server value registered at `settings.xml` to get the proper credentials to authenticate against the remote repository. +|stubrunner.server-id | | |stubrunner.stream.enabled | true | Whether to enable Stub Runner integration with Spring Cloud Stream. |stubrunner.stubs-mode | | Pick where the stubs should come from. |stubrunner.stubs-per-consumer | false | Should only stubs for this particular consumer get registered in HTTP server stub. diff --git a/pom.xml b/pom.xml index b2a2035665..db5784400b 100644 --- a/pom.xml +++ b/pom.xml @@ -34,7 +34,7 @@ 3.0.0.BUILD-SNAPSHOT 3.0.0.BUILD-SNAPSHOT 3.0.0.BUILD-SNAPSHOT - 3.0.3.BUILD-SNAPSHOT + 3.0.2.BUILD-SNAPSHOT 5.0.4 3.2.9 1.3-groovy-2.5 diff --git a/spring-cloud-contract-tools/spring-cloud-contract-maven-plugin/src/main/java/org/springframework/cloud/contract/maven/verifier/stubrunner/AetherStubDownloaderFactory.java b/spring-cloud-contract-tools/spring-cloud-contract-maven-plugin/src/main/java/org/springframework/cloud/contract/maven/verifier/stubrunner/AetherStubDownloaderFactory.java index 6d35176c90..1c77418872 100644 --- a/spring-cloud-contract-tools/spring-cloud-contract-maven-plugin/src/main/java/org/springframework/cloud/contract/maven/verifier/stubrunner/AetherStubDownloaderFactory.java +++ b/spring-cloud-contract-tools/spring-cloud-contract-maven-plugin/src/main/java/org/springframework/cloud/contract/maven/verifier/stubrunner/AetherStubDownloaderFactory.java @@ -53,8 +53,8 @@ public class AetherStubDownloaderFactory { private final Settings settings; @Inject - public AetherStubDownloaderFactory(RepositorySystem repoSystem, - MavenProject project, Settings settings) { + public AetherStubDownloaderFactory(RepositorySystem repoSystem, MavenProject project, + Settings settings) { this.repoSystem = repoSystem; this.project = project; this.settings = settings; @@ -70,8 +70,7 @@ public class AetherStubDownloaderFactory { AetherStubDownloaderFactory.this.repoSystem, AetherStubDownloaderFactory.this.project .getRemoteProjectRepositories(), - repoSession, - AetherStubDownloaderFactory.this.settings); + repoSession, AetherStubDownloaderFactory.this.settings); } @Override