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)
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`. **
Add this plugin to your build using the plugins DSL:
plugins {
id("de.adikanski.kafka-test") version "0.1.1"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("de.adikanski.kafka-test:de.adikanski.kafka-test.gradle.plugin:0.1.1") }
It can then be applied in the precompiled script plugin:plugins { id("de.adikanski.kafka-test") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("de.adikanski.kafka-test:de.adikanski.kafka-test.gradle.plugin:0.1.1") } } apply(plugin = "de.adikanski.kafka-test")
- Applying plugins to all subprojects .