de.adikanski.kafka-test
Owner: Aleksander Dikanski
Start and stop a Kafka Server for testing purposes.
https://github.com/aleksdikanski/gradle-kafka-test-plugin
Sources: https://github.com/aleksdikanski/gradle-kafka-test-plugin
Version 0.1.1 (latest)
0.1.1
Created 17 August 2015.
Start and stop a Kafka Server for testing purposes.
** Please note that due to an error, there is an invalid version `2.5` shown in the Gradle Plugin portal. **
** Use the version specified on the Github page or use the dropdown on the Gradle Plugin portal page to select the highest version below `2.5`. **
Using the plugins DSL:
plugins {
id("de.adikanski.kafka-test") version "0.1.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.adikanski.gradle:gradle-kafka-test-plugin:0.1.1")
}
}
apply(plugin = "de.adikanski.kafka-test")
Using the plugins DSL:
plugins {
id "de.adikanski.kafka-test" version "0.1.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.adikanski.gradle:gradle-kafka-test-plugin:0.1.1"
}
}
apply plugin: "de.adikanski.kafka-test"