Module containing a Creek Kafka serde implementation that can be plugged in to Creek to provide JSON serde support.
For more information, see the docs site.
This module has dependencies not stored in maven central. To use the module add Confluent and JitPack repositories to your build scripts.
For example, in Gradle build.gradle.kts
:
repositories {
maven {
url = uri("https://jitpack.io")
// Optionally limit the scope artefacts:
mavenContent {
includeGroup("net.jimblackler.jsonschemafriend")
}
}
maven {
url = uri("https://packages.confluent.io/maven/")
// Optionally limit the scope artefacts:
mavenContent {
includeGroup("io.confluent")
}
}
}