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"))