diff --git a/docs/src/main/asciidoc/_configprops.adoc b/docs/src/main/asciidoc/_configprops.adoc index 47168bd8eb..f26708ea72 100644 --- a/docs/src/main/asciidoc/_configprops.adoc +++ b/docs/src/main/asciidoc/_configprops.adoc @@ -11,37 +11,37 @@ |stubrunner.cloud.loadbalancer.enabled | true | Whether to enable Stub Runner's Spring Cloud Load Balancer integration. |stubrunner.cloud.stubbed.discovery.enabled | true | Whether Service Discovery should be stubbed for Stub Runner. If set to false, stubs will get registered in real service discovery. |stubrunner.cloud.zookeeper.enabled | true | Whether to enable stubs registration in Zookeeper. -|stubrunner.consumer-name | | You can override the default {@code spring.application.name} of this field by setting a value to this parameter. +|stubrunner.consumer-name | null | You can override the default {@code spring.application.name} of this field by setting a value to this parameter. |stubrunner.delete-stubs-after-test | true | If set to {@code false} will NOT delete stubs from a temporary folder after running tests. |stubrunner.fail-on-no-stubs | true | When enabled, this flag will tell stub runner to throw an exception when no stubs / contracts were found. |stubrunner.generate-stubs | false | When enabled, this flag will tell stub runner to not load the generated stubs, but convert the found contracts at runtime to a stub format and run those stubs. -|stubrunner.http-server-stub-configurer | | Configuration for an HTTP server stub. +|stubrunner.http-server-stub-configurer | null | Configuration for an HTTP server stub. |stubrunner.ids | [] | The ids of the stubs to run in "ivy" notation ([groupId]:artifactId:[version]:[classifier][:port]). {@code groupId}, {@code classifier}, {@code version} and {@code port} can be optional. -|stubrunner.ids-to-service-ids | | Mapping of Ivy notation based ids to serviceIds inside your application. Example "a:b" -> "myService" "artifactId" -> "myOtherService" +|stubrunner.ids-to-service-ids | null | Mapping of Ivy notation based ids to serviceIds inside your application. Example "a:b" -> "myService" "artifactId" -> "myOtherService" |stubrunner.integration.enabled | true | Whether to enable Stub Runner integration with Spring Integration. |stubrunner.jms.enabled | true | Whether to enable Stub Runner integration with Spring JMS. |stubrunner.kafka.enabled | true | Whether to enable Stub Runner integration with Spring Kafka. |stubrunner.kafka.initializer.enabled | true | Whether to allow Stub Runner to take care of polling for messages instead of the KafkaStubMessages component. The latter should be used only on the producer side. -|stubrunner.mappings-output-folder | | Dumps the mappings of each HTTP server to the selected folder. +|stubrunner.mappings-output-folder | null | Dumps the mappings of each HTTP server to the selected folder. |stubrunner.max-port | 15000 | Max value of a port for the automatically started WireMock server. |stubrunner.min-port | 10000 | Min value of a port for the automatically started WireMock server. -|stubrunner.password | | Repository password. -|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 | | +|stubrunner.password | null | Repository password. +|stubrunner.properties | null | Map of properties that can be passed to custom {@link org.springframework.cloud.contract.stubrunner.StubDownloaderBuilder}. +|stubrunner.proxy-host | null | Repository proxy host. +|stubrunner.proxy-port | null | Repository proxy port. +|stubrunner.server-id | null | null |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-mode | null | 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. -|stubrunner.username | | Repository username. +|stubrunner.username | null | Repository username. |wiremock.placeholders.enabled | true | Flag to indicate that http URLs in generated wiremock stubs should be filtered to add or resolve a placeholder for a dynamic port. -|wiremock.reset-mappings-after-each-test | false | -|wiremock.rest-template-ssl-enabled | false | -|wiremock.server.files | [] | -|wiremock.server.https-port | -1 | -|wiremock.server.https-port-dynamic | false | -|wiremock.server.port | 8080 | -|wiremock.server.port-dynamic | false | -|wiremock.server.stubs | [] | +|wiremock.reset-mappings-after-each-test | false | null +|wiremock.rest-template-ssl-enabled | false | null +|wiremock.server.files | [] | null +|wiremock.server.https-port | -1 | null +|wiremock.server.https-port-dynamic | false | null +|wiremock.server.port | 8080 | null +|wiremock.server.port-dynamic | false | null +|wiremock.server.stubs | [] | null -|=== +|=== \ No newline at end of file diff --git a/guides/gs-contract-rest/complete/contract-rest-client/pom.xml b/guides/gs-contract-rest/complete/contract-rest-client/pom.xml index 90e2822d4a..86343384be 100644 --- a/guides/gs-contract-rest/complete/contract-rest-client/pom.xml +++ b/guides/gs-contract-rest/complete/contract-rest-client/pom.xml @@ -11,7 +11,7 @@ org.springframework.boot spring-boot-starter-parent - 2.3.0.BUILD-SNAPSHOT + 2.3.0.RELEASE diff --git a/guides/gs-contract-rest/complete/contract-rest-service/pom.xml b/guides/gs-contract-rest/complete/contract-rest-service/pom.xml index 8b27777ae5..8f6482fc2c 100644 --- a/guides/gs-contract-rest/complete/contract-rest-service/pom.xml +++ b/guides/gs-contract-rest/complete/contract-rest-service/pom.xml @@ -11,7 +11,7 @@ org.springframework.boot spring-boot-starter-parent - 2.3.0.BUILD-SNAPSHOT + 2.3.0.RELEASE diff --git a/guides/gs-contract-rest/initial/contract-rest-client/pom.xml b/guides/gs-contract-rest/initial/contract-rest-client/pom.xml index c88411e9ff..9f83c63fb3 100644 --- a/guides/gs-contract-rest/initial/contract-rest-client/pom.xml +++ b/guides/gs-contract-rest/initial/contract-rest-client/pom.xml @@ -11,7 +11,7 @@ org.springframework.boot spring-boot-starter-parent - 2.3.0.BUILD-SNAPSHOT + 2.3.0.RELEASE diff --git a/guides/gs-contract-rest/initial/contract-rest-service/pom.xml b/guides/gs-contract-rest/initial/contract-rest-service/pom.xml index 7e879f8fa4..4263a952b6 100644 --- a/guides/gs-contract-rest/initial/contract-rest-service/pom.xml +++ b/guides/gs-contract-rest/initial/contract-rest-service/pom.xml @@ -11,7 +11,7 @@ org.springframework.boot spring-boot-starter-parent - 2.3.0.BUILD-SNAPSHOT + 2.3.0.RELEASE diff --git a/samples/wiremock-jetty/pom.xml b/samples/wiremock-jetty/pom.xml index bc9cf9ec19..ce4b70c5da 100644 --- a/samples/wiremock-jetty/pom.xml +++ b/samples/wiremock-jetty/pom.xml @@ -14,7 +14,7 @@ org.springframework.boot spring-boot-starter-parent - 2.3.0.BUILD-SNAPSHOT + 2.3.0.RELEASE diff --git a/samples/wiremock-native/pom.xml b/samples/wiremock-native/pom.xml index 18aff28380..610a4e1094 100644 --- a/samples/wiremock-native/pom.xml +++ b/samples/wiremock-native/pom.xml @@ -14,7 +14,7 @@ org.springframework.boot spring-boot-starter-parent - 2.3.0.BUILD-SNAPSHOT + 2.3.0.RELEASE diff --git a/samples/wiremock-tomcat/pom.xml b/samples/wiremock-tomcat/pom.xml index a8fbf4d867..389973ca32 100644 --- a/samples/wiremock-tomcat/pom.xml +++ b/samples/wiremock-tomcat/pom.xml @@ -14,7 +14,7 @@ org.springframework.boot spring-boot-starter-parent - 2.3.0.BUILD-SNAPSHOT + 2.3.0.RELEASE diff --git a/samples/wiremock-undertow-ssl/pom.xml b/samples/wiremock-undertow-ssl/pom.xml index f8fa3229e4..241986edc2 100644 --- a/samples/wiremock-undertow-ssl/pom.xml +++ b/samples/wiremock-undertow-ssl/pom.xml @@ -14,7 +14,7 @@ org.springframework.boot spring-boot-starter-parent - 2.3.0.BUILD-SNAPSHOT + 2.3.0.RELEASE diff --git a/samples/wiremock-undertow/pom.xml b/samples/wiremock-undertow/pom.xml index 80a9b48031..ca6944d1e4 100644 --- a/samples/wiremock-undertow/pom.xml +++ b/samples/wiremock-undertow/pom.xml @@ -14,7 +14,7 @@ org.springframework.boot spring-boot-starter-parent - 2.3.0.BUILD-SNAPSHOT + 2.3.0.RELEASE diff --git a/samples/wiremock/pom.xml b/samples/wiremock/pom.xml index 13c53ef8db..58ac32cd53 100644 --- a/samples/wiremock/pom.xml +++ b/samples/wiremock/pom.xml @@ -14,7 +14,7 @@ org.springframework.boot spring-boot-starter-parent - 2.3.0.BUILD-SNAPSHOT + 2.3.0.RELEASE diff --git a/spring-cloud-contract-tools/spring-cloud-contract-gradle-plugin/src/test/resources/functionalTest/scenarioProject/gradle.properties b/spring-cloud-contract-tools/spring-cloud-contract-gradle-plugin/src/test/resources/functionalTest/scenarioProject/gradle.properties index 1f9911f688..b22e6e928c 100644 --- a/spring-cloud-contract-tools/spring-cloud-contract-gradle-plugin/src/test/resources/functionalTest/scenarioProject/gradle.properties +++ b/spring-cloud-contract-tools/spring-cloud-contract-gradle-plugin/src/test/resources/functionalTest/scenarioProject/gradle.properties @@ -16,5 +16,5 @@ wiremockVersion=2.26.3 jsonAssertVersion=0.4.13 verifierVersion=3.0.0-SNAPSHOT -bootVersion=2.3.0.BUILD-SNAPSHOT +bootVersion=2.3.0.RELEASE groovyVersion=2.4.17 diff --git a/spring-cloud-contract-tools/spring-cloud-contract-gradle-plugin/src/test/resources/functionalTest/scenarioProjectKotlin/gradle.properties b/spring-cloud-contract-tools/spring-cloud-contract-gradle-plugin/src/test/resources/functionalTest/scenarioProjectKotlin/gradle.properties index 1f9911f688..b22e6e928c 100644 --- a/spring-cloud-contract-tools/spring-cloud-contract-gradle-plugin/src/test/resources/functionalTest/scenarioProjectKotlin/gradle.properties +++ b/spring-cloud-contract-tools/spring-cloud-contract-gradle-plugin/src/test/resources/functionalTest/scenarioProjectKotlin/gradle.properties @@ -16,5 +16,5 @@ wiremockVersion=2.26.3 jsonAssertVersion=0.4.13 verifierVersion=3.0.0-SNAPSHOT -bootVersion=2.3.0.BUILD-SNAPSHOT +bootVersion=2.3.0.RELEASE groovyVersion=2.4.17