Bumping versions

This commit is contained in:
buildmaster
2020-04-09 00:22:17 +00:00
parent c9981c280b
commit 0b03020efc
3 changed files with 5 additions and 6 deletions

View File

@@ -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.

View File

@@ -34,7 +34,7 @@
<spring-cloud-netflix.version>3.0.0.BUILD-SNAPSHOT</spring-cloud-netflix.version>
<spring-cloud-consul.version>3.0.0.BUILD-SNAPSHOT</spring-cloud-consul.version>
<spring-cloud-commons.version>3.0.0.BUILD-SNAPSHOT</spring-cloud-commons.version>
<spring-cloud-function.version>3.0.3.BUILD-SNAPSHOT</spring-cloud-function.version>
<spring-cloud-function.version>3.0.2.BUILD-SNAPSHOT</spring-cloud-function.version>
<jopt-simple.version>5.0.4</jopt-simple.version>
<cglib.version>3.2.9</cglib.version>
<spock-spring.version>1.3-groovy-2.5</spock-spring.version>

View File

@@ -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