com.amit.plugin.download-registry
Owner: Amit Bansal
Good human-readable description of what your plugin is about
https://github.com/amitbansal26/kafka-registry-gradle-plugin
Sources: https://github.com/username/repo
Version 1.6 (latest)
1.6
Created 14 May 2018.
This Plugin downloads avro schemas from kafka Schema Registry
Using the plugins DSL:
plugins {
id("com.amit.plugin.download-registry") version "1.6"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.amit.plugin.download-registry:registry-schema-download-plugin:1.6")
}
}
apply(plugin = "com.amit.plugin.download-registry")
Using the plugins DSL:
plugins {
id "com.amit.plugin.download-registry" version "1.6"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.amit.plugin.download-registry:registry-schema-download-plugin:1.6"
}
}
apply plugin: "com.amit.plugin.download-registry"