搜索Gradle插件

at.phatbl.shellexec

所有者: Ben Chatelain

执行基本任务的可选方法,可以在Bash shell中运行命令。

https://github.com/phatblat/ShellExec

来源: https://github.com/phatblat/ShellExec

版本 1.5.2 (最新版)

1.5.2

创建于2020年1月20日。

🐚 更简单的Exec任务Gradle插件。

使用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"

了解如何将插件应用于子项目