Search Gradle plugins

Version 0.9.1 (latest)

0.9.1

Created 26 January 2022.

Gradle Plugin to Manage and Deploy Kafka Connector Configurations

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.github.sandonjacobs.gradle-kafka-connect") version "0.9.1"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.github.sandonjacobs:gradle-kafka-connect:0.9.1")
      }
    }
    
    apply(plugin = "com.github.sandonjacobs.gradle-kafka-connect")
  • Applying plugins to all subprojects .