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) {
] ]
modules += [ modules += [
"spring-boot-batch-jdbc", "spring-boot-batch-jdbc",
"spring-boot-jackson2",
"spring-boot-transaction", "spring-boot-transaction",
"spring-boot-restdocs" "spring-boot-restdocs",
"spring-boot-webmvc-test",
"spring-boot-webservices-test"
] ]
} }
return modules return modules

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

@ -22,7 +22,8 @@
}, },
{ {
"name": "spring.session.redis.flush-mode", "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", "level": "error",
"replacement": "spring.session.data.redis.flush-mode" "replacement": "spring.session.data.redis.flush-mode"
} }

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

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

Loading…
Cancel
Save