Search Gradle plugins

Version 2.0.3 (latest)

Created 20 April 2023.

The plugin that allows you access to git commands inside gradle as task

Using the plugins DSL:

plugins {
  id("xyz.ronella.simple-git") version "2.0.3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("xyz.ronella.gradle.plugin:simple-git:2.0.3")
  }
}

apply(plugin = "xyz.ronella.simple-git")

Using the plugins DSL:

plugins {
  id "xyz.ronella.simple-git" version "2.0.3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "xyz.ronella.gradle.plugin:simple-git:2.0.3"
  }
}

apply plugin: "xyz.ronella.simple-git"

Learn how to apply plugins to subprojects