co.elastic.sandbox
所有者: Elastic 发布工程团队
实现提供沙盒任务的插件,确保不依赖于本地系统
https://github.com/elastic/gradle-plugins/blob/main/README.md
源代码: https://github.com/elastic/gradle-plugins/
使用 plugins DSL
plugins {
id("co.elastic.sandbox") version "1.0.10"
}
使用 旧版插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("co.elastic.gradle:sandbox:1.0.10")
}
}
apply(plugin = "co.elastic.sandbox")
使用 plugins DSL
plugins {
id "co.elastic.sandbox" version "1.0.10"
}
使用 旧版插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "co.elastic.gradle:sandbox:1.0.10"
}
}
apply plugin: "co.elastic.sandbox"