com.nobleworks_software.gradle-gitflow-plugin
Owner: Nobleworks Software
This is an gradle plugin that adds tasks for managing a project using the git flow branching model.
https://gitlab.com/NobleworksSoftware/gradle-gitflow-plugin
Sources: https://gitlab.com/NobleworksSoftware/gradle-gitflow-plugin
Version 2.1.0-SNAPSHOT
2.1.0-SNAPSHOT
Created 14 June 2017.
This is an gradle plugin that adds tasks for managing a project using the git flow branching model.
Using the plugins DSL:
plugins {
id("com.nobleworks_software.gradle-gitflow-plugin") version "2.1.0-SNAPSHOT"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.nobleworks_software:gradle-gitflow-plugin:2.1.0-SNAPSHOT")
}
}
apply(plugin = "com.nobleworks_software.gradle-gitflow-plugin")
Using the plugins DSL:
plugins {
id "com.nobleworks_software.gradle-gitflow-plugin" version "2.1.0-SNAPSHOT"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.nobleworks_software:gradle-gitflow-plugin:2.1.0-SNAPSHOT"
}
}
apply plugin: "com.nobleworks_software.gradle-gitflow-plugin"