搜索 Gradle 插件

io.github.zero88.qwe.gradle.docker

所有者: zero88

此插件将 Docker 功能添加到构建/推送 QWE 应用程序的 Docker 镜像

https://github.com/play-iot/gradle-plugin

来源:https://github.com/zero88/qwe.git

版本 1.0.0 (最新)

1.0.0

创建于 2021 年 2 月 20 日。

此插件将 Docker 功能添加到构建/推送 QWE 应用程序的 Docker 镜像

使用 插件 DSL

plugins {
  id("io.github.zero88.qwe.gradle.docker") version "1.0.0"
}

使用 旧插件应用程序

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

apply(plugin = "io.github.zero88.qwe.gradle.docker")

使用 插件 DSL

plugins {
  id "io.github.zero88.qwe.gradle.docker" version "1.0.0"
}

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "io.github.zero88.qwe:qwe-gradle-plugin:1.0.0"
  }
}

apply plugin: "io.github.zero88.qwe.gradle.docker"

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