Add Kotlinx Serialization support to BindingReflectionHintsRegistrar

Closes gh-28635
This commit is contained in:
Sébastien Deleuze
2022-06-15 17:46:31 +02:00
parent b5c0c6d53d
commit 16d6dc3611
3 changed files with 81 additions and 0 deletions

View File

@@ -3,6 +3,7 @@ import com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar
description = "Spring Core"
apply plugin: "kotlin"
apply plugin: "kotlinx-serialization"
// spring-core includes asm, javapoet and repackages cglib, inlining all into the
// spring-core jar. cglib itself depends on asm and is therefore further transformed by
@@ -68,6 +69,7 @@ dependencies {
testImplementation("io.projectreactor:reactor-test")
testImplementation("io.projectreactor.tools:blockhound")
testImplementation("org.skyscreamer:jsonassert")
testImplementation("org.jetbrains.kotlinx:kotlinx-serialization-json")
testFixturesImplementation("com.google.code.findbugs:jsr305")
testFixturesImplementation("org.junit.platform:junit-platform-launcher")
testFixturesImplementation("org.junit.jupiter:junit-jupiter-api")