Search Gradle plugins

Lightweight plugin to get current git branch information and help with project versioning based on it

https://github.com/sergii-kuku/gradle-git-plugin

Sources: https://github.com/sergii-kuku/gradle-git-plugin.git

Version 1.0.0

Created 31 January 2020.

Lightweight plugin to get current git branch information and help with project versioning based on it

Add this plugin to your build using the plugins DSL:

plugins {
  id("lazy.zoo.gradle.git-data-plugin") version "1.0.0"
}

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("lazy.zoo.gradle.git-data-plugin:lazy.zoo.gradle.git-data-plugin.gradle.plugin:1.0.0")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("lazy.zoo.gradle.git-data-plugin")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("lazy.zoo.gradle.git-data-plugin:lazy.zoo.gradle.git-data-plugin.gradle.plugin:1.0.0")
      }
    }
    
    apply(plugin = "lazy.zoo.gradle.git-data-plugin")
  • Applying plugins to all subprojects .