搜索 Gradle 插件

版本 2.0.1 (最新)

2.0.1

创建时间:2021年10月13日。

ProPatcher 是一个适用于在移动中创建 .patch 文件的 Gradle 插件。

使用 plugins DSL

plugins {
  id("uk.jamierocks.propatcher") version "2.0.1"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.uk.jamierocks:propatcher:2.0.1")
  }
}

apply(plugin = "uk.jamierocks.propatcher")

使用 plugins DSL

plugins {
  id "uk.jamierocks.propatcher" version "2.0.1"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.uk.jamierocks:propatcher:2.0.1"
  }
}

apply plugin: "uk.jamierocks.propatcher"

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