at.phatbl.shellexec
Owner: Ben Chatelain
Exec base task alternative which runs commands in a Bash shell.
https://github.com/phatblat/ShellExec
Sources: https://github.com/phatblat/ShellExec
Version 1.5.2 (latest)
1.5.2
Created 20 January 2020.
ð Gradle plugin with a simpler Exec task.
Using the plugins DSL:
plugins {
id("at.phatbl.shellexec") version "1.5.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.at.phatbl:shellexec:1.5.2")
}
}
apply(plugin = "at.phatbl.shellexec")
Using the plugins DSL:
plugins {
id "at.phatbl.shellexec" version "1.5.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.at.phatbl:shellexec:1.5.2"
}
}
apply plugin: "at.phatbl.shellexec"