Search Gradle plugins

Version 1.1.2

Created 27 March 2018.

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

apply plugin: "at.phatbl.shellexec"

Learn how to apply plugins to subprojects