Search Gradle plugins

Version 0.6.0

Created 20 January 2021.

This plugin allows to add, commit and push files programmatically

Using the plugins DSL:

plugins {
  id("io.github.dryrum.git-utils") version "0.6.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.github.dryrum:git-utils:0.6.0")
  }
}

apply(plugin = "io.github.dryrum.git-utils")

Using the plugins DSL:

plugins {
  id "io.github.dryrum.git-utils" version "0.6.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.github.dryrum:git-utils:0.6.0"
  }
}

apply plugin: "io.github.dryrum.git-utils"

Learn how to apply plugins to subprojects