From 252b218ac946abf2ac5dedfca580d5d828c5c17c Mon Sep 17 00:00:00 2001 From: Andy Wilkinson Date: Thu, 18 Dec 2025 14:41:35 +0000 Subject: [PATCH] Correct renaming of Kotlinx Serialization JSON starters Closes gh-48262 --- platform/spring-boot-dependencies/build.gradle | 4 ++-- settings.gradle | 4 ++-- .../build.gradle | 4 ++-- .../build.gradle | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) rename starter/{spring-boot-starter-kotlin-serialization-json-test => spring-boot-starter-kotlinx-serialization-json-test}/build.gradle (84%) rename starter/{spring-boot-starter-kotlin-serialization-json => spring-boot-starter-kotlinx-serialization-json}/build.gradle (92%) diff --git a/platform/spring-boot-dependencies/build.gradle b/platform/spring-boot-dependencies/build.gradle index b8ac902f9a8..e78528e4427 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-json", - "spring-boot-starter-kotlin-serialization-json-test", + "spring-boot-starter-kotlinx-serialization-json", + "spring-boot-starter-kotlinx-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 d74abd51330..dfc2231948b 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-json" -include "starter:spring-boot-starter-kotlin-serialization-json-test" +include "starter:spring-boot-starter-kotlinx-serialization-json" +include "starter:spring-boot-starter-kotlinx-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-json-test/build.gradle b/starter/spring-boot-starter-kotlinx-serialization-json-test/build.gradle similarity index 84% rename from starter/spring-boot-starter-kotlin-serialization-json-test/build.gradle rename to starter/spring-boot-starter-kotlinx-serialization-json-test/build.gradle index 1f27f7e1035..efbe06bece3 100644 --- a/starter/spring-boot-starter-kotlin-serialization-json-test/build.gradle +++ b/starter/spring-boot-starter-kotlinx-serialization-json-test/build.gradle @@ -18,9 +18,9 @@ plugins { id "org.springframework.boot.starter" } -description = "Starter for testing Kotlin Serialization" +description = "Starter for testing Kotlinx Serialization JSON" dependencies { - api(project(":starter:spring-boot-starter-kotlin-serialization-json")) + api(project(":starter:spring-boot-starter-kotlinx-serialization-json")) api(project(":starter:spring-boot-starter-test")) } diff --git a/starter/spring-boot-starter-kotlin-serialization-json/build.gradle b/starter/spring-boot-starter-kotlinx-serialization-json/build.gradle similarity index 92% rename from starter/spring-boot-starter-kotlin-serialization-json/build.gradle rename to starter/spring-boot-starter-kotlinx-serialization-json/build.gradle index 0102f5d6e67..e003992a498 100644 --- a/starter/spring-boot-starter-kotlin-serialization-json/build.gradle +++ b/starter/spring-boot-starter-kotlinx-serialization-json/build.gradle @@ -18,7 +18,7 @@ plugins { id "org.springframework.boot.starter" } -description = "Starter for using Kotlin Serialization" +description = "Starter for using Kotlinx Serialization JSON" dependencies { api(project(":starter:spring-boot-starter"))