io.github.dryrum.git-utils
Owner: Carmelo Iriti
This plugin allows to add, commit and push files programmatically
https://github.com/dryrum/CDelivery
Sources: https://github.com/dryrum/CDelivery
Version 0.7.0 (latest)
0.7.0
Created 16 March 2024.
This plugin allows to add, commit and push files programmatically
Using the plugins DSL:
plugins {
id("io.github.dryrum.git-utils") version "0.7.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.dryrum:git-utils:0.7.0")
}
}
apply(plugin = "io.github.dryrum.git-utils")
Using the plugins DSL:
plugins {
id "io.github.dryrum.git-utils" version "0.7.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.dryrum:git-utils:0.7.0"
}
}
apply plugin: "io.github.dryrum.git-utils"