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
Sources: https://github.com/ImFlog/schema-registry-plugin.git
Version 1.0.0-SNAPSHOT
1.0.0-SNAPSHOT
Created 13 August 2020.
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.0.0-SNAPSHOT"
}
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.0.0-SNAPSHOT")
}
}
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.0.0-SNAPSHOT"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.github.imflog:kafka-schema-registry-gradle-plugin:1.0.0-SNAPSHOT"
}
}
apply plugin: "com.github.imflog.kafka-schema-registry-gradle-plugin"