com.hyas.gitflow
Owner: Paul van Gool
Gradle plugin for gitflow operations.
https://github.com/hyasinfosec/gitflow-gradle-plugin
Sources: https://github.com/hyasinfosec/gitflow-gradle-plugin
Version 1.0.2 (latest)
1.0.2
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"