Search Gradle plugins

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`. **

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"

Learn how to apply plugins to subprojects