Search Gradle plugins

io.github.joleksiysurovtsev.gradle-dev-containers-starter

A Gradle plugin to automate the deployment of Kafka and Zookeeper containers using Docker. It handles container creation, initialization, and network setup. With each new version, new containers and tasks will be added

https://github.com/joleksiysurovtsev/GradleDevContainers

Sources: https://github.com/joleksiysurovtsev/GradleDevContainers

Version 0.0.1 (latest)

Created 05 September 2023.

A Gradle plugin to automate the deployment of Kafka and Zookeeper containers using Docker. It handles container creation, initialization, and network setup. With each new version, new containers and tasks will be added

Add this plugin to your build using the plugins DSL:

plugins {
  id("io.github.joleksiysurovtsev.gradle-dev-containers-starter") version "0.0.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("io.github.joleksiysurovtsev.gradle-dev-containers-starter:io.github.joleksiysurovtsev.gradle-dev-containers-starter.gradle.plugin:0.0.1")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("io.github.joleksiysurovtsev.gradle-dev-containers-starter")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("io.github.joleksiysurovtsev.gradle-dev-containers-starter:io.github.joleksiysurovtsev.gradle-dev-containers-starter.gradle.plugin:0.0.1")
      }
    }
    
    apply(plugin = "io.github.joleksiysurovtsev.gradle-dev-containers-starter")
  • Applying plugins to all subprojects .