Search Gradle plugins

com.github.thahnen.gitdiffuptodate

A plugin to configure given Gradle tasks to be UP-TO-DATE based on Git diff result on files / folders provided

https://github.com/thahnen/GitDiffUpToDatePlugin

Sources: https://github.com/thahnen/GitDiffUpToDatePlugin.git

Version 1.0.4 (latest)

Created 18 September 2021.

A plugin to configure given Gradle tasks to be UP-TO-DATE based on Git diff result on files / folders provided

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects