搜索Gradle插件

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

所有者: Oleksii Surovtsev

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

来源: https://github.com/joleksiysurovtsev/GradleDevContainers

版本 0.0.1(最新版本)

0.0.1

创建于 2023年9月5日。

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

使用 插件DSL

plugins {
  id("io.github.joleksiysurovtsev.gradle-dev-containers-starter") version "0.0.1"
}

使用 旧版插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("io.github.joleksiysurovtsev:plugin:0.0.1")
  }
}

apply(plugin = "io.github.joleksiysurovtsev.gradle-dev-containers-starter")

使用 插件DSL

plugins {
  id "io.github.joleksiysurovtsev.gradle-dev-containers-starter" version "0.0.1"
}

使用 旧版插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "io.github.joleksiysurovtsev:plugin:0.0.1"
  }
}

apply plugin: "io.github.joleksiysurovtsev.gradle-dev-containers-starter"

了解如何将插件应用于子项目