Search Gradle plugins

com.github.oasalonen.kafka-schema-registry-gradle-plugin

A plugin to download, register and test schemas from a Kafka Schema Registry. Forked from com.github.ImFlog.kafka-schema-registry-gradle-plugin

https://github.com/oasalonen/schema-registry-plugin

Sources: https://github.com/oasalonen/schema-registry-plugin.git

Version 0.4.0-SNAPSHOT (latest)

Created 15 August 2018.

A plugin to download, register and test schemas from a Kafka Schema Registry. Forked from com.github.ImFlog.kafka-schema-registry-gradle-plugin

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.github.oasalonen:kafka-schema-registry-gradle-plugin:0.4.0-SNAPSHOT")
  }
}

apply(plugin = "com.github.oasalonen.kafka-schema-registry-gradle-plugin")

Using the plugins DSL:

plugins {
  id "com.github.oasalonen.kafka-schema-registry-gradle-plugin" version "0.4.0-SNAPSHOT"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.github.oasalonen:kafka-schema-registry-gradle-plugin:0.4.0-SNAPSHOT"
  }
}

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

Learn how to apply plugins to subprojects