Search Gradle plugins

Version 0.4.0

0.4.0

Created 18 January 2021.

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.4.0"
}

See also:

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