com.github.thahnen.gitdiffuptodate
Owner: Tobias Hahnen
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.0
1.0.0
Created 06 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.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.github.thahnen:GitDiffUpToDatePlugin:1.0.0")
}
}
apply(plugin = "com.github.thahnen.gitdiffuptodate")
Using the plugins DSL:
plugins {
id "com.github.thahnen.gitdiffuptodate" version "1.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.github.thahnen:GitDiffUpToDatePlugin:1.0.0"
}
}
apply plugin: "com.github.thahnen.gitdiffuptodate"