co.elastic.docker
所有者: Elastic 发布工程团队
docker 插件之间的共享工具库
https://github.com/elastic/gradle-plugins/blob/main/README.md
源代码: https://github.com/elastic/gradle-plugins/
使用 plugins DSL
plugins {
id("co.elastic.docker") version "1.0.10"
}
使用 旧版插件应用程序
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("co.elastic.gradle:docker:1.0.10")
}
}
apply(plugin = "co.elastic.docker")
使用 plugins DSL
plugins {
id "co.elastic.docker" version "1.0.10"
}
使用 旧版插件应用程序
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "co.elastic.gradle:docker:1.0.10"
}
}
apply plugin: "co.elastic.docker"