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
This commit is contained in:
Phillip Webb
2025-12-01 11:51:53 -08:00
parent d87aa53f12
commit 64ea2fdd24
4 changed files with 5 additions and 5 deletions
@@ -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",
+2 -2
View File
@@ -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"
@@ -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"))
}