Skip to content

Commit 64ea2fd

Browse files
committed
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
1 parent d87aa53 commit 64ea2fd

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

platform/spring-boot-dependencies/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2189,8 +2189,8 @@ bom {
21892189
"spring-boot-starter-jsonb-test",
21902190
"spring-boot-starter-kafka",
21912191
"spring-boot-starter-kafka-test",
2192-
"spring-boot-starter-kotlin-serialization",
2193-
"spring-boot-starter-kotlin-serialization-test",
2192+
"spring-boot-starter-kotlin-serialization-json",
2193+
"spring-boot-starter-kotlin-serialization-json-test",
21942194
"spring-boot-starter-ldap",
21952195
"spring-boot-starter-ldap-test",
21962196
"spring-boot-starter-liquibase",

settings.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -291,8 +291,8 @@ include "starter:spring-boot-starter-jsonb"
291291
include "starter:spring-boot-starter-jsonb-test"
292292
include "starter:spring-boot-starter-kafka"
293293
include "starter:spring-boot-starter-kafka-test"
294-
include "starter:spring-boot-starter-kotlin-serialization"
295-
include "starter:spring-boot-starter-kotlin-serialization-test"
294+
include "starter:spring-boot-starter-kotlin-serialization-json"
295+
include "starter:spring-boot-starter-kotlin-serialization-json-test"
296296
include "starter:spring-boot-starter-ldap"
297297
include "starter:spring-boot-starter-ldap-test"
298298
include "starter:spring-boot-starter-liquibase"

starter/spring-boot-starter-kotlin-serialization-test/build.gradle renamed to starter/spring-boot-starter-kotlin-serialization-json-test/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@ plugins {
2121
description = "Starter for testing Kotlin Serialization"
2222

2323
dependencies {
24-
api(project(":starter:spring-boot-starter-kotlin-serialization"))
24+
api(project(":starter:spring-boot-starter-kotlin-serialization-json"))
2525
api(project(":starter:spring-boot-starter-test"))
2626
}

0 commit comments

Comments
 (0)