搜索Gradle插件

com.github.kxalex

所有者: Oleksii Shurubura

Gradle插件,用于从构建脚本中构建和发布Docker镜像。

https://github.com/kxalex/gradle-docker

来源: https://github.com/kxalex/gradle-docker.git

版本 1.4.1(最新版)

1.4.1

创建于2021年9月16日。

Gradle插件,用于从构建脚本中构建和发布Docker镜像。

使用插件DSL

plugins {
  id("com.github.kxalex") version "1.4.1"
}

使用旧插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("com.github.kxalex:gradle-docker:1.4.1")
  }
}

apply(plugin = "com.github.kxalex")

使用插件DSL

plugins {
  id "com.github.kxalex" version "1.4.1"
}

使用旧插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.github.kxalex:gradle-docker:1.4.1"
  }
}

apply plugin: "com.github.kxalex"

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