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