Browse Source

Polish "Rename 'spring-boot-tx' module to 'spring-boot-transaction'"

See gh-47603
pull/47665/head
Stéphane Nicoll 2 months ago
parent
commit
99e356de19
  1. 6
      configuration-metadata/spring-boot-configuration-metadata-changelog-generator/build.gradle

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

@ -125,7 +125,7 @@ def dependenciesOf(String version) {
"spring-boot-testcontainers", "spring-boot-testcontainers",
"spring-boot-thymeleaf", "spring-boot-thymeleaf",
"spring-boot-tomcat", "spring-boot-tomcat",
"spring-boot-transaction", "spring-boot-tx",
"spring-boot-validation", "spring-boot-validation",
"spring-boot-web-server", "spring-boot-web-server",
"spring-boot-webclient", "spring-boot-webclient",
@ -154,8 +154,12 @@ def dependenciesOf(String version) {
] ]
} }
if (version.equals("4.0.0-RC1")) { if (version.equals("4.0.0-RC1")) {
modules -= [
"spring-boot-tx"
]
modules += [ modules += [
"spring-boot-batch-jdbc", "spring-boot-batch-jdbc",
"spring-boot-transaction",
"spring-boot-restdocs" "spring-boot-restdocs"
] ]
} }

Loading…
Cancel
Save