搜索 Gradle 插件

com.github.thahnen.gitdiffuptodate

所有者: Tobias Hahnen

一个插件,根据为文件/文件夹提供的 Git diff 结果配置 Gradle 任务为 UP-TO-DATE

https://github.com/thahnen/GitDiffUpToDatePlugin

来源: https://github.com/thahnen/GitDiffUpToDatePlugin.git

版本 1.0.4 (最新版)

1.0.4

创建于 2021 年 9 月 18 日。

一个插件,根据为文件/文件夹提供的 Git diff 结果配置 Gradle 任务为 UP-TO-DATE

使用 plugins DSL

plugins {
  id("com.github.thahnen.gitdiffuptodate") version "1.0.4"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("com.github.thahnen:GitDiffUpToDatePlugin:1.0.4")
  }
}

apply(plugin = "com.github.thahnen.gitdiffuptodate")

使用 plugins DSL

plugins {
  id "com.github.thahnen.gitdiffuptodate" version "1.0.4"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.github.thahnen:GitDiffUpToDatePlugin:1.0.4"
  }
}

apply plugin: "com.github.thahnen.gitdiffuptodate"

学习如何将插件应用于子项目