com.github.imflog.kafka-schema-registry-gradle-plugin
Owner:
Florian Garcia
A plugin to download, register and test schemas from a Kafka Schema Registry
https://github.com/ImFlog/schema-registry-plugin
Version 1.11.0 (latest)
Created 26 April 2023.
A plugin to download, register and test schemas from a Kafka Schema Registry
Using the plugins DSL:
plugins {
id("com.github.imflog.kafka-schema-registry-gradle-plugin") version "1.11.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.github.imflog:kafka-schema-registry-gradle-plugin:1.11.0")
}
}
apply(plugin = "com.github.imflog.kafka-schema-registry-gradle-plugin")
Using the plugins DSL:
plugins {
id "com.github.imflog.kafka-schema-registry-gradle-plugin" version "1.11.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.github.imflog:kafka-schema-registry-gradle-plugin:1.11.0"
}
}
apply plugin: "com.github.imflog.kafka-schema-registry-gradle-plugin"