Search Gradle plugins

Version 1.14.0 (latest)

Created 21 December 2020.

Plugin for incrementing version in git flow

Using the plugins DSL:

plugins {
  id("com.etherealscope.gradlegitflowversionplugin") version "1.14.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.etherealscope:gradle-git-flow-version-plugin:1.14.0")
  }
}

apply(plugin = "com.etherealscope.gradlegitflowversionplugin")

Using the plugins DSL:

plugins {
  id "com.etherealscope.gradlegitflowversionplugin" version "1.14.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.etherealscope:gradle-git-flow-version-plugin:1.14.0"
  }
}

apply plugin: "com.etherealscope.gradlegitflowversionplugin"

Learn how to apply plugins to subprojects