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.15 (latest)
0.1.15
Created 14 November 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.15"
}
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.15")
}
}
apply(plugin = "com.github.hesch.execfork")
Using the plugins DSL:
plugins {
id "com.github.hesch.execfork" version "0.1.15"
}
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.15"
}
}
apply plugin: "com.github.hesch.execfork"