搜索 Gradle 插件

com.github.hesch.execfork

所有者: ac bc

在构建过程中在后台执行 Java 或 shell 进程。从 psxpaul/execfork 衍生,包含一个小型日志错误修复。

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

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

版本 0.1.15 (最新版)

0.1.15

创建于 2020 年 11 月 14 日。

在构建过程中在后台执行 Java 或 shell 进程。从 psxpaul/execfork 衍生,包含一个小型日志错误修复。

使用 插件的 DSL

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

使用 遗留插件应用

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

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

使用 插件的 DSL

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

使用 遗留插件应用

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

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

了解如何将插件应用到子项目中