搜索 Gradle 插件

版本 3.0.2(最新版)

3.0.2

创建于 2023 年 10 月 23 日。

Dockerfile 构建和推送的 Docker 插件

使用 plugins DSL

plugins {
  id("org.xbib.gradle.plugin.docker") version "3.0.2"
}

使用 旧版插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("org.xbib.gradle.plugin:gradle-plugin-docker:3.0.2")
  }
}

apply(plugin = "org.xbib.gradle.plugin.docker")

使用 plugins DSL

plugins {
  id "org.xbib.gradle.plugin.docker" version "3.0.2"
}

使用 旧版插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "org.xbib.gradle.plugin:gradle-plugin-docker:3.0.2"
  }
}

apply plugin: "org.xbib.gradle.plugin.docker"

学习如何将插件应用于子项目