Search Gradle plugins

Version 1.2.0

Created 14 March 2021.

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.2.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.2.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.2.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.2.0"
  }
}

apply plugin: "com.github.imflog.kafka-schema-registry-gradle-plugin"

Learn how to apply plugins to subprojects