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.2.2 (latest)
0.2.2
Created 01 December 2022.
Execute Java or shell processes in the background during a build
Using the plugins DSL:
plugins {
id("com.github.psxpaul.execfork") version "0.2.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.github.psxpaul:gradle-execfork-plugin:0.2.2")
}
}
apply(plugin = "com.github.psxpaul.execfork")
Using the plugins DSL:
plugins {
id "com.github.psxpaul.execfork" version "0.2.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.github.psxpaul:gradle-execfork-plugin:0.2.2"
}
}
apply plugin: "com.github.psxpaul.execfork"