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 6.0.4
6.0.4
Created 28 March 2019.
Gradle plugin to do various Stash SCM tasks
Using the plugins DSL:
plugins {
id("nebula.gradle-stash") version "6.0.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.netflix.nebula:gradle-stash-plugin:6.0.4")
}
}
apply(plugin = "nebula.gradle-stash")
Using the plugins DSL:
plugins {
id "nebula.gradle-stash" version "6.0.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.netflix.nebula:gradle-stash-plugin:6.0.4"
}
}
apply plugin: "nebula.gradle-stash"