com.redpillanalytics.gradle-confluent
Owner: Stewart Bryson
A plugin for deploying streaming applications to a Confluent Kafka cluster.
https://github.com/RedPillAnalytics/gradle-confluent
Sources: https://github.com/RedPillAnalytics/gradle-confluent/
Version 0.9.0
0.9.0
Created 27 September 2018.
A plugin for deploying streaming applications to a Confluent Kafka cluster.
Using the plugins DSL:
plugins {
id("com.redpillanalytics.gradle-confluent") version "0.9.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.redpillanalytics:gradle-confluent:0.9.0")
}
}
apply(plugin = "com.redpillanalytics.gradle-confluent")
Using the plugins DSL:
plugins {
id "com.redpillanalytics.gradle-confluent" version "0.9.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.redpillanalytics:gradle-confluent:0.9.0"
}
}
apply plugin: "com.redpillanalytics.gradle-confluent"