Search Gradle plugins

org.uulib.gittag

Plugin to tag a project's git repository using the org.uulib.gradletag plugin.

https://github.com/uulib/gradletag

Sources: https://github.com/hWorblehat/gradletag

Version 0.2.0-alpha.1

Created 02 November 2017.

Plugin to tag a project's git repository using the org.uulib.gradletag plugin.

Using the plugins DSL:

plugins {
  id("org.uulib.gittag") version "0.2.0-alpha.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("org.uulib.gradletag:gradletag-git:0.2.0-alpha.1")
  }
}

apply(plugin = "org.uulib.gittag")

Using the plugins DSL:

plugins {
  id "org.uulib.gittag" version "0.2.0-alpha.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "org.uulib.gradletag:gradletag-git:0.2.0-alpha.1"
  }
}

apply plugin: "org.uulib.gittag"

Learn how to apply plugins to subprojects