Search Gradle plugins

Version 5.0.0-rc.1

Created 08 February 2022.

The Groovy way to use Git

Using the plugins DSL:

plugins {
  id("org.ajoberstar.grgit-service") version "5.0.0-rc.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("org.ajoberstar.grgit:grgit-gradle:5.0.0-rc.1")
  }
}

apply(plugin = "org.ajoberstar.grgit-service")

Using the plugins DSL:

plugins {
  id "org.ajoberstar.grgit-service" version "5.0.0-rc.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "org.ajoberstar.grgit:grgit-gradle:5.0.0-rc.1"
  }
}

apply plugin: "org.ajoberstar.grgit-service"

Learn how to apply plugins to subprojects