Search Gradle plugins

Version 0.0.1

Created 16 March 2021.

Automatically sets your version based on configurable git information

Using the plugins DSL:

plugins {
  id("com.wagner.gitver") version "0.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.wagner:gitver:0.0.1")
  }
}

apply(plugin = "com.wagner.gitver")

Using the plugins DSL:

plugins {
  id "com.wagner.gitver" version "0.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.wagner:gitver:0.0.1"
  }
}

apply plugin: "com.wagner.gitver"

Learn how to apply plugins to subprojects