com.github.psxpaul.execfork
Owner: Paul Roberts
Execute Java or shell processes in the background during a build
Sources: https://github.com/psxpaul/gradle-execfork-plugin
Version 0.1.7
0.1.7
Created 17 November 2017.
Execute Java or shell processes in the background during a build
Using the plugins DSL:
plugins {
id("com.github.psxpaul.execfork") version "0.1.7"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.github.psxpaul:gradle-execfork-plugin:0.1.7")
}
}
apply(plugin = "com.github.psxpaul.execfork")
Using the plugins DSL:
plugins {
id "com.github.psxpaul.execfork" version "0.1.7"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.github.psxpaul:gradle-execfork-plugin:0.1.7"
}
}
apply plugin: "com.github.psxpaul.execfork"