at.phatbl.shellexec
所有者: Ben Chatelain
执行基本任务的可选方法,可以在Bash shell中运行命令。
https://github.com/phatblat/ShellExec
来源: https://github.com/phatblat/ShellExec
使用plugins DSL
plugins {
id("at.phatbl.shellexec") version "1.5.2"
}
使用旧版插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("gradle.plugin.at.phatbl:shellexec:1.5.2")
}
}
apply(plugin = "at.phatbl.shellexec")
使用plugins DSL
plugins {
id "at.phatbl.shellexec" version "1.5.2"
}
使用旧版插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "gradle.plugin.at.phatbl:shellexec:1.5.2"
}
}
apply plugin: "at.phatbl.shellexec"