Search Gradle plugins

Version 1.0.1

Created 17 January 2018.

Exec base task alternative which runs commands in a Bash shell.

Using the plugins DSL:

plugins {
  id("at.phatbl.shellexec") version "1.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.at.phatbl:ShellExec:1.0.1")
  }
}

apply(plugin = "at.phatbl.shellexec")

Using the plugins DSL:

plugins {
  id "at.phatbl.shellexec" version "1.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.at.phatbl:ShellExec:1.0.1"
  }
}

apply plugin: "at.phatbl.shellexec"

Learn how to apply plugins to subprojects