Search Gradle plugins

com.github.hesch.execfork

Owner: ac bc

Execute Java or shell processes in the background during a build. Forked from psxpaul/execfork with a small logging bugfix.

https://github.com/hesch/gradle-execfork-plugin

Sources: https://github.com/hesch/gradle-execfork-plugin

Version 0.1.14

Created 25 June 2020.

Execute Java or shell processes in the background during a build. Forked from psxpaul/execfork with a small logging bugfix.

Using the plugins DSL:

plugins {
  id("com.github.hesch.execfork") version "0.1.14"
}

Using legacy plugin application:

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

apply(plugin = "com.github.hesch.execfork")

Using the plugins DSL:

plugins {
  id "com.github.hesch.execfork" version "0.1.14"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.github.hesch:gradle-execfork-plugin:0.1.14"
  }
}

apply plugin: "com.github.hesch.execfork"

Learn how to apply plugins to subprojects