Skip to content

Latest commit

 

History

History
32 lines (25 loc) · 1021 Bytes

README.md

File metadata and controls

32 lines (25 loc) · 1021 Bytes

javadoc

Creek Kafka JSON Serde

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