Browse Source

Complete modules to be used for generating the changelog

See gh-47758
pull/47784/head
Stéphane Nicoll 2 months ago
parent
commit
152635159c
  1. 5
      configuration-metadata/spring-boot-configuration-metadata-changelog-generator/build.gradle
  2. 3
      module/spring-boot-session-data-redis/src/main/resources/META-INF/additional-spring-configuration-metadata.json
  3. 1
      module/spring-boot-webflux-test/build.gradle

5
configuration-metadata/spring-boot-configuration-metadata-changelog-generator/build.gradle

@ -161,8 +161,11 @@ def dependenciesOf(String version) { @@ -161,8 +161,11 @@ def dependenciesOf(String version) {
]
modules += [
"spring-boot-batch-jdbc",
"spring-boot-jackson2",
"spring-boot-transaction",
"spring-boot-restdocs"
"spring-boot-restdocs",
"spring-boot-webmvc-test",
"spring-boot-webservices-test"
]
}
return modules

3
module/spring-boot-session-data-redis/src/main/resources/META-INF/additional-spring-configuration-metadata.json

@ -22,7 +22,8 @@ @@ -22,7 +22,8 @@
},
{
"name": "spring.session.redis.flush-mode",
"description": "Sessions flush mode. Determines when session changes are written to the session store. Not supported with a reactive session repository.","deprecation": {
"description": "Sessions flush mode. Determines when session changes are written to the session store. Not supported with a reactive session repository.",
"deprecation": {
"level": "error",
"replacement": "spring.session.data.redis.flush-mode"
}

1
module/spring-boot-webflux-test/build.gradle

@ -16,6 +16,7 @@ @@ -16,6 +16,7 @@
plugins {
id "java-library"
id "org.springframework.boot.configuration-properties"
id "org.springframework.boot.deployed"
id "org.springframework.boot.optional-dependencies"
id "org.springframework.boot.test-slice"

Loading…
Cancel
Save