Search Gradle plugins

Version 0.5.0 (latest)

Created 30 July 2018.

Manage external processes during a Gradle build

Using the plugins DSL:

plugins {
  id("com.github.johnrengelman.processes") version "0.5.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.github.jengelman.gradle.plugins:gradle-processes:0.5.0")
  }
}

apply(plugin = "com.github.johnrengelman.processes")

Using the plugins DSL:

plugins {
  id "com.github.johnrengelman.processes" version "0.5.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.github.jengelman.gradle.plugins:gradle-processes:0.5.0"
  }
}

apply plugin: "com.github.johnrengelman.processes"

Learn how to apply plugins to subprojects