Search Gradle plugins

Version 0.1

0.1

Created 09 November 2016.

A gradle plugin to run shell scripts on multi-platforms.

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.github.jishida.shellscript") version "0.1"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.com.github.jishida.gradle:gradle-shell-script-plugin:0.1")
      }
    }
    
    apply(plugin = "com.github.jishida.shellscript")
  • Applying plugins to all subprojects .