Search Gradle plugins

Version 1.1.0-SNAPSHOT

1.1.0-SNAPSHOT

Created 13 December 2020.

A plugin to download, register and test schemas from a Kafka Schema Registry

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.github.imflog.kafka-schema-registry-gradle-plugin") version "1.1.0-SNAPSHOT"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.github.imflog:kafka-schema-registry-gradle-plugin:1.1.0-SNAPSHOT")
      }
    }
    
    apply(plugin = "com.github.imflog.kafka-schema-registry-gradle-plugin")
  • Applying plugins to all subprojects .