Search Gradle plugins

Version 1.0.2 (latest)

Created 26 November 2021.

Gradle plugin for gitflow operations.

Using the plugins DSL:

plugins {
  id("com.hyas.gitflow") version "1.0.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.hyas:gitflow-plugin:1.0.2")
  }
}

apply(plugin = "com.hyas.gitflow")

Using the plugins DSL:

plugins {
  id "com.hyas.gitflow" version "1.0.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.hyas:gitflow-plugin:1.0.2"
  }
}

apply plugin: "com.hyas.gitflow"

Learn how to apply plugins to subprojects