Search Gradle plugins

at.phatbl.shellexec

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)

Created 20 January 2020.

🐚 Gradle plugin with a simpler Exec task.

Add this plugin to your build using the plugins DSL:

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

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("at.phatbl.shellexec:at.phatbl.shellexec.gradle.plugin:1.5.2")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("at.phatbl.shellexec")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("at.phatbl.shellexec:at.phatbl.shellexec.gradle.plugin:1.5.2")
      }
    }
    
    apply(plugin = "at.phatbl.shellexec")
  • Applying plugins to all subprojects .