搜索 Gradle 插件

版本 0.2.2 (最新)

0.2.2

创建于 2022 年 12 月 1 日。

在构建过程中在后台执行 Java 或 shell 进程

使用 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"

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