Search Gradle plugins

com.gitlab.grrfe.version-helper

Owner: grrfe

Reads version from git tag, adds handler to read version in binary

https://gitlab.com/grrfe

Sources: https://gitlab.com/grrfe/version-helper

Version 2.1.20

Created 09 September 2022.

Reads version from git tag, adds handler to read version in binary

Using the plugins DSL:

plugins {
  id("com.gitlab.grrfe.version-helper") version "2.1.20"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.gitlab.grrfe.version-helper:version-helper:2.1.20")
  }
}

apply(plugin = "com.gitlab.grrfe.version-helper")

Using the plugins DSL:

plugins {
  id "com.gitlab.grrfe.version-helper" version "2.1.20"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.gitlab.grrfe.version-helper:version-helper:2.1.20"
  }
}

apply plugin: "com.gitlab.grrfe.version-helper"

Learn how to apply plugins to subprojects