dev.mrfishcakes.crunchyupdater
Owner: Finlay Oxby
Get commit changes between two hashes on GitHub
Sources: https://github.com/MrFishCakes/CrunchyUpdater
Version 1.2.0 (latest)
1.2.0
Created 01 December 2021.
Get commit changes between two hashes on GitHub
Using the plugins DSL:
plugins {
id("dev.mrfishcakes.crunchyupdater") version "1.2.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("dev.mrfishcakes:CrunchyUpdater:1.2.0")
}
}
apply(plugin = "dev.mrfishcakes.crunchyupdater")
Using the plugins DSL:
plugins {
id "dev.mrfishcakes.crunchyupdater" version "1.2.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "dev.mrfishcakes:CrunchyUpdater:1.2.0"
}
}
apply plugin: "dev.mrfishcakes.crunchyupdater"