From 64ea2fdd24af351c92738c77ee6c161f5a0fb615 Mon Sep 17 00:00:00 2001 From: Phillip Webb Date: Mon, 1 Dec 2025 11:51:53 -0800 Subject: [PATCH] Fix spring-boot-kotlin-serialization-json starter name Rename `spring-boot-starter-kotlin-serialization` to `spring-boot-starter-kotlin-serialization-json` to align with module. Fixes gh-48262 --- platform/spring-boot-dependencies/build.gradle | 4 ++-- settings.gradle | 4 ++-- .../build.gradle | 2 +- .../build.gradle | 0 4 files changed, 5 insertions(+), 5 deletions(-) rename starter/{spring-boot-starter-kotlin-serialization-test => spring-boot-starter-kotlin-serialization-json-test}/build.gradle (91%) rename starter/{spring-boot-starter-kotlin-serialization => spring-boot-starter-kotlin-serialization-json}/build.gradle (100%) diff --git a/platform/spring-boot-dependencies/build.gradle b/platform/spring-boot-dependencies/build.gradle index 73d35ad6117..b059066210e 100644 --- a/platform/spring-boot-dependencies/build.gradle +++ b/platform/spring-boot-dependencies/build.gradle @@ -2189,8 +2189,8 @@ bom { "spring-boot-starter-jsonb-test", "spring-boot-starter-kafka", "spring-boot-starter-kafka-test", - "spring-boot-starter-kotlin-serialization", - "spring-boot-starter-kotlin-serialization-test", + "spring-boot-starter-kotlin-serialization-json", + "spring-boot-starter-kotlin-serialization-json-test", "spring-boot-starter-ldap", "spring-boot-starter-ldap-test", "spring-boot-starter-liquibase", diff --git a/settings.gradle b/settings.gradle index 3d3ff598b5a..28efb8dfb4f 100644 --- a/settings.gradle +++ b/settings.gradle @@ -291,8 +291,8 @@ include "starter:spring-boot-starter-jsonb" include "starter:spring-boot-starter-jsonb-test" include "starter:spring-boot-starter-kafka" include "starter:spring-boot-starter-kafka-test" -include "starter:spring-boot-starter-kotlin-serialization" -include "starter:spring-boot-starter-kotlin-serialization-test" +include "starter:spring-boot-starter-kotlin-serialization-json" +include "starter:spring-boot-starter-kotlin-serialization-json-test" include "starter:spring-boot-starter-ldap" include "starter:spring-boot-starter-ldap-test" include "starter:spring-boot-starter-liquibase" diff --git a/starter/spring-boot-starter-kotlin-serialization-test/build.gradle b/starter/spring-boot-starter-kotlin-serialization-json-test/build.gradle similarity index 91% rename from starter/spring-boot-starter-kotlin-serialization-test/build.gradle rename to starter/spring-boot-starter-kotlin-serialization-json-test/build.gradle index dd4db269c12..1f27f7e1035 100644 --- a/starter/spring-boot-starter-kotlin-serialization-test/build.gradle +++ b/starter/spring-boot-starter-kotlin-serialization-json-test/build.gradle @@ -21,6 +21,6 @@ plugins { description = "Starter for testing Kotlin Serialization" dependencies { - api(project(":starter:spring-boot-starter-kotlin-serialization")) + api(project(":starter:spring-boot-starter-kotlin-serialization-json")) api(project(":starter:spring-boot-starter-test")) } diff --git a/starter/spring-boot-starter-kotlin-serialization/build.gradle b/starter/spring-boot-starter-kotlin-serialization-json/build.gradle similarity index 100% rename from starter/spring-boot-starter-kotlin-serialization/build.gradle rename to starter/spring-boot-starter-kotlin-serialization-json/build.gradle