com.github.psxpaul.execfork
所有者: Paul Roberts
在构建过程中在后台执行 Java 或 shell 进程
来源: https://github.com/psxpaul/gradle-execfork-plugin
使用 plugins DSL
plugins {
id("com.github.psxpaul.execfork") version "0.2.2"
}
使用 旧的插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("com.github.psxpaul:gradle-execfork-plugin:0.2.2")
}
}
apply(plugin = "com.github.psxpaul.execfork")
使用 plugins DSL
plugins {
id "com.github.psxpaul.execfork" version "0.2.2"
}
使用 旧的插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "com.github.psxpaul:gradle-execfork-plugin:0.2.2"
}
}
apply plugin: "com.github.psxpaul.execfork"