nebula.gradle-stash
Owner: Nebula Plugins
Gradle plugin to do various Stash SCM tasks
https://github.com/nebula-plugins/gradle-stash-plugin
Sources: https://github.com/nebula-plugins/gradle-stash-plugin.git
Version 3.0.2
3.0.2
Created 02 February 2016.
Gradle plugin to do various Stash SCM tasks
Using the plugins DSL:
plugins {
id("nebula.gradle-stash") version "3.0.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.netflix.nebula:gradle-stash-plugin:3.0.2")
}
}
apply(plugin = "nebula.gradle-stash")
Using the plugins DSL:
plugins {
id "nebula.gradle-stash" version "3.0.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.netflix.nebula:gradle-stash-plugin:3.0.2"
}
}
apply plugin: "nebula.gradle-stash"